:root {
	--bs-gray: #302e2e;
	--bs-primary: #0055A5;
	--bs-primary-light: #379bfa;
	--bs-secondary: #ffc20f;
	--bs-light: #fcdf88;
	--bs-dark: #02305c;
	--bs-tertiary: #887579;

	--bs-primary-rgb: 30, 38, 107;
	--bs-primary-light: 169, 175, 231;
	--bs-secondary-rgb: 239, 180, 130;
	--bs-light-rgb: 246, 246, 246;
	--bs-dark-rgb: 34, 45, 16;
	--bs-white-rgb: 255, 255, 255;
	--bs-black-rgb: 0, 0, 0;
	--bs-body-rgb: 129, 129, 129;

	--bs-font-sans-serif: "Montserrat", sans-serif;
	--bs-gradient: linear-gradient(135deg, #a9afe7, #1e266b);
	--bs-body-font-family: var(--bs-font-sans-serif);
	--bs-body-font-size: 17px;
	--bs-body-font-weight: 400;
	--bs-body-line-height: 1.75;

	--bs-body-color: #2b3232;
	--bs-body-bg: #fff;
	--bs-border-radius: 11px;

	--byf-header-font: "Poppins", sans-serif;

	--hcm-font-size: 18px;
	--hcm-font-weight: 500;
	--hcm-primary-dark: #101647;
	--hcm-secondary-dark: #d88f50;
	--hcm-pop: #f7c69f;
	--hcm-body-color: #141418;
}

body.hcm {
	--bs-primary: var(--hcm-primary-dark);
	--bs-secondary: var(--hcm-secondary-dark);
	--bs-tertiary: var(--hcm-pop);
	font-size: var(--hcm-font-size);
}

/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	a11y Styles
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#skip-navigation {
	background: #fff;
	color: #000;
	left: 0;
	padding: 0.5em;
	position: absolute;
	top: -1000px;
	transition: all 0.3s ease;
	z-index: 11;
}

a:not(.btn, .nav-link):focus-visible {
	outline: 2px solid var(--bs-primary);
}

:is(#footer-top, #footer-bottom) a:not(.btn, .nav-link):focus-visible {
	outline: 2px solid var(--bs-secondary);
}

:is(.btn-default, .btn-primary, .btn-secondary):focus-visible {
	outline: 2px solid var(--bs-primary) !important;
	outline-offset: 1px;
}

#hc-toggle {
	align-items: center;
	background: var(--bs-primary);
	border: 2px solid #fff;
	border-radius: 0.1875rem;
	bottom: 1rem;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), 0 2px 2px rgba(0, 0, 0, 0.05), 0 4px 4px rgba(0, 0, 0, 0.05), 0 8px 8px rgba(0, 0, 0, 0.05), 0 16px 16px rgba(0, 0, 0, 0.05);
	color: #fff;
	display: flex;
	font-size: 1.75rem;
	justify-content: center;
	height: 3rem;
	left: 1rem;
	outline: 0;
	position: fixed;
	transition: all 0.3s ease;
	width: 3rem;
	cursor: pointer;
	z-index: 999;
}

#hc-toggle i {
	font-size: 1.75rem;
}

#hc-toggle:is(:hover, :focus, :focus-visible) {
	background: #fff;
	border-color: var(--bs-secondary);
	color: var(--bs-secondary);
}

.sr-only {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.hcm :is(p, a, ul, li):not(.btn, .btn-primary, .btn-secondary) {
	font-weight: 500;
}

.hcm :is(a, a:active, a:focus, a:visited) {
	font-weight: 600;
	text-decoration: underline;
}

@media (max-width: 767px) {
	.sr-only-sm {
		border: 0;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
}

/*=====================
	TYPOGRAPHY/DEFAULT
	======================*/

#inner-copy a.btn-lg.btn-primary {
    border-radius: 0.5rem;
    text-decoration: none;
}

#inner-copy a.btn-lg.btn-primary:hover {
    border-radius: 0.5rem;
    text-decoration: none;
    border: 2px solid var(--bs-primary);
}

body {
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
[class*="display-"] {
	font-family: var(--byf-header-font);
	font-weight: 600;
}

h1 {
	font-size: 2.75rem;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.75rem;
}

[class^="fs-"]:not([class^="fa-"]):not([class*="display-"]) {
	font-family: var(--bs-font-sans-serif);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	max-width: 1240px;
}

#main p,
#footer p {
	line-height: var(--bs-body-line-height);
	font-weight: var(--bs-body-font-weight);
}

section {
	padding: 4.5rem 0 4.5rem;
}

#main {
	margin-top: -12rem;
	position: relative;
	z-index: 99;
}

#why-choose-us {
	background: var(--bs-light);
	padding: 7rem 0 6rem;
}

.btn {
	border-radius: var(--bs-border-radius);
	border: 2px solid var(--bs-primary);
}

.bg-light {
	background-color: var(--bs-light) !important;
}

.bg-primary {
	background: var(--bs-primary) !important;
}

.bg-secondary {
	background-color: var(--bs-secondary) !important;
}

.bg-accent {
	background-color: var(--bs-tertiary) !important;
}

.bg-dark .bg-dark,
.bg-dark {
	background-color: var(--bs-dark) !important;
}

.bg-gray {
	background: var(--bs-gray) !important;
}

a,
a:is(:focus, :active) {
	color: var(--bs-primary);
}

a:hover {
	color: var(--bs-secondary);
}

.text-primary {
	color: var(--bs-primary) !important;
}

.text-secondary {
	color: var(--bs-secondary) !important;
}

.btn-primary {
	background: var(--bs-primary);
	color: #fff;
	border-color: var(--bs-primary);
}

.btn-primary:hover {
	color: var(--bs-dark);
	background-color: transparent;
	border-color: var(--bs-primary);
}

.btn-secondary {
	background: var(--bs-secondary);
	color: var(--bs-dark);
	border-color: var(--bs-seconday);
}

.btn-secondary:hover {
	background: transparent;
	color: #000;
	border-color: var(--bs-secondary);
}

#pageContent a {
	color: var(--bs-primary);
	font-weight: 600;
	text-decoration: underline;
}

#pageContent li {
	font-weight: 300;
}

.btn-lg {
	font-size: 1rem;
	font-weight: 500;
	padding: 0.875rem 2rem;
}

.btn-light {
	background-color: var(--bs-light);
	border-color: var(--bs-light);
	color: var(--bs-dark);
}

.btn-dark {
	background-color: var(--bs-dark);
	border-color: var(--bs-dark);
	color: var(--bs-light);
}

.visible-xs {
	display: none;
}

.card {
	display: block;
	border: 0;
	border-radius: 10px;
	box-shadow: 0 4px 6px 0px rgb(0 0 0 / 20%);
}

.form-control {
	border: 1px solid #d3d3d3;
	border-radius: 30px;
	color: #404040;
	display: block;
	font-size: 0.875rem;
	margin: 5px 0 7px;
	padding: 0.5rem 0.875rem;
}

body {
	margin: 0;
	font-family: var(--bs-font-sans-serif);
	font-size: 16px;
	line-height: 1.6;
}

.btn-accent {
	background-color: var(--bs-tertiary);
	color: var(--bs-dark);
}

.btn-accent:hover {
	background-color: var(--bs-primary);
}

.btn-dark {
	background-color: var(--bs-dark);
	color: var(--bs-light);
}

.btn-dark:hover {
	opacity: 0.85;
}

/* ==================
  Header/Navbar
  =====================*/

#topbar {
	background: var(--bs-light);
	color: var(--bs-dark);
}

#topbar ul {
	display: flex;
	justify-content: space-between;
	margin: 0 0 0 auto;
	align-items: center;
	padding: 0.5rem 0;
	flex-wrap: wrap;
	list-style: none;
	max-width: 50%;
}

#topbar li {
	padding-left: 10px;
	text-align: center;
}

.topbar-link {
	color: var(--bs-primary);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	padding-left: 15px;
}

.navbar-nav {
	align-items: center;
}

.nav-link:focus, .nav-link:hover {
    color: var(--bs-secondary);
}

.nav-item {
	padding: 0 1rem 0 0;
}

.nav-item:last-of-type .nav-link {
	background: var(--bs-light);
	padding: 0.875rem 2.125rem;
	border-radius: 3px;
	font-weight: 500;
	text-transform: uppercase;
	margin-left: 1rem;
	color: var(--bs-dark);
}

.nav-link {
	color: #fcf0e7;
}

.topbar-link iconify-icon {
	color: var(--bs-primary);
	margin-right: 5px;
	top: 3px;
	position: relative;
}

.branding {
	font-weight: bold;
	font-size: 1.2rem;
}

#top-nav a {
	margin-left: 1rem;
	text-decoration: none;
	color: var(--byf-dark);
	font-weight: 600;
	transition: color 0.3s ease;
}

#top-nav a.button {
	background: var(--byf-accent);
	color: var(--byf-dark);
	padding: 0.5rem 1rem;
	border-radius: 4px;
}

#top-nav a:hover {
	color: #d98047;
}

/* ==================
  Hero Section
  =====================*/

#hero {
	background: var(--bs-dark);
	padding: 0 0 6rem;
	color: #fcf0e7;
	z-index: 0;
	position: relative;
	overflow: hidden;
}

#hero-bg {
	position: absolute;
	top: 20%;
	right: -13%;
	height: auto;
	width: 65%;
	z-index: 1;
}

.hero-graphic {
	fill: #fff;
	fill-opacity: 0.5;
}

#hero .row {
	position: relative;
	z-index: 5;
}

#hero .text-area {
	padding: 0 2rem 0 0.5rem;
}

#hero .heading {
	font-family: var(--byf-header-font);
	color: var(--bs-light);
	font-weight: 400;
	font-size: 2.25rem;
}

#hero .heading .bold {
	font-weight: 600;
	font-size: 2.45rem;
}

/* ==================
  Values Section
  =====================*/

.services-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	padding: 2rem;
	text-align: center;
}

#values h2 {
	color: var(--bs-primary);
	font-weight: 500;
	text-align: center;
	margin-bottom: 2rem;
	font-size: 2rem;
}

#values .subtitle {
	text-transform: uppercase;
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	font-weight: 300;
}

#values .service-card h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--bs-secondary);
}

#values .service-card p {
	color: var(--bs-secondary);
}

#values iconify-icon {
	color: var(--bs-secondary);
	margin: 15px auto 10px;
}

#values .service-card {
	text-align: center;
	padding: 0.5rem 3.25rem;
	border-radius: 15px;
	margin: 0 1.55rem;
        margin-bottom: 25px;
}

/* ==================
  Index Section
  =====================*/

#index {
	z-index: 0;
	position: relative;
}

#index .row {
	position: relative;
	z-index: 5;
}

#index h1 {
	color: var(--bs-primary);
	font-size: 2.15rem;
}

#index .index-subtitle {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	color: var(--bs-secondary);
}

#index-bg {
	position: absolute;
	top: 10%;
	left: -60%;
	height: auto;
	width: 105%;
	z-index: 1;
}

#index-bg .graphic {
	fill: #141c47;
	fill-opacity: 0.5;
}

/* ==================
  Inner Pages
  =====================*/

#inner-hero {
	background: var(--bs-dark);
	color: #fefefe;
}

#inner-hero h1 {
	font-size: 2rem;
	color: var(--bs-light);
	margin-bottom: 1.5rem;
}

#inner-cta {
	text-align: center;
}

#inner-cta h2 {
	font-weight: 400;
}

/* ==================
  About Section
  =====================*/

#about {
	position: relative;
	z-index: 0;
	overflow: hidden;
}

#about-bg .graphic {
	fill: #fff;
	fill-opacity: 0.5;
}

#about-bg {
	position: absolute;
	top: -40%;
	right: -35%;
	height: auto;
	width: 90%;
	z-index: 1;
}

#about .row {
	position: relative;
	z-index: 5;
}

#about .subtitle {
	font-size: 1.5rem;
	color: #000;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

#about p {
	color: #000;
	font-size: 1.05rem;
}

#about h2 {
	color: var(--bs-primary-light);
	margin-bottom: 1.5rem;
}

#about img {
	border-radius: 20px;
	width: 100%;
}

/* ==================
  Services Section
  =====================*/

#service-bg {
	position: absolute;
	top: -10%;
	left: 0;
	height: auto;
	width: 105%;
	z-index: 1;
}

#services {
	z-index: 0;
	position: relative;
	overflow: hidden;
}

#services .container {
	position: relative;
	z-index: 5;
}
.services-graphic {
	fill: #ffcfac;
	fill-opacity: 0.4;
}

#services .card {
	background: rgba(var(--bs-primary-light-rgb), 0.3);
	color: #000;
	text-align: center;
	padding: 1rem 1.25rem;
	margin: 1rem 0;
	backdrop-filter: blur(30px);
}

#services .subtitle {
	color: var(--bs-primary);
	font-size: 1.25rem;
	text-transform: uppercase;
	text-align: center;
}

#services .card iconify-icon {
	margin: 1rem auto;
}

#services .card h3 {
	font-size: 1.5rem;
}

/* ==================
  Testimonials
  =====================*/

#testimonials {
	background: var(--bs-dark);
	color: rgb(var(--bs-white-rgb));
	text-align: center;
	padding: 3rem 2rem;
	position: relative;
	z-index: 0;
}

#testimonials .container {
	position: relative;
	z-index: 5;
}

#testimonials-bg .graphic {
	fill: #ffcfac;
	fill-opacity: 0.1;
}

#testimonials-bg {
	position: absolute;
	top: 27%;
	left: -42%;
	height: auto;
	width: 150%;
	z-index: 1;
}

#testimonials iconify-icon {
	color: var(--hcm-secondary-dark);
	margin: 0 5px;
}

#testimonials h2 {
	font-family: var(--bs-body-font-family);
	margin: 1rem auto;
	font-size: 2.5rem;
	font-weight: 600;
}

#testimonials .author {
	margin-top: 2rem;
	font-weight: 500;
	font-size: 1.25rem;
}

#testimonials .stars {
	margin: 1rem auto;
}

#testimonials iconify-icon {
	color: var(--hcm-secondary-dark);
}

#testimonials .testimonial-img {
	border-radius: 50%;
	width: 75px;
	height: 75px;
}

/* ==================
  Pricing Packages
  =====================*/

#pricing {
	padding: 3rem 0;
	text-align: center;
}

#pricing .subtitle {
	text-transform: uppercase;
	color: var(--bs-primary);
	font-size: 1.5rem;
}

#pricing h2 {
	margin-bottom: 2rem;
}

.pricing-tiers {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}

#pricing {
	padding: 5rem 0 6rem;
}

#pricing .tier li {
	position: relative;
}

#pricing .col-sm-12:nth-child(1) .tier {
	background: rgba(var(--bs-secondary-rgb), 0.25);
}

#pricing .col-sm-12:nth-child(2) .tier {
	background: rgba(var(--bs-secondary-rgb), 0.5);
}

#pricing .col-sm-12:nth-child(3) .tier {
	background: rgba(var(--bs-secondary-rgb), 0.75);
}

#pricing .tier li iconify-icon {
	position: absolute;
	left: -25px;
	top: 2px;
}

.tier .price {
	font-size: 2rem;
	font-weight: 600;
}

.tier p {
	line-height: 1.85;
}

.tier .btn {
	position: absolute;
	bottom: 1.5rem;
	display: inline-block;
	margin: 0 auto;
	max-width: 237px;
	width: 85%;
}

.tier {
	background: var(--bs-secondary);
	text-align: left;
	position: relative;
	padding: 1.5rem;
	min-height: 450px;
	border-radius: 20px;
	border: 3px solid var(--bs-primary);
}

.tier ul {
	list-style: none;
	margin: 1.5rem 0 3rem;
}

.tier h3 {
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--bs-primary);
}

/* ==================
  Footer
  =====================*/

#footer .about {
	padding: 4rem 6rem 2rem 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

#footer h3 {
	font-size: 2.5rem;
}

#footer .content {
	padding: 4rem 0 2rem 4rem;
}

#footer form {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: 400px;
	margin-top: 1rem;
}

#footer form input,
#footer form textarea {
	padding: 0.5rem;
	font-size: 1rem;
	border: 2px solid;
	border-radius: 4px;
	width: 100%;
}

#footer form button {
	background: var(--bs-primary);
	color: #FFF;
	padding: 0.5rem;
	border: none;
	border-radius: 4px;
	font-weight: bold;
}

.bg-block {
	height: 100%;
	width: 50%;
	content: "";
	position: absolute;
	top: 0;
	z-index: -1;
    display: none !important;
}

.left-block {
	background: var(--bs-light);
	left: 0;
}

.right-block {
	background: var(--bs-dark);
	right: 0;
	width: 57%;
}

#footer {
	position: relative;
}

#footer ul {
	list-style: none;
	padding-left: 0;
	margin-top: 2rem;
	justify-content: space-between;
}

#footer li {
	margin-right: 1rem;
}

.footer-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 1rem;
}

.footer-columns div {
	margin: 0 1rem;
}

.footer-menu a {
	text-decoration: none;
	font-weight: 500;
}

.social-media a {
	font-weight: 500;
	text-transform: uppercase;
	padding-bottom: 0.25rem;
	text-decoration: none;
}

/* ==================
  Media Queries
  =====================*/

@media (max-width: 1024px) {
	.top-bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.top-nav {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem;
	}
}

@media (max-width: 768px) {
	.services-overview,
	.pricing-tiers,
	.about,
	.footer-columns {
		flex-direction: column;
		align-items: center;
	}

	.service-card,
	.tier {
		width: 90%;
	}

	.hero {
		padding: 2rem 1rem;
	}

	.about .image,
	.about .content {
		width: 100%;
	}

	.top-nav a {
		margin-left: 0;
	}
}

@media (max-width: 480px) {
	body {
		font-size: 15px;
	}

	h1 {
		font-size: 1.75rem;
	}

	.btn {
		padding: 0.5rem;
		font-size: 0.9rem;
	}
}


/* === Footer Mobile Centering === */
@media (max-width: 768px) {
  #footer {
    text-align: center;
    padding: 3rem 1.5rem;
  }

  #footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  #footer .row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  #footer .about,
  #footer .content {
    padding: 0;
    text-align: center;
    max-width: 600px;
  }

  #footer h2,
  #footer h3,
  #footer h4 {
    text-align: center;
  }

  #footer ul.footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    margin: 2rem 0 0;
  }

  #footer ul.footer-menu li {
    margin: 0;
  }

  #footer ul.footer-menu a {
    font-size: 1rem;
  }

  #footer .byf-link {
    text-align: center;
    margin-top: 2rem;
  }
}



@media (max-width: 768px) {
  #footer .about {
    padding: 1.5rem 1rem;   
    height: auto;          
    align-items: center; 
    text-align: center;
  }
}

/* === Simple centered mobile layout for Pricing section === */
@media (max-width: 768px) {
  #pricing {
    padding: 3rem 1.5rem;
    text-align: center;
  }

  #pricing .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  #pricing .col-sm-12,
  #pricing .col-md-3 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  #pricing .tier {
    width: 100%;
    max-width: 400px;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
  }

  #pricing .tier h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  #pricing .tier .price {
    font-size: 2rem;
    margin: 0.5rem 0 1rem;
  }

  #pricing .tier ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    display: inline-block; 
  }

  #pricing .tier li {
    margin: 0.4rem 0;
  }

  #pricing .tier .btn {
    display: inline-block;
    width: 100%;
    max-width: 260px;
    margin-top: 1rem;
  }
}

/* === Simple centered mobile layout for Services section === */
@media (max-width: 768px) {
  #services {
    padding: 3rem 1.5rem;
    text-align: center;
  }

  #services .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  #services .col-sm-12,
  #services .col-md-6,
  #services .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #services .card.service-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  #services .card.service-card h3 {
    font-size: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }

  #services .card.service-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  #services .card.service-card iconify-icon {
    display: block;
    margin: 0 auto 0.75rem;
  }
}

@media (max-width: 768px) {
  #services .subtitle,
  #services h2 {
    color: #fff !important;
  }
}

/* === Centered, mobile-friendly Values section === */
@media (max-width: 768px) {
  #values {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  #values .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  #values .col-sm-12,
  #values .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #values .service-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
    text-align: center;
  }

  #values iconify-icon {
    display: block;
    margin: 0 auto 0.75rem;
  }

  #values h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  #values .subtitle {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}


/* === Reduce padding in Index section on mobile === */
@media (max-width: 768px) {
  #index {
    padding: 2.5rem 1.5rem;  
  }

  #index h1 {
    font-size: 1.75rem;      
    margin-bottom: 1rem;
  }

  #index .index-subtitle {
    font-size: 1.125rem;      
    margin-bottom: 0.5rem;
  }

  #index .content {
    text-align: center;       
  }
}


/* === Mobile menu: centered and brand-colored === */
@media (max-width: 992px) {
  /* Offcanvas background + text color */
  .offcanvas.offcanvas-end {
    background-color: var(--bs-primary) !important; 
    color: #fff;
    text-align: center;                  
  }

  /* Navbar links */
  .offcanvas .nav-link {
    color: #fff !important;
    font-weight: 500;
    display: block;
    padding: 0.75rem 0;
  }

  .offcanvas .nav-link:hover,
  .offcanvas .nav-link:focus {
    color: var(--bs-secondary) !important; /* your lighter accent */
  }

  /* Dropdown menu background + alignment */
  .offcanvas .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.15); /* subtle contrast overlay */
    border: none;
    text-align: left;                      /* dropdown items left-aligned for readability */
    margin: 0 auto;
    width: fit-content;                    /* keeps dropdown narrow + centered under parent */
  }

  /* Dropdown items */
  .offcanvas .dropdown-item {
    color: #fff !important;
    text-align: left;
  }

  .offcanvas .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bs-secondary) !important;
  }

  /* Center offcanvas title/logo */
  .offcanvas-header {
    justify-content: center;
  }

  /* Close button visibility */
  .offcanvas .btn-close {
    filter: invert(1);
    position: absolute;
    right: 1rem;
    top: 1rem;
  }
}

@media (max-width: 992px) {
  nav.navbar .container {
    padding-right: 0; 
  }

  .navbar-toggler {
    margin-right: 0.75rem; 
  }
}

.navbar .d-flex {
  justify-content: space-between;
  width: 100%;
}


@media (max-width: 768px) {
  #hero .text-dark,
  #hero .heading,
  #hero .text-area p {
    color: #fff !important;
  }


  #hero .heading { font-size: 1.9rem; line-height: 1.2; }
  #hero .heading .bold { font-size: 2.2rem; }
  #hero .text-area { padding: 0 1rem; }
}


#hero #hero-bg {
  z-index: 0 !important;
  pointer-events: none;
}
#hero > .container,
#hero .row { position: relative; z-index: 2; }


@media (max-width: 768px) {
  #hero::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
    z-index: 1;
  }
}

.dropdown-menu-dark {
    --bs-dropdown-color: #dee2e6;
    --bs-dropdown-bg: #343a40;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-box-shadow: ;
    --bs-dropdown-link-color: #dee2e6;
    --bs-dropdown-link-hover-color: #fff;
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #02305c;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-header-color: #adb5bd;
}

/*================
LEAD MAGNET
================*/

.lead-magnet {
    background: #0055a5;
    padding: 2rem 1rem;
}

.lead-magnet img {
    width: 155px;
    margin-right: 3rem;
    box-shadow: 1px 2px 5px rgb(57 54 54 / 43%);
}

.lead-magnet h2, .lead-magnet p {
  color: #fefefe;
}

@media all and (max-width: 575px) {

.lead-magnet {
  flex-direction: column;
}

.lead-magnet img {
  margin: 2rem auto;
}

.lead-magnet {
   text-align: center;
}

}
