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


	/*--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;
}

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

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

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

		.legal-section 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; } }
