
	/* =========================
Brand Variables
        ========================= */
:root {
	--cadabra-navy: #2E3354;
	--cadabra-gold: #D39B2C;
	--cadabra-ccolor: #00AEEF;

	--cadabra-navy-dark: #0d2c52;
	--cadabra-gold-dark: #b28f1f;
	--cadabra-ink: #1f2937;
	--cadabra-muted: #6b7280;
	--cadabra-bg: #f7f8fa;
	--cadabra-surface: #ffffff;
	--cadabra-surface-soft: #f3f4f6;
	--cadabra-border: #d9dee7;
	--cadabra-overlay: rgba(9, 22, 41, 0.52);
	--cadabra-shadow: 0 18px 48px rgba(17, 24, 39, 0.18);
	--cadabra-radius: 18px;

	/*--cadabra-font-primary: "Proxima Nova", "Avenir Next", "Segoe UI", sans-serif;*/
	--cadabra-font-primary: "Poppins", "Montserrat", "Segoe UI", sans-serif;

}

body {
	font-family: var(--cadabra-font-primary);
	color: var(--cadabra-navy);
	margin: 0;
	padding: 0;
}


/*changes for footer May 8 2026*/
	.page-wrap {
		max-width: 1080px;
		margin: 0 auto;
		padding: 48px 20px 120px;

	}
	.footer-demo {
		margin-top: 48px;
		padding-top: 24px;
		border-top: 1px solid #e5e7eb;
		font-size: 14px;
	}

	.cookie-banner {
		position: fixed;
		left: 20px;
		right: 20px;
		bottom: 20px;
		z-index: 9999;
		max-width: 1180px;
		margin: 0 auto;
		background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
		border: 1px solid var(--cadabra-border);
		border-radius: 20px;
		box-shadow: var(--cadabra-shadow);
		padding: 22px 24px;
		display: none;
	}

	.cookie-banner.show {
		display: block;
	}

	.cookie-banner__inner {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 22px;
		flex-wrap: wrap;
	}

	.cookie-banner__content {
		flex: 1 1 560px;
		min-width: 280px;
	}

	.cookie-banner__eyebrow {
		display: inline-block;
		margin-bottom: 8px;
		padding: 6px 10px;
		border-radius: 999px;
		background: rgba(201, 162, 39, 0.12);
		color: var(--cadabra-navy);
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}

	.cookie-banner__title {
		margin: 0 0 8px;
		font-size: 22px;
		line-height: 1.2;
		color: var(--cadabra-navy);
	}

	.cookie-banner__text {
		margin: 0;
		font-size: 15px;
		color: #334155;
		max-width: 760px;
	}

	.cookie-banner__actions {
		display: flex;
		gap: 10px;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-end;
	}

	.cf-btn {
		appearance: none;
		border: 1px solid transparent;
		border-radius: 12px;
		padding: 12px 16px;
		font-size: 14px;
		font-weight: 700;
		cursor: pointer;
		transition: all 0.2s ease;
		min-height: 46px;
	}

	.cf-btn:hover {
		transform: translateY(-1px);
		text-decoration: underline !important;
	}

	.cf-link-btn:hover {
		text-decoration: underline;
	}

	.cf-btn:focus,
	.cf-link-btn:focus,
	.toggle input:focus + .toggle-slider {
		outline: 3px solid rgba(18, 59, 109, 0.18);
		outline-offset: 2px;
	}

	.cf-btn--primary {
		background: var(--cadabra-navy);
		border-color: var(--cadabra-navy);
		color: #ffffff;
	}

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

	.cf-btn--secondary {
		background: #ffffff;
		border-color: var(--cadabra-border);
		color: var(--cadabra-navy);
	}

	.cf-btn--secondary:hover {
		background: #f8fafc;
	}

	.cf-btn--gold {
		background: var(--cadabra-gold);
		border-color: var(--cadabra-gold);
		color: #1f2937;
	}

	.cf-btn--gold:hover {
		background: var(--cadabra-gold-dark);
		border-color: var(--cadabra-gold-dark);

	}

	.cf-link-btn {
		border: none;
		background: transparent;
		color: var(--cadabra-gold);

		cursor: pointer;
		padding: 0;
		font: inherit;
		font-weight: 600;
	}

	.cookie-modal {
		position: fixed;
		inset: 0;
		background: var(--cadabra-overlay);
		z-index: 10000;
		display: none;
		align-items: center;
		justify-content: center;
		padding: 20px;
	}

	.cookie-modal.show {
		display: flex;
	}

	.cookie-modal__dialog {
		width: 100%;
		max-width: 780px;
		max-height: 90vh;
		overflow: auto;
		background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
		border-radius: 22px;
		box-shadow: var(--cadabra-shadow);
		border: 1px solid #e6eaf0;
		padding: 26px;
	}

	.cookie-modal__header {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 16px;
	}

	.cookie-modal__title-wrap {
		max-width: 600px;
	}

	.cookie-modal__eyebrow {
		display: inline-block;
		margin-bottom: 8px;
		padding: 6px 10px;
		border-radius: 999px;
		background: rgba(201, 162, 39, 0.12);
		color: var(--cadabra-navy);
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}

	.cookie-modal__title {
		margin: 0 0 6px;
		font-size: 26px;
		color: var(--cadabra-navy);
		line-height: 1.15;
	}

	.cookie-modal__intro {
		margin: 0;
		font-size: 15px;
		color: var(--cadabra-muted);
	}

	.cookie-modal__close {
		border: none;
		background: transparent;
		font-size: 30px;
		line-height: 1;
		cursor: pointer;
		color: var(--cadabra-muted);
		padding: 0;
	}

	.cookie-group {
		background: var(--cadabra-surface-soft);
		border: 1px solid #e5e7eb;
		border-radius: 16px;
		padding: 18px;
		margin-bottom: 14px;
	}

	.cookie-group__top {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 18px;
		flex-wrap: wrap;
	}

	.cookie-group__title {
		margin: 0 0 6px;
		font-size: 18px;
		color: var(--cadabra-navy);

	}

	.cookie-group__desc {
		margin: 0;
		font-size: 14px;
		color: #4b5563;
		max-width: 570px;
	}

	.cookie-group__status {
		display: inline-block;
		background: rgba(18, 59, 109, 0.08);
		color: var(--cadabra-navy);
		border: 1px solid rgba(18, 59, 109, 0.12);
		border-radius: 999px;
		padding: 8px 12px;
		font-size: 13px;
		font-weight: 700;
		white-space: nowrap;
	}

	.cookie-modal__actions {
		display: flex;
		gap: 10px;
		flex-wrap: wrap;
		justify-content: flex-end;
		margin-top: 22px;

	}

	.sr-only {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}


	.toggle {
		position: relative;
		display: inline-flex;
		align-items: center;
		gap: 12px;
		font-size: 14px;
		font-weight: 700;
		color: var(--cadabra-navy);
		user-select: none;

	}

	.toggle_footer input {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}

	.toggle_footer-slider {
		width: 56px;
		height: 32px;
		background: #cfd6df;
		border-radius: 999px;
		position: relative;
		transition: background 0.2s ease;
		display: inline-block;
		flex-shrink: 0;
	}

	.toggle_footer-slider::before {
		content: "";
		position: absolute;
		width: 24px;
		height: 24px;
		left: 4px;
		top: 4px;
		background: #ffffff;
		border-radius: 50%;
		transition: transform 0.2s ease;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	}

	.toggle_footer input:checked + .toggle_footer-slider {
		background: var(--cadabra-gold);
	}

	.toggle_footer input:checked + .toggle_footer-slider::before {
		transform: translateX(24px);
	}

/*changes end here for footer May 8 2026*/

	.legal-section_footer {
		max-width: 800px;
		margin: 40px auto;
		padding: 0 20px;
		font-size: 15px;
		line-height: 1.7;
		color: #333;
	}

	.legal-section_footer p {
		text-align: justify;
		hyphens: auto;
		margin-bottom: 16px;
	}

	/* Mobile optimization */
	@media (max-width: 600px) {
		.legal-section_footer {
			font-size: 14px;
			line-height: 1.6;
		}

		.legal-section_footer p {
			text-align: left;
		}
	}

	.form-control,
	.form-select {
		border: 1px solid #ccc;
		border-radius: 6px;
		transition: all 0.2s ease;
	}

	/* When user clicks into field */
	.form-control:focus,
	.form-select:focus {
		border-color: var(--cadabra-gold);
		box-shadow: 0 0 0 0.2rem rgba(211,155,44,0.25);
		outline: none;
	}
	/* Hide default checkbox */
	.form-check-input {
		appearance: none;
		width: 18px;
		height: 18px;
		border: 2px solid var(--cadabra-navy);
		border-radius: 4px;
		cursor: pointer;
		position: relative;
	}

	/* When checked */
	.form-check-input:checked {
		background-color: var(--cadabra-gold);
		border-color: var(--cadabra-gold);
	}

	/* Checkmark */
	.form-check-input:checked::after {
		content: "✔";
		position: absolute;
		top: -2px;
		left: 3px;
		font-size: 14px;
		color: white;
		font-weight: bold;
	}

	/* Container for all checkboxes */
	.checkbox-container {
		display: flex;
		flex-direction: column;
		align-items: flex-start; /* LEFT ALIGN */
		gap: 10px;
		margin-top: 10px;
	}

	.checkbox-container label {
		display: flex;
		align-items: center;
		gap: 10px;
		width: 100%;
		padding: 8px 10px;
		border-radius: 6px;
		cursor: pointer;
		transition: 0.2s;
	}

	.checkbox-container label:hover {
		background: #f1f7ff;
	}

	.checkbox-container input[type="checkbox"] {
		width: 18px;
		height: 18px;
		accent-color: #3085d6;
		cursor: pointer;
	}

	.checkbox-container span {
		font-size: 15px;
	}

	.swal-buttons {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.table-container {
		max-height: 300px;
		overflow-y: auto;
	}

	thead th {
		position: sticky;
		top: 0;
		z-index: 2;
	}

	.swal-btn {
		padding: 10px;
		border: none;
		background: #3085d6;
		color: white;
		border-radius: 5px;
		cursor: pointer;
		font-size: 16px;
	}

	.swal-btn:hover {
		background: #2563eb;
	}
	
/* =========================
Logo Styling
========================= */
.logo {
	font-weight: 600; /* semibold */
	font-style: italic;
	letter-spacing: 0.5px;
	display: inline-block;
}

.logo-cadabra {
	color: var(--cadabra-navy);
}

.logo-funding {
	color: var(--cadabra-gold);
	margin-left: 6px;
}

	.logo-img {
		max-width: 100%;
		height: auto;
	}
/* =========================
   Headings
========================= */
h1, h2, h3, h4,h5 {
	color: var(--cadabra-navy);
	font-weight: 600;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

/* =========================
Buttons
========================= */
.btn-primary {
	background-color: var(--cadabra-navy);
	color: #ffffff;
	border: none;
	padding: 12px 20px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 6px;
}

.btn-primary:hover {
	background-color: #1f2340;
}

.btn-accent {
	background-color: var(--cadabra-gold);
	color: #ffffff;
	border: none;
	padding: 12px 20px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 6px;
}

.btn-accent:hover {
	background-color: #b88422;
}

/* =========================
Links
========================= */
a {
	color: var(--cadabra-gold);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* =========================
   Utility Classes
========================= */
.text-navy {
	color: var(--cadabra-navy);
}

	.text-ccolor {
		color: var(--cadabra-ccolor);
	}

.text-gold {
	color: var(--cadabra-gold);
}

.bg-navy {
	background-color: var(--cadabra-navy);
	color: #ffffff;
}

.bg-gold {
	background-color: var(--cadabra-gold);
	color: #ffffff;
}

/* NAVBAR */
.navbar {
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(8px);
}
.nav-link:hover { color: #2f5bd3; }

/* HERO */
.hero {
	background: url('assets/images/hero-truck.jpg') center/cover no-repeat;
	/*min-height: 520px;*/
	/*display: flex;*/
	/*align-items: center;*/
	/*position: relative;*/
	/*background-color: transparent !important;*/
	/*background-image: none !important;*/
	min-height: 400px;
	max-width: 100%;
	/*height: auto;*/
	height: auto;
	display: flex;
	align-items: center;
	position: relative;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	/*background: linear-gradient(90deg, rgba(10,20,60,0.9), rgba(10,20,60,0.3));*/
}
.hero-panel {
	position: relative;
	z-index: 2;
	/*background: rgba(255,255,255,0.08);*/
	/*background-color: transparent !important;*/
	/*backdrop-filter: blur(14px);*/
	/*padding: 50px;*/
	/*border-radius: 16px;*/
	/*color: white;*/
	/*max-width: 520px;*/
	/*box-shadow: 0 25px 60px rgba(0,0,0,0.35);*/
	/*opacity: 0;*/
	/*transform: translateY(20px);*/
	/*animation: fadeInUp 1s forwards;*/
}
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* HERO TITLE */
.hero-title span {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.15;
}
.hero-title span:last-child {
	background: linear-gradient(90deg, #ffffff, #dfe6ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

}
/*.hero-title span:last-child { color: #f5a623; }*/
	.hero-title span:first-child { color: var(--cadabra-navy); }

/* HERO BUTTONS */
.hero-panel .btn { margin-top: 10px; }
.hero-panel .btn-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

	.justify-text {
		text-align: justify;
		text-justify: inter-word;
	}
	.justify-text::after {
		content: "";
		display: inline-block;
		width: 100%;
	}
@media(min-width: 576px) {
	.hero-panel .btn-group { flex-direction: row; }
}

/* BUTTONS */
	/*background: #f5a623;*/
	/*color: white*/
.btn-orange {
	background: #f5a623;
	color: white;
	border-radius: 6px;
	padding: 10px 18px;
}

	.btn-orange1 {
		background: #2E3354;
		color: #f5a623;
		border-radius: 6px;
		padding: 10px 18px;
	}

.btn-blue {
	background: #2f5bd3;
	color: white;
	border-radius: 6px;
	padding: 10px 18px;
}
.btn-orange:hover, .btn-blue:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* SECTION TITLES */
.section-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 2.5rem;
	text-align: center;
	/*margin-bottom: 20px;*/
	display: flex;
	align-items: center;
	justify-content: center;
	/*gap: 15px;*/
}
.section-title::before,
.section-title::after {
	content: "";
	flex: 1;
	height: 2px;
	background-color: var(--cadabra-navy);
}

/* HOW IT WORKS */
.how-it-works
{
	/*background-color: #c6d0ff;  removes background*/
	padding: 20px 0; }
.step img { margin-bottom: 10px; transition: 0.3s; }
.step:hover img { transform: scale(1.1); }
.step p { font-weight: 500; }

/* CARDS */
.cards-section {
	/*background: linear-gradient(180deg, #aabfff 0%, #7a92ff 100%);*/
	padding: 40px 0;
}
.card {
	border-radius: 12px;
	overflow: hidden;
	background: white;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	transition: 0.3s;
}
.card:hover { transform: translateY(-10px); }
.card img { height: 220px; object-fit: cover; }

/* CARD BULLETS */
.card-body ul { padding-left: 0; margin-top: 10px; }
.card-body ul li {
	list-style: none;
	position: relative;
	padding-left: 25px;
	margin-bottom: 8px;
}
.card-body ul li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: #2f5bd3;
}

/* CARD HEADERS IMPROVED */
.card-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	/*color: #222;*/
	color: var(--cadabra-navy);
	margin-bottom: 10px;
	position: relative;
	/*padding-left: 14px;*/
	opacity: 0;
	transform: translateY(15px);
	animation: fadeInUpCard 0.6s forwards;
}
.card-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	/*background-color: #2f5bd3;*/
	border-radius: 2px;
}
.fit-img {
	width: 100%;          /* makes image span the card width */
	height: auto;        /* adjust height as needed */
	max-height: 250px;  /* optional max height */
	object-fit: contain;  /* makes entire image visible without cropping */
}



@keyframes fadeInUpCard {
	to { opacity: 1; transform: translateY(0); }
}

/* FOOTER */
footer {
	/*background: linear-gradient(180deg, #bfc8ff, #aabfff);*/
	padding: 40px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) { .hero-title span { font-size: 1.8rem; } }
