/* General Styles */
body,
html {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}

/* General navbar style */

.navbar .logo {
	width: 130px;
	height: auto;
}

.navbar-nav .nav-link {
	color: #fff;
	font-weight: 500;
	padding: 10px 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.navbar-nav .nav-link:hover {
	color: #d4af37;
}

.signup-link {
	color: #fff;
	font-weight: 700;
	border-left: 1px solid #fff;
	padding-left: 10px;
}

.signup-link:hover {
	color: #d4af37;
}

.hero-section {
	margin-top: 20px;
}

.hero-section h2 {
	font-size: 36px;
	margin: 0;
}

.hero-section p {
	font-size: 18px;
}

.hero-btn {
	background: #ff4500;
	color: white;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
}

/* Featured Brands Section */

.image-label {
	text-align: center;
	color: #dbac3d;
	font-weight: bold;
	margin-top: 10px;
	font-size: 1.5em;
}
.text-center {
	text-align: center;
}

.featured-brands {
	display: flex;
	justify-content: space-around;
	padding: 50px;
}

.brand-box {
	width: 100%;
	height: auto;
	padding-top: 30px;
}

.brand-box2 {
	width: 100%;
	height: auto;
	padding-top: 30px;
}

/* Top Brand Section */

.top-brand {
	width: 100%;
	height: auto;
	padding-top: 30px;
}

.underline {
	text-align: center;
}

.top-brand-header {
	text-align: center;
	padding-top: 40px;
	font-weight: bold;
}

/* Authorized Dealer Section */

@media (max-width: 767px) {
	.authorized-dealer-header {
		font-size: 24px;
	}
	.inventory {
		font-size: 16px;
	}
	.shadow-box {
		margin-bottom: 15px;
	}
}

.col-lg-3 {
	width: 23%;
	margin: 1%;
	float: left;
}

.shadow-box {
	transition: transform 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	padding: 28px;
	background-color: #fff;
	text-align: center;
	width: 100%;
}

.shadow-box:hover {
	transform: scale(1.1);
}

.image-container {
	width: 150px;
	height: 100px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.image-container img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}

.authorized-dealer-header {
	text-align: center;
	padding-top: 40px;
	font-weight: bold;
}

.inventory {
	padding-top: 20px;
}

/* Genuine Spares Section */

@media (max-width: 767px) {
	.genuine-spares-dealer-header {
		font-size: 24px;
	}
	.solution {
		font-size: 16px;
	}
	.shadow-boxx {
		margin-bottom: 15px;
	}
}

.col-lg-3 {
	width: 23%;
	margin: 1%;
	float: left;
}

.shadow-boxx {
	transition: transform 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	padding: 28px;
	background-color: #fff;
	text-align: center;
	width: 100%;
}

.shadow-boxx:hover {
	transform: scale(1.1);
}

.image-containers {
	width: 150px;
	height: 100px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.image-containers img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}

.genuine-spares-dealer-header {
	text-align: center;
	padding-top: 50px;
	font-weight: bold;
}

.solution {
	padding-top: 20px;
}

/* Vehicle Enquiry Form */

.vehicle-enquiry-header {
	text-align: center;
	font-weight: bold;
}

.vehicle-enquiry {
	padding: 50px 20px;
}

.form-row {
	display: flex;
	gap: 20px;
	margin: 10px 0;
}

input,
select,
textarea {
	width: 100%;
	padding: 10px;
	margin: 5px 0;
}

button {
	background: #ff4500;
	color: white;
	padding: 10px 20px;
	border: none;
	cursor: pointer;
}

.custom-col-half {
	flex: 0 0 50%;
	max-width: 50%;
}

.custom-col-full {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (max-width: 768px) {
	.custom-col-half,
	.custom-col-full {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.button-submit {
	text-align: start;
}

/* Full-Service Automotive Solutions Section */

/* Section Wrapper */
.automotive-section {
	font-weight: bold;
	margin-top: 30px;
}

.section-wrapper {
	margin-top: 3rem;
	margin-bottom: 3rem;
	padding: 0 1rem; /* Adds padding for smaller screens */
}

/* Left Column */
.left-column {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section-title {
	font-weight: bold;
	font-size: 2rem;
}

.section-text {
	font-size: 1rem;
	color: #333;
	margin-top: 0.5rem;
}

/* Card List */
.card-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Card Item */
.card-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background-color: #000;
	color: #fff;
	padding: 20px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease-in-out;
}

.card-item:hover {
	transform: scale(1.05);
}

.card-content h5 {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.card-content p {
	font-size: 0.95rem;
	color: #ccc;
}

/* Hover Button */
.hover-btn {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #007bff;
	color: #fff;
	text-align: center;
	padding: 10px;
	font-weight: bold;
	transform: translateY(100%);
	transition: transform 0.3s ease-in-out;
}

.card-item:hover .hover-btn {
	transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 768px) {
	.card-list {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 15px;
	}

	.card-item {
		flex: 1 1 calc(50% - 15px);
	}
}

@media (min-width: 1024px) {
	.section-title {
		font-size: 2.5rem;
	}

	.section-text {
		font-size: 1.1rem;
	}

	.card-item {
		flex: 1 1 calc(45% - 20px);
	}
}

/* Why Us Section */
.why-us-section {
	padding: 1px 0;
	background-color: #1f242d;
}

.why-us-header {
	padding-top: 15px;
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 20px;
}

.why-us-section p {
	font-size: 1.1rem;
	color: #dcdcdc;
	margin-bottom: 30px;
}

.icon {
	font-size: 3rem;
	color: #ffcc00;
	display: block;
	margin: 0 auto;
	margin-bottom: 0.5rem;
}

.stat-number {
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	margin: 10px 0 10px 0;
}

.stat-text {
	color: #dcdcdc;
	text-align: center;
}

/* Footer */
.footer-logo {
	font-family: 'Times New Roman', serif;
	color: gold;
	font-size: 24px;
	font-weight: bold;
}

.footer {
	background-color: #212529;
	color: #999;
	padding: 40px 0;
}

.footer a {
	color: #999;
	text-decoration: none;
}

.footer a:hover {
	color: white;
}

.social-icons a {
	color: #999;
	margin-right: 10px;
}

.floating-contact-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: red;
	color: white;
	border: none;
	border-radius: 20px;
	padding: 10px 20px;
	text-align: center;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
	z-index: 1000;
}

.floating-contact-btn:hover {
	background-color: darkred;
}

/* Slider Styles */
.slider-container {
	position: relative;
	max-width: 100%;
	margin: auto;
	overflow: hidden;
}

.slide {
	display: none; /* Hide all slides by default */
	position: relative;
}

.slide img {
	width: 100%; /* Make images cover the slider area */
	vertical-align: middle;
}

.slider-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
}

.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.active {
	display: block; /* Display the active slide */
}

/* Black Patch Section */
/* .icon-container {
	text-align: center;
	padding: 20px;
}
.icon-circle {
	width: 100px;
	height: 100px;
	background-color: red;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
.icon-circle img {
	width: 60px;
}
.icon-label {
	margin-top: 10px;
	font-size: 16px;
	color: #f5f5f5;
}
.black-patch {
	background-color: black;
	padding: 20px 0;
	max-width: 100%;
	margin: 0 auto;
} */

.no-underline {
	text-decoration: none;
}
