body {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
	font-family: 'Source Sans 3', sans-serif;
	color: #E5E5E5;
	background: #debeb1; /* Old browsers */
	background: -moz-linear-gradient(45deg, #debeb1 0%, #f4e0c5 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #debeb1 0%, #f4e0c5 100%); /* Chrome10-25, Safari5.1-6 */
	background: -o-linear-gradient(45deg, #debeb1 0%, #f4e0c5 100%); /* Opera 11.1-12 */
	background: -ms-linear-gradient(45deg, #debeb1 0%, #f4e0c5 100%); /* IE10 */
	background: linear-gradient(45deg, #debeb1 0%, #f4e0c5 100%); /* Modern Browsers */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#debeb1', endColorstr='#f4e0c5', GradientType=1 ); /* IE6-9 */
	background-attachment: fixed; /* Makes sure it doesn't scroll away */
	min-height: 100vh; /* Ensures it covers the full height of the page */
	z-index: -1; /* Pushes it to the back */
	position: relative; /* Ensures it's not overridden by other elements */
}

body.fade-in {
  opacity: 1;
}

body.fade-out {
  opacity: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-family: Georgia, serif;
	color: #951716;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.5px;
	margin-bottom: 1rem;
}
body, p, label, td, input, select, textarea {
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 400;
	line-height: 1.6;
	font-size: 1.05rem;
	color: #4a4a4a;
}
label {
	font-weight: 500;
	letter-spacing: 0.3px;
}
.lead {
	font-size: 1.2rem;
	font-weight: 300;
}
.navbar {
	background-color: #010B13;
}
.navbar-brand {
	color: red !important;
}
.navbar-brand:hover {
	color: #E5E5E5 !important;
}/* Navbar Links */
.nav-link {
	color: #debeb1 !important; /* Luxurious Beige */
	transition: color 0.3s, text-shadow 0.3s;
	font-size: 1.1rem;
	padding: 10px 20px;
}
.nav-link:hover {
	color: #f4e0c5 !important; /* Elegant Soft Cream */
}
/* Dropdown Menu */
.dropdown-menu {
	background-color: rgba(1, 11, 19, 0.95); /* Slightly transparent Rich Black */
	border: 2px solid #debeb1;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); /* Deeper shadow for elegance */
	padding: 0px;
	transition: all 0.5s ease;
	width: 250px;
}
/* Dropdown Items */
.dropdown-item {
	color: #debeb1; /* Matches navbar link color */
	transition: color 0.3s, background-color 0.3s, padding-left 0.3s;
	padding: 10px 30px;
	line-height: 2.2;
	margin-top: 10px;
	margin-bottom: 10px;
	background: transparent;
}
.dropdown-item:hover {
	color: #f4e0c5; /* Elegant highlight */
	border-radius: 10px;
	background: #4a4a4a;
}
/* Navbar Brand */
.navbar-brand {
	color: #f4e0c5 !important; /* Matches the softer highlight */
	transition: color 0.3s, text-shadow 0.3s;
}
.navbar-brand:hover {
	color: #debeb1 !important;
}
.nav-icon {
	width: 50px;
	transition: transform 0.3s, filter 0.3s;
}
.nav-icon:hover {
	transform: scale(1.1);
	filter: drop-shadow(0 0 5px #A4A4A4);
}
/* Loading Screen Styling */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #010B13;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 2.5s ease;
}
.loading-logo {
	width: 600px; /* 150% larger for dramatic reveal */
	animation: fadeIn 3s ease forwards, fadeOut 3s 4.5s forwards;
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: scale(0.8);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}

/* Increase Spacing Between Navbar Buttons */
.navbar-nav .nav-item {
	margin-right: 30px; /* Adjust this value for desired spacing */
}
.navbar-nav .nav-link {
	padding: 12px 24px; /* Slightly increased padding for more breathing room */
	font-size: 1.15rem; /* Just a bit larger for more presence */
	letter-spacing: 0.5px; /* Makes the text feel more refined */
	transition: all 0.3s;
}

/* For Mobile View - Reduce Spacing Slightly */
@media (max-width: 991px) {
.navbar-nav .nav-item {
	margin-right: 15px;
}
.navbar-nav .nav-link {
	padding: 10px 15px;
	font-size: 1.05rem;
}
}
.navbar-dark .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23951716' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.section {
	padding: 100px 0;
}
.section-heading {
	text-align: center;
	margin-bottom: 50px;
}
.jumbotron {
	background: transparent;
	padding-top: 80px;
	padding-bottom: 80px;
}
.home-logo {
	width: 400px; /* Adjust the size as needed */
	transition: transform 0.3s;
}
.home-logo:hover {
	transform: scale(1.05);
}
.button-group .btn {
	margin: 10px 10px;
	background-color: #951716;
	border: none;
	padding: 10px 30px;
	color: #D5AF34;
	transition: all 0.3s;
}
.button-group .btn:hover {
	background-color: #951716;
	color: #f4e0c5;
}
.elevator-pitch {
	margin-top: 20px;
	color: #4A4A4A;
	max-width: 800px;
	margin: 0 auto;
}
.elevator-pitch p {
	margin-bottom: 15px;
}
.button-group a {
	margin: 0 10px;
}
/* Styling Links */
.elevator-pitch a {
	color: #010B13; /* Rich Black */
	text-decoration: underline;
	text-underline-offset: 3px; /* Adds a bit of elegance to the underline */
	transition: color 0.3s, text-decoration-color 0.3s;
}
.elevator-pitch a:hover {
	color: #951716; /* Luxurious Red on hover */
	text-decoration-color: #951716; /* Matches the text color on hover */
}
/* General Styling */
.section-heading {
	font-size: 2.5rem;
	color: #951716;
	margin-bottom: 20px;
	letter-spacing: 1px;
}
.intro-text {
	font-size: 1.2rem;
	color: #4a4a4a;
	max-width: 800px;
	margin: 0 auto;
}
/* Card Styling */
.card-custom {
	background-color: #e5e5e5;
	border-radius: 12px;
	transition: transform 0.3s, box-shadow 0.3s;
	padding: 20px;
}
.card-custom:hover {
	transform: scale(1.03);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.card-title {
	margin-bottom: 10px;
}
.card-text {
	color: #4a4a4a;
}
/* Button Styling */
.btn-custom {
	background-color: #951716;
	color: #D5AF34;
	border: none;
	padding: 10px 20px;
	transition: background-color 0.3s, color 0.3s;
	margin-top: 10px;
	border-radius: 5px;
}
.btn-custom:hover {
	background-color: #951716;
	color: #f4e0c5;
}
/* FORM INPUTS, TEXTAREAS, SELECTS */
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="date"], input[type="number"], textarea, select {
	background-color: #f4e0c5;
	border: 2px solid #951716;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 1.1rem;
	color: #010B13;
	width: 100%;
	transition: all 0.3s ease;
	box-shadow: none;
}
input:focus, textarea:focus, select:focus {
	background-color: #f4e0c5 !important;
	border-color: #951716;
	outline: none;
	box-shadow: 0 0 0 2px rgba(213, 175, 52, 0.25);
}
/* TEXTAREA ONLY */
textarea {
	min-height: 140px;
	resize: vertical;
	background-color: #f4e0c5 !important;
	border: 2px solid #951716 !important;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 1.1rem;
	color: #010B13;
	width: 100%;
	transition: all 0.3s ease;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}
/* RADIO & CHECKBOX */
input[type="checkbox"], input[type="radio"] {
	appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #951716;
	background-color: #f4e0c5;
	margin-right: 10px;
	position: relative;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	border-radius: 4px;
}
input[type="radio"] {
	border-radius: 50%;
}
input[type="checkbox"]:checked::after, input[type="radio"]:checked::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 10px;
	height: 10px;
	background-color: #951716;
	border-radius: inherit;
}
input[type="radio"]:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 8%;
	width: 10px;
	height: 10px;
	background-color: #951716;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}
/* === Form Buttons Consistency === */
button[type="submit"], input[type="submit"] {
	background-color: #951716;
	color: #D5AF34;
	font-size: 1rem;
	padding: 10px 25px;
	border: none;
	border-radius: 8px;
	font-weight: 500;
	transition: background-color 0.3s ease, color 0.3s ease;
}
button[type="submit"]:hover, input[type="submit"]:hover {
	background-color: #7a1112;
	color: #f4e0c5;
	cursor: pointer;
}
button[type="reset"], input[type="reset"] {
	background-color: #e5e5e5;
	color: #4a4a4a;
	font-size: 1rem;
	padding: 10px 25px;
	border: none;
	border-radius: 8px;
	font-weight: 500;
	transition: background-color 0.3s ease, color 0.3s ease;
}
button[type="reset"]:hover, input[type="reset"]:hover {
	background-color: #dad9d9;
	cursor: pointer;
}

/* Responsive Styling */
@media (max-width: 991px) {
.intro-text {
	font-size: 1rem;
}
.section-heading {
	font-family: Georgia, serif;
	font-size: 2.2rem;
	font-weight: 600;
	color: #951716;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.card-title {
	font-size: 1.1rem;
}
.card-text {
	font-size: 0.9rem;
}
}
/* Card Links Styling */
.card-links {
	margin-top: 10px;
}
.service-link {
	color: #951716;
	text-decoration: underline;
	transition: color 0.3s;
}
.service-link:hover {
	color: #A4A4A4;
}
.detail-panel {
	display: none;
	padding-top: 30px;
	border-top: 2px dashed #D5AF34;
	margin-top: 30px;
	transition: all 0.3s ease;
}
.detail-panel.show {
	display: block;
}
.card-custom {
	padding: 0; /* remove any internal padding */
	border: none; /* optional: if you want edge-to-edge visuals */
	overflow: hidden; /* ensures image doesn’t spill out */
}
.card-custom img.card-img-top {
	border-radius: 0;       /* removes rounded corners */
	width: 100%;            /* makes image fill horizontally */
	height: 100%;           /* ensures full height if you want it */
	object-fit: cover;      /* crops to fit without distortion */
	display: block;         /* removes small image gaps */
}
.card-body {
	display: flex;
	flex-direction: column;
}
.card-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem; /* Reduced from Bootstrap default (1rem) */
	line-height: 1.3;
}
.card-text {
	font-size: 1.05rem;
	line-height: 1.6;
	margin-bottom: 1.5rem; /* Keeps space above the button consistent */
	color: #4a4a4a;
}
.card-body a.btn {
	margin-top: auto; /* Pushes the button to the bottom */
}
/* Footer Styling */
footer {
	background-color: #010B13;
	color: #D5AF34;
	padding: 60px 0;
	text-align: center;
	border-top: 2px solid #D5AF34;
}
/* General Text Styling */
footer p {
	margin: 15px 0;
	line-height: 1.6;
	font-size: 1rem;
	letter-spacing: 0.5px;
	color: #D5AF34;
}
/* States Served List Styling */
footer .states-list {
	margin-bottom: 20px;
	font-size: 0.95rem;
}
/* Contact Information Styling */
footer .contact-info {
	font-size: 1rem;
}
/* Footer Links Styling */
footer .contact-info a {
	color: #debeb1; /* Matches your nav links */
	text-decoration: underline;
	transition: color 0.3s;
}
footer .contact-info a:hover {
	color: #f4e0c5; /* Luxurious hover effect */
}
/* Copyright Styling */
footer .copyright {
	margin-top: 30px;
	font-size: 0.85rem;
	color: #E5E5E5;
}
/* Subtle Hover Effect */
footer a:hover {
	color: #f4e0c5; /* Matches your hover styling in the navbar */
}

/* Media Query for Better Responsiveness */
@media (max-width: 768px) {
footer {
	padding: 40px 20px;
}
}