/*
Theme Name: DBNTECH Bootstrap
Theme URI: https://example.com/wpwork-bootstrap
Author: DBNTECH
Author URI: https://example.com
Description: Custom WordPress theme using Bootstrap 5. Includes Home, About, Practice, Team, Conditions, Contact, Pricing, Portfolio, and Blog. Built for WordPress maintenance, website building, static sites, and e-commerce services.
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.4
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wpwork-bootstrap
Tags: custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, blog, portfolio, one-column, two-columns, right-sidebar, flexible-header, accessibility-ready
*/

/* Theme style variables – palette #2C3930 #3F4F44 #A27B5C #DCD7C9 */
:root {
	--wpwork-dark: #2C3930;
	--wpwork-primary: #3F4F44;
	--wpwork-accent: #A27B5C;
	--wpwork-cream: #DCD7C9;
	--wpwork-primary-dark: #3F4F44;
	--wpwork-light: #DCD7C9;
	--wpwork-taupe: #c4bfb0;
	--bs-primary: #3F4F44;
	--bs-primary-rgb: 63, 79, 68;
	--bs-link-color: #3F4F44;
	--bs-link-color-rgb: 63, 79, 68;
	--bs-link-hover-color: #2C3930;
	--bs-link-hover-color-rgb: 44, 57, 48;
	--wpwork-bg: #70553f;
	--wpwork-green: #3F4F44;
	--wpwork-green-dark: #2C3930;
	--wpwork-radius: 12px;
	--wpwork-radius-lg: 16px;
	--wpwork-shadow: 0 4px 20px rgba(44, 57, 48, 0.15);
	--wpwork-shadow-hover: 0 8px 28px rgba(44, 57, 48, 0.2);
	--wpwork-heading-color: #2C3930;
	--wpwork-text-muted: #5a635c;
	--wpwork-font-body: 'Inter', sans-serif;
	--wpwork-font-heading: 'Jost', sans-serif;
}

/* Buttons: primary palette */
.btn-primary {
	background-color: var(--wpwork-primary);
	border-color: var(--wpwork-primary);
	color: #fff;
}
.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--wpwork-primary-dark);
	border-color: var(--wpwork-primary-dark);
	color: #fff;
}
.btn-outline-primary {
	color: var(--wpwork-primary);
	border-color: var(--wpwork-primary);
}
.btn-outline-primary:hover {
	background-color: var(--wpwork-primary);
	border-color: var(--wpwork-primary);
	color: #fff;
}
.btn-success {
	background-color: var(--wpwork-primary);
	border-color: var(--wpwork-primary);
	color: #fff;
}
.btn-success:hover {
	background-color: var(--wpwork-primary-dark);
	border-color: var(--wpwork-primary-dark);
	color: #fff;
}
.btn-outline-success {
	color: var(--wpwork-primary);
	border-color: var(--wpwork-primary);
}
.btn-outline-success:hover {
	background-color: var(--wpwork-primary);
	border-color: var(--wpwork-primary);
	color: #fff;
}

/* Bootstrap success = theme primary (palette) */
.text-success { color: var(--wpwork-primary) !important; }
.bg-success { background-color: var(--wpwork-primary) !important; }
.border-success { border-color: var(--wpwork-primary) !important; }
.bg-success.bg-opacity-10 { background-color: rgba(63, 79, 68, 0.1) !important; }

/* Theme overrides - Bootstrap handles base styles */
body {
	font-family: var(--wpwork-font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: #fff;
	background-color: var(--wpwork-dark);
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--wpwork-font-heading);
	font-weight: 700;
	line-height: 1.25;
	color: var(--wpwork-heading-color);
}
.page-title-bg h1,
.page-title-bg .display-5,
.page-title-bg .display-6,
.hero-gradient h1 { color: #fff; }
.hero-brand {
	font-family: 'Gravitas One', serif;
	font-size: 1.35em;
	font-weight: 400;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
	display: inline-block;
	width:100%;
}
.text-center.bg-light.rounded-3.p-5.shadow-sm h2.h4.mb-3 {
    color: var(--bs-secondary-color) !important;
}
.hero-headline-rest {
	font-family: var(--wpwork-font-heading);
	font-weight: 600;
	font-size: 0.9em;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.95);
}
/* Header custom logo: height 150px, width auto */
.navbar-brand .custom-logo-link img,
.navbar .custom-logo-link img {
	width: 150px;
	height: auto;
	max-height: none;
}
.navbar-brand img {
	max-height: none;
}
.footer-quick-links a { color: rgba(255,255,255,.9); text-decoration: none; transition: color 0.2s ease; }
.footer-quick-links a:hover { color: #fff; text-decoration: underline; }
.footer-sep { color: rgba(255,255,255,.45); margin: 0 0.4rem; user-select: none; }
.footer-links a { color: rgba(255,255,255,.9); text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.page-content, .entry-content { padding: 2rem 0; }

/* Page title: centered */
.page-title-bg {
	background-color: var(--wpwork-primary);
	color: #fff;
	padding: 100px 0 2rem 0;
	margin: 0 0 2.5rem 0;
	text-align: center;
	position: relative;
	box-shadow: var(--wpwork-shadow);
	border-radius: 0 0 var(--wpwork-radius) var(--wpwork-radius);
}
.page-title-bg .container {
	text-align: center;
}
.page-title-bg p {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.page-title-bg h1,
.page-title-bg .display-5,
.page-title-bg .display-6 {
	color: #fff;
	margin: 0;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.page-title-bg .lead,
.page-title-bg .text-muted {
	color: rgba(255, 255, 255, 0.95);
}
.page-title-bg .text-muted {
	opacity: 0.95;
}
.page-title-bg .text-success,
.page-title-bg span,
.page-title-bg a {
	color: #fff !important;
}
.page-title-bg a:hover {
	color: rgba(255, 255, 255, 0.9) !important;
}

/* About page – heading and text colors */
.about-page .about-section-heading {
	color: var(--wpwork-primary-dark) !important;
}
.about-page .about-section-heading i {
	color: var(--wpwork-primary-dark);
}
.about-page .card-body p {
	color: var(--wpwork-dark);
}

/* About Me section – no padding on section; color and padding on inner container */
.about-me-section {
	padding: 0;
}
.about-me-section .about-me-inner {
	background-color: rgb(112, 85, 63);
	border-radius: var(--wpwork-radius);
	padding: 2rem 1.5rem;
}
.about-me-section .about-me-heading,
.about-me-section .about-me-heading i,
.about-me-section .lead,
.about-me-section p {
	color: #fff !important;
}

/* Terms & Conditions page – dark background, all text white */
.conditions-page .conditions-content {
	background-color: var(--wpwork-primary);
	border-radius: var(--wpwork-radius);
	color: #fff;
}
.conditions-page .conditions-content,
.conditions-page .conditions-content *,
.conditions-page .conditions-content .lead,
.conditions-page .conditions-content .text-muted,
.conditions-page .conditions-content p,
.conditions-page .conditions-content h2,
.conditions-page .conditions-content .h4,
.conditions-page .conditions-content ul,
.conditions-page .conditions-content li,
.conditions-page .conditions-content .text-success {
	color: #fff !important;
}
.conditions-page .conditions-content a {
	color: #fff !important;
	text-decoration: underline;
}
.conditions-page .conditions-content a:hover {
	color: rgba(255, 255, 255, 0.9) !important;
}
.conditions-page .conditions-content .btn-success {
	background-color: #fff !important;
	border-color: #fff !important;
	color: var(--wpwork-primary) !important;
}
.conditions-page .conditions-content .btn-success:hover {
	background-color: var(--wpwork-cream) !important;
	border-color: var(--wpwork-cream) !important;
	color: var(--wpwork-primary) !important;
}

/* Navbar */
.navbar-gradient {
	background-color: var(--wpwork-primary) !important;
	box-shadow: 0 2px 16px rgba(63, 79, 68, 0.25);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Modern clean header: stadium-shaped white bar */
.navbar-clean {
	background: transparent !important;
	padding: 1rem 1rem 0;
	box-shadow: none;
}
.navbar-clean .navbar-container-mobile {
	background: #2C3930;
	border: none;
	border-radius: 9999px;
	box-shadow: 0 4px 24px rgb(63 79 68);
	padding: 0.5rem 1.5rem;
	max-width: 1140px;
	margin: 0 auto;
	align-items: center;
}
.navbar-clean .navbar-brand {
	color: var(--wpwork-primary-dark) !important;
	font-weight: 700;
	font-size: 1.1rem;
}
.navbar-clean .navbar-brand img {
	max-height: 40px;
	width: auto;
}
.navbar-clean .navbar-nav-clean .nav-link {
	color: var(--wpwork-primary-dark) !important;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	padding: 0.5rem 1rem;
}
.navbar-clean .navbar-nav-clean .nav-link:hover,
.navbar-clean .navbar-nav-clean .nav-link:focus {
	color: var(--wpwork-primary) !important;
	text-decoration: underline;
	text-underline-offset: 0.25em;
}
.navbar-clean .navbar-nav-clean .nav-link.active {
	color: var(--wpwork-primary) !important;
	background-color: rgba(63, 79, 68, 0.15);
	border-radius: 9999px;
}
.btn-header-cta {
	background: var(--wpwork-primary) !important;
	color: #fff !important;
	border: none;
	border-radius: 9999px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 0.5rem 1.25rem;
	transition: background 0.2s ease, transform 0.15s ease;
}
.btn-header-cta:hover {
	background: var(--wpwork-primary-dark) !important;
	color: #fff !important;
	transform: translateY(-1px);
}
.navbar-toggler-clean {
	background-color: #fff;
	border: none;
	border-radius: 0.375rem;
}
.navbar-toggler-clean .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233F4F44' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .nav-link {
	color: #fff !important;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus {
	color: #fff !important;
	text-decoration: underline;
	text-underline-offset: 0.25em;
}
.navbar .nav-link.active {
	color: #fff !important;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 0.25rem;
}

/* Mobile navbar: logo left, contact + toggler right */
@media (max-width: 991.98px) {
	.navbar-clean .navbar-container-mobile {
		display: flex !important;
		justify-content: space-between !important;
		align-items: center;
		flex-wrap: nowrap;
	}
	.navbar-container-mobile .navbar-brand {
		margin-right: auto;
		margin-left: 0;
		order: 1;
	}
	.navbar-container-mobile .d-flex.d-lg-none {
		order: 2;
		margin-left: auto;
	}
	.navbar-container-mobile .navbar-toggler {
		margin-left: 0;
	}
}

/* Mobile menu: offcanvas */
.offcanvas-nav-theme {
	background-color: var(--wpwork-primary) !important;
	color: #fff;
}
.offcanvas-nav-theme .offcanvas-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.offcanvas-nav-theme .offcanvas-title {
	color: #fff;
	font-weight: 700;
}
.offcanvas-body .offcanvas-nav-theme .navbar-nav {
	padding-top: 0;
}
.offcanvas-body .offcanvas-nav-theme .nav-link {
	color: #fff !important;
	padding: 0.75rem 0;
	font-size: 1.1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.offcanvas-nav-theme .nav-link:hover,
.offcanvas-nav-theme .nav-link:focus {
	color: #fff !important;
	background-color: rgba(255, 255, 255, 0.15);
	text-decoration: none;
}
.offcanvas-nav-theme .btn-close-white {
	filter: brightness(0) invert(1);
}

/* Hero */
.hero-gradient {
	background-color: var(--wpwork-primary);
	position: relative;
	box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.06);
	border-radius: 0 0 var(--wpwork-radius-lg) var(--wpwork-radius-lg);
	padding: 5rem 0 4rem !important;
}
.hero-gradient .lead {
	color: rgba(255, 255, 255, 0.95);
}
.hero-gradient .btn-light {
	background: var(--wpwork-cream);
	color: var(--wpwork-primary-dark);
	border-color: var(--wpwork-cream);
}
.hero-gradient .btn-light:hover {
	background: #fff;
	color: var(--wpwork-primary-dark);
	border-color: #fff;
}
.hero-gradient .btn-outline-light:hover {
	background: var(--wpwork-cream);
	color: var(--wpwork-primary-dark);
	border-color: var(--wpwork-cream);
}

/* Our Services section */
.our-services-section.section-gradient-light {
	background-color: #2c3930;
	position: relative;
}
.our-services-section .our-services-heading {
	color: #fff;
	font-weight: 700;
	position: relative;
	padding-bottom: 0.5rem;
}
.our-services-section .our-services-heading::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background-color: #fff;
	border-radius: 2px;
}
/* Our Services – card design (like core-point-card) */
.our-services-card {
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: transparent;
	padding: 0;
	box-shadow: none;
}
.our-services-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.25);
}
.our-services-card .card-body {
	border-radius: 12px;
	background: transparent;
	padding: 0;
}
.our-services-inner-box {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	border-left: 4px solid rgba(255, 255, 255, 0.4);
	padding: 1.5rem 1.25rem;
	min-height: 100%;
	position: relative;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.our-services-card:hover .our-services-inner-box {
	border-left-color: var(--wpwork-cream);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.our-services-inner-box .card-title,
.our-services-inner-box .h5 {
	color: #fff;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.our-services-inner-box .text-muted,
.our-services-inner-box .our-services-points,
.our-services-inner-box .our-services-points li {
	color: rgba(255, 255, 255, 0.9);
}
.our-services-inner-box .our-services-points li::before {
	color: var(--wpwork-cream);
}
.our-services-icon {
	width: 3rem;
	height: 3rem;
	min-width: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.15);
	color: #fff;
	border-radius: 50%;
	font-size: 1.1rem;
	transition: background-color 0.25s ease;
}
.our-services-card:hover .our-services-icon {
	background-color: rgba(255, 255, 255, 0.25);
	color: #fff;
}
.our-services-content {
	flex: 1;
	min-width: 0;
}
.our-services-points {
	list-style: none;
	padding-left: 0;
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
}
.our-services-points li {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 0.25rem;
}
.our-services-points li::before {
	content: "✓";
	position: absolute;
	left: 0;
	font-weight: bold;
}

/* Core Points section */
.core-points-section {
	background-color: var(--wpwork-primary-dark);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.core-points-section .text-muted {
	color: rgba(255, 255, 255, 0.85) !important;
}
.core-points-heading {
	color: #fff;
	font-weight: 700;
	position: relative;
	padding-bottom: 0.5rem;
}
.core-points-heading::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background-color: var(--wpwork-accent);
	border-radius: 2px;
	margin: 0.5rem auto 0;
}
.core-point-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.core-point-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.25);
}
.core-point-icon {
	width: 3rem;
	height: 3rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.15);
	color: var(--wpwork-cream);
	border-radius: 50%;
	font-size: 1.1rem;
}
.core-point-card:hover .core-point-icon {
	background-color: rgba(255, 255, 255, 0.25);
	color: #fff;
}
.core-point-title {
	color: #fff;
	font-weight: 600;
}
.core-point-card .text-muted {
	color: rgba(255, 255, 255, 0.8) !important;
}

/* Why Choose section – same layout and card style as Our Services */
.why-choose-wpwork.our-services-section .why-choose-intro {
	color: #fff !important;
}
.why-choose-wpwork .our-services-inner-box.why-choose-inner {
	border-left: 4px solid rgba(255, 255, 255, 0.4);
}
.why-choose-wpwork .our-services-card:hover .our-services-inner-box.why-choose-inner {
	border-left-color: var(--wpwork-cream);
}
.why-choose-wpwork .our-services-inner-box.why-choose-inner .card-title,
.why-choose-wpwork .our-services-inner-box.why-choose-inner .h5,
.why-choose-wpwork .our-services-inner-box.why-choose-inner .text-muted,
.why-choose-wpwork .our-services-inner-box.why-choose-inner .our-services-content p {
	color: #fff !important;
}
.our-services-inner-box .our-services-content p.small.text-muted {
	color: rgba(255, 255, 255, 0.9);
}

/* Testimonials section */
.testimonials-section {
	background-color: var(--wpwork-primary-dark);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonials-section .text-muted {
	color: rgba(255, 255, 255, 0.85) !important;
	margin-bottom: 0;
}
.testimonials-heading {
	color: #fff;
	font-weight: 700;
	position: relative;
	padding-bottom: 0.5rem;
}
.testimonials-heading::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background-color: var(--wpwork-accent);
	border-radius: 2px;
	margin: 0.5rem auto 0;
}
.testimonials-carousel .carousel-indicators {
	bottom: -2.5rem;
}
.testimonials-carousel .carousel-indicators button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.4);
	opacity: 1;
	border: none;
}
.testimonials-carousel .carousel-indicators button.active {
	background-color: var(--wpwork-cream);
}
.testimonial-card {
	background: transparent;
	border: none;
	border-radius: 0;
	min-height: auto;
	box-shadow: none;
	margin-bottom: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
	display: none !important;
}
.testimonial-quote-icon {
	color: var(--wpwork-accent);
	font-size: 2rem;
	opacity: 0.8;
}
.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
	font-style: normal;
	border: none;
	padding: 0;
	margin: 0;
}
.testimonial-author {
	font-style: normal;
	color: #fff;
}
.testimonial-role {
	color: rgba(255, 255, 255, 0.75) !important;
}

/* CTA section – card layout */

.cta-card {
	border-radius: var(--wpwork-radius-lg);
	max-width: 720px;
	margin: 0 auto;
}
.cta-card .card-body.cta-gradient {
	background-color: var(--wpwork-primary);
	border-radius: var(--wpwork-radius-lg);
	position: relative;
}
.cta-heading,
.cta-text {
	color: #fff !important;
}
.cta-gradient .btn-light {
	background: var(--wpwork-cream);
	color: var(--wpwork-primary-dark);
	border-color: var(--wpwork-cream);
}
.cta-gradient .btn-light:hover {
	background: #fff;
	color: var(--wpwork-primary-dark);
	border-color: #fff;
}

/* Footer */
.site-footer {
	background-color: var(--wpwork-primary-dark);
	margin-top: 4rem;
	border-top: 4px solid var(--wpwork-accent);
}
.footer-top {
	padding: 3rem 0 2.5rem;
}
.footer-brand-wrap {
	max-width: 320px;
}
.footer-contact {
	margin-top: 1rem;
	font-size: 0.9rem;
}
.footer-contact-link {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	display: inline-block;
	margin-bottom: 0.25rem;
	transition: color 0.2s ease;
}
.footer-contact-link:hover {
	color: #fff;
	text-decoration: underline;
}
.footer-brand {
	font-weight: 700;
	font-size: 1.35rem;
	color: #fff;
	letter-spacing: 0.02em;
	margin-bottom: 0.75rem;
}
.footer-tagline {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}
.footer-subscribe-heading,
.footer-quicklinks-heading {
	font-weight: 600;
	color: #fff;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.5rem;
}
.footer-subscribe-text {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.875rem;
	margin-bottom: 1rem;
}
.footer-subscribe-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	max-width: 320px;
	margin: 0 auto;
}
@media (min-width: 992px) {
	.footer-subscribe-form {
		justify-content: flex-start;
		margin-left: 0;
		margin-right: auto;
	}
}
.footer-subscribe-form .footer-email-input {
	flex: 1;
	min-width: 180px;
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 0.6rem 1rem;
	color: #333;
	font-size: 0.95rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.footer-subscribe-form .footer-email-input:focus {
	outline: none;
	border-color: var(--wpwork-light);
	box-shadow: 0 0 0 3px rgba(63, 79, 68, 0.25);
}
.footer-subscribe-form .footer-email-input::placeholder {
	color: #6c757d;
}
.footer-subscribe-btn {
	font-weight: 600;
	border-radius: 8px;
	padding: 0.6rem 1.25rem;
	color: var(--wpwork-primary-dark);
	background: #fff;
	border: 2px solid #fff;
	font-size: 0.95rem;
	transition: background 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}
.footer-subscribe-btn:hover {
	background: transparent;
	color: #fff;
	border-color: #fff;
}
.footer-quick-links {
	font-size: 0.95rem;
	text-align: left;
}
.footer-quick-links-list {
	padding-left: 0;
}
.footer-quick-links-list li {
	margin-bottom: 0.4rem;
}
.footer-quick-links-list li:last-child {
	margin-bottom: 0;
}
@media (max-width: 991px) {
	.footer-top .row {
		text-align: center;
	}
	.footer-top [class*="col-"] {
		text-align: center;
	}
	.footer-brand-wrap {
		margin-left: auto;
		margin-right: auto;
	}
	.footer-quick-links {
		text-align: center;
	}
	.footer-quick-links-list {
		display: inline-block;
		text-align: center;
	}
	.footer-quick-links-list li {
		text-align: center;
	}
	.testimonials-carousel .carousel-control-prev-icon, .testimonials-carousel .carousel-control-next-icon{
		display: none;
	}
	.footer-subscribe {
		margin-left: auto;
		margin-right: auto;
		max-width: 320px;
	}
	.footer-subscribe-form {
		justify-content: center;
		margin-left: auto;
		margin-right: auto;
	}

}
.footer-bottom {
	background: rgba(0, 0, 0, 0.2);
	padding: 1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-copyright {
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
}

/* Our Services – icon and list (supplement) */
.our-services-icon i,
.our-services-icon .fa-solid {
	color: #fff !important;
	font-size: 1.1rem;
}
.our-services-points li:last-child {
	margin-bottom: 0;
}
/* Pricing Cards – theme design colors, alternating primary and #70553f */
.pricing-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Odd cards: dark green (primary) */
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card {
	border-color: var(--wpwork-primary) !important;
}
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card:hover {
	border-color: var(--wpwork-primary-dark) !important;
}
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .card-header {
	background-color: var(--wpwork-primary) !important;
	border-color: var(--wpwork-primary) !important;
}
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-success,
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-primary,
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-info,
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-warning,
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-secondary,
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-dark,
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-danger {
	background-color: var(--wpwork-primary) !important;
	border-color: var(--wpwork-primary) !important;
}
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-success:hover,
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-primary:hover,
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-info:hover,
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-warning:hover,
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-secondary:hover,
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-dark:hover,
.row.g-4 > [class*="col-"]:nth-child(odd) .pricing-card .btn-danger:hover {
	background-color: var(--wpwork-primary-dark) !important;
	border-color: var(--wpwork-primary-dark) !important;
}
/* Even cards: brown #70553f */
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card {
	border-color: #70553f !important;
}
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card:hover {
	border-color: #5c4635 !important;
}
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .card-header {
	background-color: #70553f !important;
	border-color: #70553f !important;
}
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-success,
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-primary,
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-info,
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-warning,
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-secondary,
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-dark,
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-danger {
	background-color: #70553f !important;
	border-color: #70553f !important;
}
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-success:hover,
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-primary:hover,
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-info:hover,
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-warning:hover,
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-secondary:hover,
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-dark:hover,
.row.g-4 > [class*="col-"]:nth-child(even) .pricing-card .btn-danger:hover {
	background-color: #5c4635 !important;
	border-color: #5c4635 !important;
}
.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}
.pricing-card .card-header {
	color: #fff !important;
}
.pricing-card .card-header,
.pricing-card .card-header *,
.pricing-card .card-header.h5,
.pricing-card .card-header .h5 {
	color: #fff !important;
}
.pricing-card .card-header i {
	opacity: 0.9;
}
.pricing-card .display-6.fw-bold,
.pricing-card .text-success,
.pricing-card .text-primary,
.pricing-card .text-info,
.pricing-card .text-warning,
.pricing-card .text-secondary,
.pricing-card .text-dark,
.pricing-card .text-danger {
	color: var(--wpwork-primary) !important;
}
.pricing-card .list-unstyled li {
	padding: 0.4rem 0;
}
.pricing-card .list-unstyled li i {
	margin-right: 0.5rem;
	width: 20px;
	display: inline-block;
	color: var(--wpwork-primary) !important;
}
.pricing-card .btn-success,
.pricing-card .btn-primary,
.pricing-card .btn-info,
.pricing-card .btn-warning,
.pricing-card .btn-secondary,
.pricing-card .btn-dark,
.pricing-card .btn-danger {
	background-color: var(--wpwork-primary) !important;
	border-color: var(--wpwork-primary) !important;
	color: #fff !important;
}
.pricing-card .btn-success:hover,
.pricing-card .btn-primary:hover,
.pricing-card .btn-info:hover,
.pricing-card .btn-warning:hover,
.pricing-card .btn-secondary:hover,
.pricing-card .btn-dark:hover,
.pricing-card .btn-danger:hover {
	background-color: var(--wpwork-primary-dark) !important;
	border-color: var(--wpwork-primary-dark) !important;
	color: #fff !important;
}

/* Contact Page Styles */
.contact-page-link {
	color: var(--wpwork-primary) !important;
	font-weight: 600;
	transition: color 0.2s ease;
}
.contact-page-link:hover {
	color: var(--wpwork-primary-dark) !important;
	text-decoration: underline !important;
}
.bg-light a,
.bg-light a.text-decoration-none {
	color: var(--wpwork-primary) !important;
	font-weight: 600;
	transition: color 0.2s ease;
}
.bg-light a:hover,
.bg-light a.text-decoration-none:hover {
	color: var(--wpwork-primary-dark) !important;
	text-decoration: underline !important;
}

/* Blog Listing – Custom Sidebar */
.blog-sidebar-custom .card-body h3 {
	color: var(--wpwork-primary);
	font-weight: 600;
}
.blog-sidebar-custom a {
	color: var(--wpwork-primary);
	transition: color 0.2s ease;
}
.blog-sidebar-custom a:hover {
	color: var(--wpwork-primary-dark);
	text-decoration: underline;
}

/* Portfolio Page */
.portfolio-item {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}
.portfolio-item .card-img-top {
	transition: background-color 0.3s ease;
}
.portfolio-item:hover .card-img-top {
	background-color: rgba(63, 79, 68, 0.2) !important;
}
.portfolio-tags .badge {
	font-weight: 500;
	font-size: 0.75rem;
	padding: 0.35rem 0.65rem;
	background-color: var(--wpwork-light) !important;
	color: var(--wpwork-primary-dark) !important;
}

