@charset "UTF-8";

body {
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #fff;
}

body, button, input, select, textarea {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 16px;
	font-size: 1rem;
}

body, button, input[type=button], input[type=submit], textarea {
	line-height: 1.85714285714286;
}

* {
	box-sizing: border-box;
}

.login-pass {
	position: relative;
	display: flex;
	align-items: center;
}

.login-pass input {
	padding-right: 35px;
}

#togglePassword {
	position: absolute;
	right: 10px;
	cursor: pointer;
	color: #df0024;
	font-size: 14px;
}

.search-container {
	position: relative;
	display: flex;
	gap: 2px;
}

a.contact-phn {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}

#searchBox {
	width: 0;
	opacity: 0;
	transition: 0.4s ease;
	padding: 6px 10px;
	border-radius: 2px;
	border: none;
	outline: none;
	height: 35px;
	align-items: center;
}

.search-icon {
	align-items: center;
	display: flex;
}

#searchBox.active {
	width: 260px;
	opacity: 1;
	max-height: 37px;
	background: #fff;
	padding: 10px;
}

.highlight {
	background: yellow;
}

.highlight.active {
	background: orange;
}
/* Toast Notification */
#toast-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
}

.business-login-head {
	font-size: 30px;
	text-align: center;
}

.toast {
	background-color: red;
	color: #fff;
	padding: 12px 20px;
	margin-top: 10px;
	border-radius: 6px;
	opacity: 0;
	transition: opacity 0.5s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	min-width: 220px;
	text-align: center;
	font-size: 15px;
}

.toast.show {
	opacity: 1;
}

/* Login Form */
.login-con {
	display: flex;
	align-items: center;
	justify-content: center;
}

.username-email, .login-pass {
	display: flex;
	align-items: center;
	background-color: #d7d5d5;
	border-radius: 9px;
	padding: 14px 21px;
	margin-bottom: 19px;
}

.username-email i, .login-pass i {
	margin-right: 10px;
	font-size: 18px;
	color: #333;
}

input#email, input#password {
	flex: 1;
	border: none;
	outline: none;
	background: #d7d5d5;
}

.login-btn button {
	width: 100%;
	background: #df0024;
	color: #fff;
	border: none;
	border-radius: 30px;
	font-size: 20px;
	height: 50px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.login-btn button:hover {
	background: #c3001f;
}

.forget-pass, .new-acc {
	text-align: center;
	margin-top: 18px;
}

.new-acc p {
	margin: 8px 0 4px;
	color: #444;
}

.forget-pass a {
	float: right;
	color: #4b4848;
	font-size: 13px;
	padding-bottom: 9px;
	margin-top: -10px;
}

.new-acc a {
	color: #b90000;
	font-size: 16px;
	padding-bottom: 9px;
}

.web-con {
	padding: 0 15px;
	box-sizing: border-box;
}

img.logo-con {
	width: 215px;
	height: auto;
	max-width: 215px;
}

.top-bar {
	background: #000;
	color: #fff;
}

.top-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	line-height: 40px;
}

.top-section p {
	font-size: 14px;
	margin: 0 !important;
	align-items: center;
	text-align: center;
}
/*Header*/
.banner-outer {
	margin: 0;
	width: 100%;
	display: inline-block;
}
.heading-con p {
    text-align: center;
    font-size: 36px;
    line-height: 30px;
    margin: 20px;
}

.heading-con h1 {
	font-size: 65px;
	line-height: 60px;
	text-align: center;
}

/*navigation*/
ul.nav-con {
	display: flex;
	list-style: none;
	align-items: center;
	flex-wrap: wrap;
}

ul.nav-con li a {
	text-decoration: none;
	text-transform: uppercase;
	color: #000000;
	font-size: 13px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	padding: 0 1em;
}

ul.sub-menu ul.nav-con li ::after {
	content: "";
	width: 5px;
	height: 5px;
	border-left: 1px solid #000;
	border-bottom: 1px solid #000;
	position: absolute;
	rotate: -45deg;
	right: -8px;
	top: 5px;
}

#header .main_nav a {
	color: #024186;
	display: block;
	padding: 0.2em 0.7em 0.7em 0.7em;
}

.menu-item-has-children a {
	padding-right: 1em !important;
}

ul.nav-con li {
	position: relative;
}

ul.sub-menu {
	position: absolute;
	background: #e92130;
	width: 150px;
	padding: 5px;
	border-top: 1px solid #fff;
	display: none;
}

ul.nav-con li:hover ul.sub-menu {
	display: block;
}

ul.sub-menu li {
	width: 100%;
	border-bottom: 1px solid #ccc;
	padding: 5px 0 !important;
	display: inline-block;
}
/*logo Section*/
.logo-con {
	display: inline-block;
}

img.logo-box {
	width: 45px;
	padding-left: 5px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.cart-con {
	width: 100%;
	display: inline-block;
	margin-top: 100px;
}

.image-con {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 30px;
}

.image-con p {
	font-size: 20px;
}

.booking-con p {
	font-size: 17px;
	color: #656363;
	padding-top: 20px;
	text-align: center;
	align-items: center;
}

.box-con {
	text-align: center;
}

a.return-pickup-con {
	text-align: center;
	padding: 20px 20px;
	background: #4d4d4d;
	display: inline-block;
	border-radius: 10px;
	font-size: 17px;
	color: #fff;
	text-decoration: none;
}

a.view-cart {
	text-decoration: none;
	color: #fff;
	background: #000;
	padding: 15px 20px;
	border-radius: 25px;
	font-size: 17px;
}

.view-cart-con {
	text-align: center;
	margin-top: 40px;
}
/* Second-con*/
footer {
	display: inline-block;
	width: 100%;
	margin-top: 100px;
	padding: 16px 0px;
	min-height: auto;
	background: #f3f3f7;
}

.footer-con {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 30px;
}

.footer-logo p {
	color: #656363;
	font-size: 16px;
	line-height: 30px;
}

.quick-link ul, .important-link ul {
	list-style: none;
	padding-top: 10px;
	margin: 0;
	padding-left: 0;
	gap: 10px;
	display: flex;
	flex-flow: column;
	margin-top: 15px;
}

.quick-link ul li a, .important-link ul li a {
	text-decoration: none;
	color: #434343;
	font-size: 16px;
}

.quick-link ul li a:hover, .important-link ul li a:hover {
	color: #000;
}

.testimonials-con p, .testimonials-con span {
	width: 100%;
	color: #656363;
	font-size: 14px;
}

.important-link {
	width: 100%;
	border-right: 1px dashed #ccc;
}

.footer-logo {
	width: 100%;
}

.important-link, .quick-link {
	width: 100%;
}

p.managing {
	display: inline-block;
	font-size: 13px;
	color: #656363;
}

.testimonials-con strong {
	font-size: 12px;
}

.copy-right-con {
	display: inline-block;
	width: 100%;
	margin: 0;
	background: #3a3a3a;
	color: #fff;
	padding: 0 15px;
}

.copyright-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 27px;
	padding-bottom: 20px;
}

.copyright-inner p {
	font-size: 17px;
	margin: 0;
}

.footer-logo img {
	width: 250px;
	height: auto;
}

.footer-con h3 {
	margin: 0;
	font-weight: 600;
	font-size: 1.375rem;
	color: #3a3a3a;
	font-family: 'khand', sans-serif;
}

.icon {
	display: none !important;
	position: absolute;
	right: 10px;
	top: 17px;
	width: 40px;
	height: 40px;
	padding: 0 !important;
	background: #000;
	border: none;
	border-radius: 4px;
}

.icon i {
	width: 20px;
	height: 2px;
	background: #fff;
	display: block;
	margin-top: 12px;
	margin-left: auto;
	margin-right: auto;
	transition: all 0.3s ease;
}

.icon::after {
	content: "";
	width: 20px;
	display: block;
	height: 2px;
	position: absolute;
	background: #fff;
	top: 18px;
	left: 10px;
	transition: all 0.3s ease;
}

.icon::before {
	content: "";
	width: 20px;
	display: block;
	height: 2px;
	position: absolute;
	background: #fff;
	bottom: 14px;
	left: 10px;
	transition: all 0.3s ease;
}

a.icon:focus {
	background: none !important;
}

.icon.active i {
	background-color: transparent;
}

.icon.active::before {
	bottom: 19px;
	transform: rotate(45deg);
}

.icon.active::after {
	top: 19px;
	transform: rotate(-45deg);
}

a.icon:focus {
	background: #000 !important;
}

p#status {
	position: absolute;
	top: 109px;
	margin: 0;
	font-size: 13px;
	right: 27px;
}

.main-container {
	position: relative;
}

.container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.testimonial-container {
	position: relative;
	padding-left: 15px;
}

.testimonial-header {
	font-size: 1.375rem;
	font-weight: bold;
	color: #333;
	text-transform: capitalize;
	margin: 0;
}

.testimonial-content {
	position: relative;
	height: 440px;
	width: 378px;
	display: flex;
	flex-direction: column;
}

.testimonial-item {
	display: none;
	animation: fadeIn 0.5s;
	flex: 1;
	overflow-y: auto; /* Allow scrolling if content is too long */
}

.testimonial-item.active {
	display: block;
}
@keyframes fadeIn {from { opacity:0;
	
}

to {
	opacity: 1;
}

}
.testimonial-text {
	font-size: 14px;
	color: #434343;
	line-height: 28px;
}

.testimonial-author {
	font-weight: bold;
	color: #333;
	font-size: 15px;
	margin-bottom: 5px;
}

.testimonial-company {
	font-style: italic;
	color: #888;
	font-size: 14px;
}

.nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(200, 200, 200, 0.7);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
}

.testimonial-container:hover .nav-button {
	opacity: 1;
	visibility: visible;
}

.nav-button:hover {
	background-color: rgba(150, 150, 150, 0.9);
}

.nav-button.prev {
	left: 15px;
}

.nav-button.next {
	right: 15px;
}

.nav-button svg {
	width: 20px;
	height: 20px;
	fill: white;
}

.dots-container {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 15px 0;
	background: transparent;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #ddd;
	cursor: pointer;
	transition: background-color 0.3s;
}

.dot.active {
	background-color: #666;
}

@media ( max-width : 768px) {
	.testimonial-container {
		padding: 53px 178px;
	}
	.nav-button {
		width: 40px;
		height: 40px;
	}
	.nav-button.prev {
		left: 10px;
	}
	.nav-button.next {
		right: 10px;
	}
	.testimonial-content {
		position: relative;
		height: 440px;
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	.search-container {
		position: relative;
		gap: 2px;
		display: none;
	}
}

@media ( max-width : 480px) {
	.testimonial-container {
		padding: 40px 60px;
		align-items: center;
		text-align: center;
		display: flex;
		flex-direction: column;
	}
	.testimonial-header {
		font-size: 24px;
	}
	.testimonial-text {
		font-size: 14px;
	}
	.testimonial-content {
		position: relative;
		height: 440px;
		width: 338px;
		display: flex;
		flex-direction: column;
	}
	.testimonial-item {
		display: none;
		animation: fadeIn 0.5s;
		flex: 1;
		overflow-y: auto;
		width: 100%;
	}
}

@media ( max-width : 500px) {
	.login-container {
		padding: 0 20px;
	}
	.login-btn button {
		font-size: 18px;
		height: 45px;
	}
	.search-container {
		position: relative;
		gap: 2px;
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.btn-con {
		gap: 0;
	}
	a.btn-now {
		padding: 10px 18px;
	}
	a.btn-schedule {
		padding: 13px 17px;
		font-size: 17px;
	}
	a.btn-call {
		height: 48px;
		width: 48px;
	}
	.fa-chevron-down:before {
		left: 33px;
	}
	.search-container {
		position: relative;
		gap: 2px;
		display: none;
	}
}

@media screen and (max-width: 354px) {
	.btn-con {
		gap: 10px;
		flex-flow: row;
	}
	a.btn-now {
		padding: 15px 27px;
		font-size: 13px;
	}
	a.btn-schedule {
		padding: 16px 14px;
		font-size: 13px;
	}
	a.btn-call {
		height: 45px;
		width: 45px;
	}
	.fa-chevron-down:before {
		left: 45px;
	}
	#form-group {
		height: 45px;
	}
	.search-container {
		position: relative;
		gap: 2px;
		display: none;
	}
}

@media screen and (max-width: 1024px) {
	.footer-con, .copy-right-con {
		gap: 10px;
	}
}

@media screen and (max-width: 820px) {
	ul.nav-con li {
		position: relative;
		width: 100%;
		border-bottom: 1px solid #eaeaea;
	}
	.icon {
		display: block !important;
	}
	#header, #header .main_nav {
		position: relative;
	}
	div#navigation {
		display: none;
	}
	div#navigation {
		background: #f9f9f9;
		position: absolute;
		width: 100%;
		top: 80px;
		left: 0;
		z-index: 999;
	}
	ul.sub-menu {
		position: relative;
		width: 100%;
		border-top: 0;
		display: block;
	}
	ul.sub-menu li {
		border-bottom: 0 !important;
		border-top: 1px solid #fff;
	}
	.menu-item-has-children::after {
		top: 15px;
	}
	header {
		position: relative;
	}
	ul.nav-con {
		flex-flow: column;
		align-items: start;
		border-bottom-width: 1px;
		padding: 0;
		font-size: 13px;
		font-family: 'Poppins', sans-serif;
		height: auto;
		align-items: center;
		padding: 10px 0;
		line-height: 3;
	}
	ul.nav-con li {
		position: relative;
		width: 100%;
	}
	ul.nav-con li a {
		color: rgb(0, 0, 0);
	}
	.search-container {
		position: relative;
		gap: 2px;
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.heading-con h1 {
		font-size: 50px;
		line-height: 50px;
	}
	p.later-con {
		font-size: 35px;
		line-height: 10px;
	}
	form, input {
		width: 100%;
	}
	.button-con {
		flex-flow: row;
		gap: 7px;
	}
	a.btn-con {
		padding: 10px 24px;
		font-size: 19px;
	}
	a.button {
		padding: 10px 24px;
		font-size: 19px;
	}
	.image-con {
		flex-flow: column;
	}
	.footer-con {
		flex-flow: column;
		gap: 20px;
		text-align: center;
		width: 100%;
	}
	.footer-con, .copy-right-con {
		gap: 10px;
		padding: 0 15px;
		box-sizing: border-box;
	}
	.main-container {
		padding: 0;
	}
	.copyright-inner {
		flex-flow: column;
		text-align: center;
		padding: 15px 0;
	}
	.search-container {
		position: relative;
		gap: 2px;
		display: none;
	}
}