@charset "UTF-8";
/* ===== Reset & General ===== */
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;
}

.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;
}

.create-acc-con {
	width: 100%;
	align-items: center;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.create-ac-head p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 30px;
    text-transform: uppercase;
}
.inp-form input {
	width: 100%;
	padding: 12px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.3s, box-shadow 0.3s;
	background: #d7d5d6;
}
.footer-con {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 30px;
}
.inp-form input:focus {
	outline: none;
}

.name-con1, .name-con2, .phn-con {
	display: flex;
	gap: 12px;
}

input#cAddress {
    width: 100%;
}

.name-con1 input, .name-con2 input, .phn-con input {
	flex: 1;
}

.phn-con {
	padding: 7px 0px 6px 0px;
}
/* Email & Phone with icons */
.email-con, .phn-con {
	display: flex;
	align-items: center;
}

.email-con i, .phn-con i {
    color: #db2727;
    font-size: 15px;
    padding: 15px;
    background: #d7d5d6;
    border-radius: 8px 0px 0px 8px;
}

input[type="email"] {
	border-radius: 0px 8px 8px 0px;
	border: none;
}
/* ===== Button ===== */
.submit-btn-register button, .otp-verification button {
    width: 100%;
    background: #df0024;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 20px;
    height: 50px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 11px;
}



/* ===== Account Links ===== */
.ques-ac {
	margin-top: 15px;
	text-align: center;
	font-size: 14px;
	color: #555;
}

.link-log {
	text-align: center;
	margin-top: 8px;
}

.link-log a {
	color: #db2727;
	text-decoration: none;
	font-weight: bold;
}

.link-log a:hover {
	text-decoration: underline;
}

/* ===== OTP Modal ===== */
.otp-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2000;
}

.otp-container {
	background: #fff;
	padding: 30px 25px;
	border-radius: 12px;
	text-align: center;
	width: 360px;
	max-width: 90%;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
	position: fixed;
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
}

.otp-container h3 {
	margin-bottom: 8px;
	color: #333;
}

.otp-container p {
	margin: 5px 0;
	font-size: 14px;
	color: #666;
}

/* Close Button */
.close {
	position: absolute;
	top: 12px;
	right: 15px;
	font-size: 22px;
	font-weight: bold;
	color: #888;
	cursor: pointer;
}

.close:hover {
	color: #333;
}

/* OTP Input Boxes */
.otp-inputs {
	display: flex;
	justify-content: space-between;
	margin: 20px 0;
}

.otp-inputs input {
	width: 40px;
	height: 45px;
	text-align: center;
	font-size: 18px;
	border: 1px solid #ccc;
	border-radius: 8px;
	transition: border-color 0.3s;
}

.otp-inputs input:focus {
	border-color: #4a90e2;
	outline: none;
}

/* OTP Buttons */
.otp-verification {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

/* ===== Toast Notification ===== */
#toast-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 3000;
}

.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: 200px;
	text-align: center;
	font-size: 14px;
}

.toast.show {
	opacity: 1;
}

.toast.success {
	background-color: #28a745;
}

.toast.error {
	background-color: #dc3545;
}

.cAddress {
	align-items: center;
}

.web-con {
	padding: 0 15px;
}
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;
}

/*banner-outer*/
/*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.sub-menu li {
	width: 100%;
	border-bottom: 1px solid #ccc;
	padding: 5px 0 !important;
	display: inline-block;
}

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-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;
}

.important-link {
	width: 100%;
	border-right: 1px dashed #ccc;
}

.testimonials-con p, .testimonials-con span {
	width: 100%;
	color: #656363;
	font-size: 14px;
}

.important-link, .quick-link {
	width: 100%;
}

.footer-logo {
	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;
}
/* Hamburger Menu Icon */
.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;
	}
	.search-container {
		position: relative;
		gap: 2px;
		display: none;
	}
	.nav-button.prev {
		left: 10px;
	}
	.nav-button.next {
		right: 10px;
	}
	.testimonial-content {
		position: relative;
		height: 440px;
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	 ul.nav-con li {
        position: relative;
        width: 100%;
        border-bottom: 1px solid #eaeaea;
    }
}

@media ( max-width : 480px) {
	.search-container {
		position: relative;
		gap: 2px;
		display: none;
	}
	.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: 25px 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;
	}
	.search-container {
		position: relative;
		gap: 2px;
		display: none;
	}
	
	
}

@media screen and (max-width: 354px) {
	.btn-con {
		gap: 10px;
		flex-flow: row;
	}
	.search-container {
		position: relative;
		gap: 2px;
		display: none;
	}
	.fa-chevron-down:before {
		left: 45px;
	}
	#form-group {
		height: 45px;
	}

}

@media screen and (max-width: 1024px) {
	.footer-con, .copy-right-con {
		gap: 10px;
	}
}

@media screen and (max-width: 820px) {
	.icon {
		display: block !important;
	}
	 ul.nav-con li {
        position: relative;
        width: 100%;
        border-bottom: 1px solid #eaeaea;
    }
	#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;
	}
}