/*------------------------------------------
Project Name : Car Rental
Desgined By  : sharjeelanjum.com
Developed By : sharjeel;
Date        :  18/April/2026;

Table Of Index
------------------
1. Base css
2. Typography css
3. Header css
4. Banner css
5. Booking Form css
6. About Us css
7. Counter css
8. Services css
9. Support Team css
10. Testimonials css
11. Blog css
12. contact form css
13. Footer css
14. Media Quries css
------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-one: #ed5125;
    --secondary-color: #ed9625;
    --primary-text-color: #2d2e2f;
    --primary-five-light: #ffeddf;    
    --success-color: #0ac51a;
    --white: #ffffff;
    --black: #000000;
    --dark-bg: #282626;
    --light-bg:#fff1db;
    --soft-bg:#F6F6F6;
    --primary-size:16px;
    --heading-size:48px;
    --sub-size:24px;
    --heading-3:18px;
    --heading-4:36px;
    --heading-5:30px;
    --font-bold:700;
    --font-med:500;
    --font-semi:600;
    --font-reg:400;
    --font-heading: 'Montserrat', sans-serif;
    --font-open: "Open Sans", sans-serif;
  }




html, body {
	min-height: 100%;
}
body {
	background: #ffffff;
	font-family: var(--font-open);
}
/*---------------------------------------
   Typorgraphy              
-----------------------------------------*/

h1, h2, h3, h4, h5, h6{font-family: var(--font-heading);}
h1, h2, h4 {
	font-weight: 500;
}
h1 {
	font-size: 50px;
}
h2 {
	color: #272727;
	font-size: 36px;
	line-height: 52px;
	margin: 0px;
}
h3 {
	font-size: 16px;
	line-height: 32px;
}
h4 {
	color: #454545;
	font-size: 18px;
	line-height: 26px;
}
h5 {
	letter-spacing: 0.5px;
}
p {
	color: #555;
	font-size: 16px;
	line-height: 24px;
}
ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
img {
	max-width: 100%;
}
/*---------------------------------------
   Buttons               
-----------------------------------------*/

.btn-success:focus {
	background-color: #000;
	color: #ffffff;
}
.section-btn {
	background:var(--primary-one);
	border-radius: 0;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	padding: 12px 30px;
	margin-top: 22px;
	text-transform: uppercase;
	border: none;
}
.section-btn:focus, .section-btn:hover {
	background: #fff;
	color: #333;
}

.bg-grey{background: #fdf7f7;}

/*---------------------------------------
   General               
-----------------------------------------*/

html {
	-webkit-font-smoothing: antialiased;
}
a {
	transition: ease-in-out 0.3s;
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3s;
	-ms-transition: ease-in-out 0.3s;
	color:var(--primary-one);
	text-decoration: none !important;
}
a:hover, a:active, a:focus {
	color:var(--primary-one);
	outline: none;
}
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
*:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.parallax-section {
	background-attachment: fixed !important;
	background-size: cover !important;
}
.section-title {
	margin: 0;
	padding-bottom: 50px;
	text-align: center;
}
.section-title h3 {
	position: relative;
	font-size: 40px;
	max-width: 600px;
	margin: 0 auto;
	margin-bottom: 10px;
	font-weight: var(--font-bold);
	line-height: 48px;
}
.section-title h3 span {
	color:var(--primary-one);
	font-weight: 400;
}
.section-title .toptag{color: var(--primary-one); font-size: 18px; font-weight: var(--font-bold); text-transform: uppercase; margin-bottom: 10px;}
.section-title p {
	max-width: 900px;
	margin: auto;
}
.parallax-section {
	padding: 70px 0;
	position: relative;
	margin: 0 30px;
	border-radius: 30px;
}


.btn-primary{background-color: var(--primary-one); color: var(--white); border: none; padding:12px 26px 12px 58px; border-radius: 40px; font-weight: var(--font-bold); position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; line-height: 1.4; min-height: 44px; vertical-align: middle; -webkit-transition: all ease 0.35s; -moz-transition: all ease 0.35s; transition: all ease 0.35s;}


.btn-primary:before, .btn-dark:before, .connectbtn:before, .btn-sec:before{
    position: absolute;
    right: -15px;
    top: 0;
    width: 33px;
    height: 100%;
    background: var(--light-bg);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    -webkit-transform: skewX(-22deg);
    transform: skewX(-22deg);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    content: '';
}
.btn-primary:hover:before, .btn-dark:hover:before, .btn-sec:hover:before, .connectbtn:hover:before{
    right: 0;
    width: 100%;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}

.btn-primary i{position: absolute; left: 8px; top: 50%; width: 36px; height: 36px; border-radius: 50%; background: var(--dark-bg); color: var(--white); display: flex; align-items: center; justify-content: center; transform: translateY(-50%); z-index: 2; -webkit-transition: all ease 0.35s; -moz-transition: all ease 0.35s; transition: all ease 0.35s;}
.btn-primary:hover{background-color: #2d2e2f; color: var(--white); padding-left: 26px; padding-right: 58px;}
.btn-primary:hover i{left: calc(100% - 44px); background: var(--white); color: var(--dark-bg);}


.btn-sec{background-color: var(--secondary-color); color: var(--white); border: none; padding:12px 26px 12px 58px; border-radius: 40px; font-weight: var(--font-bold); position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; line-height: 1.4; min-height: 44px; vertical-align: middle; -webkit-transition: all ease 0.35s; -moz-transition: all ease 0.35s; transition: all ease 0.35s;}
.btn-sec i{position: absolute; left: 8px; top: 50%; width: 36px; height: 36px; border-radius: 50%; background: var(--dark-bg); color: var(--white); display: flex; align-items: center; justify-content: center; transform: translateY(-50%); z-index: 2; -webkit-transition: all ease 0.35s; -moz-transition: all ease 0.35s; transition: all ease 0.35s;}
.btn-sec:hover{background-color: #2d2e2f; color: var(--white); padding-left: 26px; padding-right: 58px;}
.btn-sec:hover i{left: calc(100% - 44px); background: var(--white); color: var(--dark-bg);}


.btn-dark{background-color:var(--dark-bg); border: none; color: var(--white); padding:12px 26px 12px 58px; border-radius:40px; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; font-weight: var(--font-bold); text-decoration: none; position: relative; overflow: hidden; -webkit-transition: all ease 0.35s; -moz-transition: all ease 0.35s; transition: all ease 0.35s;}
.btn-dark i{position: absolute; left: 8px; top: 50%; width: 36px; height: 36px; border-radius: 50%; background: var(--white); color: var(--dark-bg); display: flex; align-items: center; justify-content: center; transform: translateY(-50%); z-index: 2; -webkit-transition: all ease 0.35s; -moz-transition: all ease 0.35s; transition: all ease 0.35s;}
.btn-dark:hover{background-color: var(--primary-one); color: var(--white); padding-left: 26px; padding-right: 58px;}
.btn-dark:hover i{left: calc(100% - 44px); background: var(--dark-bg); color: var(--white);}

.btn-white{background-color:var(--white); border: 1px solid #f8b93a; color: var(--black); padding:11px 26px 11px 58px; border-radius:40px; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; font-weight: var(--font-bold); text-decoration: none; position: relative; overflow: hidden; -webkit-transition: all ease 0.35s; -moz-transition: all ease 0.35s; transition: all ease 0.35s;}
.btn-white:before{
    position: absolute;
    right: -15px;
    top: 0;
    width: 33px;
    height: 100%;
    background: var(--primary-one);
    opacity: 0.2;
    z-index: 0;
    -webkit-transform: skewX(-22deg);
    transform: skewX(-22deg);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    content: '';
}
.btn-white:hover:before{
    right: 0;
    width: 100%;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
    background: var(--light-bg);
}
.btn-white i{position: absolute; left: 8px; top: 50%; width: 34px; height: 34px; border-radius: 50%; background: var(--primary-one); color: var(--white); display: flex; align-items: center; justify-content: center; transform: translateY(-50%); z-index: 2; -webkit-transition: all ease 0.35s; -moz-transition: all ease 0.35s; transition: all ease 0.35s;}
.btn-white:hover{background-color: var(--dark-bg); color: var(--white); padding-left: 26px; padding-right: 58px;}
.btn-white:hover i{left: calc(100% - 42px); background: var(--white); color: var(--dark-bg);}



.btn-grey{background-color:#eee; border: 1px solid #ddd; color: var(--black); padding:11px 26px 11px 58px; border-radius:40px; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; font-weight: var(--font-bold); text-decoration: none; position: relative; overflow: hidden; -webkit-transition: all ease 0.35s; -moz-transition: all ease 0.35s; transition: all ease 0.35s;}
.btn-grey:before{
    position: absolute;
    right: -15px;
    top: 0;
    width: 33px;
    height: 100%;
    background: var(--black);
    opacity: 0.1;
    z-index: 0;
    -webkit-transform: skewX(-22deg);
    transform: skewX(-22deg);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    content: '';
}
.btn-grey:hover:before{
    right: 0;
    width: 100%;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
    background: var(--light-bg);
}
.btn-grey i{position: absolute; left: 8px; top: 50%; width: 34px; height: 34px; border-radius: 50%; background: var(--dark-bg); color: var(--white); display: flex; align-items: center; justify-content: center; transform: translateY(-50%); z-index: 2; -webkit-transition: all ease 0.35s; -moz-transition: all ease 0.35s; transition: all ease 0.35s;}
.btn-grey:hover{background-color: var(--dark-bg); color: var(--white); padding-left: 26px; padding-right: 58px;}
.btn-grey:hover i{left: calc(100% - 42px); background: var(--white); color: var(--dark-bg);}




/*---------------------------------------
     Navigation section              
-----------------------------------------*/
.header-wrap{padding:15px 30px; }
.header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.header-desktop-nav {
	flex: 1;
	justify-content: flex-end;
}
.header-desktop-auth {
	display: inline-flex;
	align-items: center;
}
.header-menu-toggle {
	width: 44px;
	height: 44px;
	border: 1px solid #e8ebf0;
	border-radius: 12px;
	background: #fff;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.header-menu-toggle__bar {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: var(--primary-text-color);
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.header-menu-toggle:hover,
.header-menu-toggle:focus {
	border-color: rgba(237, 81, 37, 0.35);
	box-shadow: 0 6px 16px rgba(237, 81, 37, 0.12);
	outline: none;
}
.header-mobile-menu {
	width: min(88vw, 360px);
	border-left: 1px solid #eef1f5;
	box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
}
.header-mobile-menu .offcanvas-header {
	padding: 18px 20px;
	border-bottom: 1px solid #eef1f5;
}
.header-mobile-menu__brand img {
	max-height: 42px;
	width: auto;
}
.header-mobile-menu .offcanvas-body {
	padding: 18px 20px 28px;
}
.header-mobile-user {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	margin-bottom: 18px;
	border-radius: 14px;
	background: #f8fafc;
	border: 1px solid #eef1f5;
}
.header-mobile-user img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}
.header-mobile-user strong {
	display: block;
	font-size: 15px;
	color: var(--primary-text-color);
}
.header-mobile-user small {
	display: block;
	font-size: 12px;
	color: #64748b;
}
.header-mobile-nav {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}
.header-mobile-nav .nav-item + .nav-item {
	margin-top: 4px;
}
.header-mobile-nav__link {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 13px 14px;
	border: none;
	border-radius: 12px;
	background: transparent;
	color: var(--primary-text-color);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	text-align: left;
	transition: background 0.2s ease, color 0.2s ease;
}
.header-mobile-nav__link:hover,
.header-mobile-nav__link.active {
	background: var(--primary-five-light);
	color: var(--primary-one);
}
.header-mobile-nav__link i {
	width: 18px;
	color: var(--primary-one);
}
.header-mobile-nav__badge {
	margin-left: auto;
	min-width: 22px;
	height: 22px;
	padding: 0 7px;
	border-radius: 999px;
	background: var(--primary-one);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.header-mobile-nav__link--logout {
	color: #dc3545;
}
.header-mobile-nav__link--logout i {
	color: #dc3545;
}
.header-mobile-auth {
	margin-top: 8px;
}
.logo{margin-top: 5px;}
.logo img {
	max-height: 52px;
	width: auto;
}
@media (max-width: 991px) {
	.header-wrap {
		padding: 12px 16px;
	}
	.logo img {
		max-height: 44px;
	}
}
.header-wrap .navbar{padding: 0; margin-top:0;}
.navbar-nav li{padding: 0px 20px 0px 20px;} 
.navbar-expand-lg .navbar-nav .nav-link{padding:10px 0; font-size: 16px; font-weight: var(--font-bold); font-family: var(--font-heading); position: relative;}
.navbar-light .navbar-nav .nav-link:after{width: 0; height: 3px; background-color:var(--primary-one); content:''; position: absolute; bottom: 0; left: 0; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease;}
.navbar-light .navbar-nav > .nav-link.active:after, .navbar-nav li:hover > .nav-link:after{width:100%;}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link{color: var(--primary-one);}
.navbar-expand-lg .navbar-nav .nav-link{color:var(--primary-text-color);}
.navbar-expand-lg .navbar-nav > .nav-link:hover{color:var(--primary-one);} 
.navbar-light .navbar-toggler{display: none;}
.close-toggler{display: none;}

.navbar-nav li.dropdown img{width: 40px; height: 40px; border-radius: 50%;}

/* Header actions: notifications, user, language */
.header-wrap .header-nav-actions > .nav-item.dropdown {
	padding-left: 8px;
	padding-right: 0;
}
.header-wrap .header-icon-btn,
.header-wrap .user-toggle,
.header-wrap .lang-toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	border: 1px solid #e8ebf0;
	background: var(--white);
	border-radius: 999px;
	padding: 6px 12px;
	color: var(--primary-text-color);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	position: relative;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.header-wrap .header-icon-btn {
	width: 44px;
	height: 44px;
	justify-content: center;
	padding: 0;
	border-radius: 50%;
	font-size: 16px;
	color: var(--dark-bg);
}
.header-wrap .header-icon-btn:hover,
.header-wrap .user-toggle:hover,
.header-wrap .lang-toggle:hover,
.header-wrap .header-icon-btn.show,
.header-wrap .user-toggle.show,
.header-wrap .lang-toggle.show {
	border-color: rgba(237, 81, 37, 0.35);
	color: var(--primary-one);
	box-shadow: 0 8px 22px rgba(237, 81, 37, 0.12);
}
.header-wrap .notify-count {
	position: absolute;
	top: -2px;
	right: -2px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--primary-one);
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--white);
}
.header-wrap .user-toggle img {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
}
.header-wrap .user-name {
	max-width: 110px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.header-wrap .user-toggle i,
.header-wrap .lang-toggle i {
	font-size: 11px;
	color: #8b93a1;
}
.header-wrap .lang-flag {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(237, 150, 37, 0.14);
	color: var(--secondary-color);
	font-size: 11px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.header-wrap .lang-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--dark-bg);
}
.header-wrap .navbar .dropdown-menu.header-dropdown {
	padding: 0;
	min-width: 320px;
	border: 1px solid #eceff3;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
	margin-top: 12px !important;
	top: 100% !important;
	left: auto !important;
	right: 0;
}
.header-wrap .dropdown-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border-bottom: 1px solid #eef1f5;
	background: #fafbfc;
}
.header-wrap .dropdown-head h6 {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--dark-bg);
}
.header-wrap .badge-new {
	font-size: 11px;
	font-weight: 700;
	color: var(--primary-one);
	background: rgba(237, 81, 37, 0.12);
	padding: 5px 10px;
	border-radius: 999px;
}
.header-wrap .dropdown-rich-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 18px;
	text-decoration: none;
	border-bottom: 1px solid #f3f5f8;
	-webkit-transition: background 0.25s ease;
	transition: background 0.25s ease;
}
.header-wrap .dropdown-rich-item:hover {
	background: #fff8f3;
}
.header-wrap .dropdown-rich-item.unread {
	background: rgba(237, 150, 37, 0.06);
}
.header-wrap .dropdown-item-icon {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 15px;
}
.header-wrap .dropdown-item-icon.icon-success {
	background: rgba(10, 197, 26, 0.12);
	color: var(--success-color);
}
.header-wrap .dropdown-item-icon.icon-primary {
	background: rgba(237, 81, 37, 0.12);
	color: var(--primary-one);
}
.header-wrap .dropdown-item-icon.icon-warning {
	background: rgba(237, 150, 37, 0.14);
	color: var(--secondary-color);
}
.header-wrap .dropdown-item-text strong {
	display: block;
	font-size: 14px;
	color: var(--dark-bg);
	margin-bottom: 3px;
}
.header-wrap .dropdown-item-text small {
	display: block;
	font-size: 13px;
	color: #6f7782;
	line-height: 1.4;
}
.header-wrap .dropdown-item-text em {
	display: block;
	font-style: normal;
	font-size: 11px;
	color: #9aa3af;
	margin-top: 6px;
}
.header-wrap .dropdown-foot {
	padding: 12px 18px;
	text-align: center;
	background: #fafbfc;
}
.header-wrap .dropdown-foot a {
	font-size: 13px;
	font-weight: 700;
	color: var(--primary-one);
	text-decoration: none;
}
.header-wrap .user-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	background: linear-gradient(135deg, #1c1c1c 0%, #2d2e2f 100%);
}
.header-wrap .user-card img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(237, 150, 37, 0.45);
}
.header-wrap .user-card strong {
	display: block;
	color: var(--white);
	font-size: 15px;
}
.header-wrap .user-card small {
	display: block;
	color: var(--secondary-color);
	font-size: 12px;
	font-weight: 600;
	margin-top: 2px;
}
.header-wrap .dropdown-menu-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 500;
	color: #4b5563;
	text-decoration: none;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
.header-wrap .dropdown-menu-link i {
	width: 18px;
	color: #8b93a1;
}
.header-wrap .dropdown-menu-link:hover,
.header-wrap .dropdown-menu-link.active {
	background: rgba(237, 81, 37, 0.08);
	color: var(--primary-one);
}
.header-wrap .dropdown-menu-link:hover i,
.header-wrap .dropdown-menu-link.active i {
	color: var(--primary-one);
}
.header-wrap .menu-divider {
	height: 1px;
	background: #eef1f5;
	margin: 4px 0;
}
.header-wrap .logout-link {
	color: #d94848;
}
.header-wrap .logout-link:hover {
	background: rgba(217, 72, 72, 0.08);
	color: #d94848;
}
.header-wrap .lang-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 500;
	color: #4b5563;
	text-decoration: none;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
.header-wrap .lang-code {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #f3f5f8;
	color: var(--dark-bg);
	font-size: 11px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.header-wrap .lang-item:hover,
.header-wrap .lang-item.active {
	background: rgba(237, 81, 37, 0.08);
	color: var(--primary-one);
}
.header-wrap .lang-item.active .lang-code,
.header-wrap .lang-item:hover .lang-code {
	background: rgba(237, 150, 37, 0.18);
	color: var(--secondary-color);
}
.header-wrap .notify-dropdown .dropdown-toggle::after,
.header-wrap .user-dropdown .dropdown-toggle::after,
.header-wrap .lang-dropdown .dropdown-toggle::after {
	display: none;
}
.header-wrap .navbar .dropdown-menu.header-dropdown.notify-menu {
	min-width: 360px;
}
.header-wrap .navbar .dropdown-menu.header-dropdown.lang-menu {
	min-width: 240px;
}
.header-wrap .navbar .dropdown-menu.header-dropdown.pages-menu {
	min-width: 260px;
	max-height: 70vh;
	overflow-y: auto;
	padding: 8px 0;
}
.header-wrap .pages-dropdown .nav-link.dropdown-toggle::after {
	margin-left: 6px;
	vertical-align: 0.15em;
}
.header-wrap .pages-menu .dropdown-head {
	padding: 10px 18px 4px;
}
.header-wrap .pages-menu .dropdown-head h6 {
	font-size: 10px;
	letter-spacing: 0.1em;
	color: #9aa3ad;
	margin: 0;
}
.header-wrap .pages-menu .dropdown-menu-link {
	padding: 9px 18px;
	font-size: 13px;
}
.header-wrap .pages-menu .menu-divider {
	margin: 6px 0;
}

.header-wrap .navbar .dropdown-menu:not(.header-dropdown) {
	padding: 10px 5px;
	min-width: 300px;
	top: 100% !important;
	left: auto !important;
	right: 0;
	box-shadow: 0 4px 13px -5px rgba(0, 0, 0, 0.5);
	border-color: #ddd;
  }


.sticky-wrapper {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000
}
.navbar {
	border-radius: 0;
}
.custom-navbar {
	border: none;
	margin-bottom: 0;
	padding: 6px 0;
	width: 100%;
}
.is-sticky .custom-navbar {
	background: #fff;
	-moz-box-shadow: 0 10px 33px rgba(0,0,0,.1);
	-webkit-box-shadow: 0 10px 33px rgba(0,0,0,.1);
	box-shadow: 0 10px 33px rgba(0,0,0,.1);
}
.custom-navbar .navbar-brand {
	color: #fff;
	font-weight: bold;
	font-size: 32px;
	line-height: 35px;
}
.custom-navbar .navbar-brand span {
	color:var(--primary-one);
}
.custom-navbar .nav li a {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	line-height: 40px;
	letter-spacing: 0.3px;
	padding-right: 20px;
	padding-left: 20px;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}
.custom-navbar .nav li a:hover {
	background: transparent;
	color: #ffffff;
}
.custom-navbar .nav li .calltxt {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	display: block;
	margin-top: 15px;
	border: 1px dashed #fff;
	padding: 7px 20px;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}
.is-sticky .custom-navbar .nav li a {
	color: #999;
}
.is-sticky .custom-navbar .nav li a:hover {
	color: #333;
}
.is-sticky .custom-navbar .navbar-brand {
	color:var(--primary-one);
	line-height: 20px;
}
.is-sticky .custom-navbar .navbar-brand span {
	color: #333;
}
.is-sticky .custom-navbar .nav li .calltxt {
	background:var(--primary-one);
	border-color:var(--primary-one);
	margin-top: 10px;
	color: #fff;
}
.custom-navbar .navbar-nav > li > a:hover, .custom-navbar .navbar-nav > li > a:focus {
	background-color: transparent;
}
.custom-navbar .nav li.active > a {
	background-color: transparent;
	color:var(--primary-one);
}
.custom-navbar .navbar-toggle {
	border: none;
	padding-top: 10px;
}
.custom-navbar .navbar-toggle {
	background-color: transparent;
}
.custom-navbar .navbar-toggle .icon-bar {
	background:var(--primary-one);
	border-color: transparent;
}
.navbar-collapse.in {
	overflow: visible;
	max-height: none;
	background:var(--primary-one);
	padding: 0 30px;
}
.navbar-collapse.in .nav li.active a {
	color: #000;
}
.is-sticky .custom-navbar .nav li a {
	line-height: 24px;
}
 @media(min-width:768px) {
.custom-navbar {
	border-bottom: 0;
}
.custom-navbar.top-nav-collapse {
	background: rgba(0,0,0,0.7);
	padding: 6px 0;
}
}
/*---------------------------------------
    Home section              
-----------------------------------------*/

#home {
	background: url(../images/home-bg.jpg) no-repeat bottom;
	background-size: cover;
	color: #ffffff;
	position: relative;
	min-height:700px;
	margin: 0 30px;
	border-radius: 30px;
	overflow: hidden;
}

#home:before {
	content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.slide-text {
	margin-top: 70px;
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	z-index: 3;
}
.slide-text h1 {
	margin-top: 0;
	font-weight: var(--font-bold);
}
.slide-text h3 {
	font-size: 24px;
	color: var(--secondary-color);
}
.slide-text p {
	color: #fff;
	line-height: 34px;
	max-width: 770px;
	margin: 0 auto;
	font-size: 24px;
}
.slide-text h3 a span.wrap {
	background: #fff;
	padding: 7px 20px;
}
.slideraction{display: flex; gap: 20px; justify-content: center; margin-top: 30px;}
#js-rotating {
	border: 1px solid #fff;
	padding: 10px 20px;
	display: inline-block;
}
/*Banner Form*/

.nav-tabs{margin-bottom: 0; border-bottom: none;}
.nav-tabs .nav-link{background: var(--black); color: var(--white); border: none; margin-right: 5px; margin-bottom: 0; padding: 10px 25px;}
.nav-tabs .nav-link.active{color: var(--primary-one);}




.searchintbox label{color: #333; text-align: left; display: block; font-size: 16px; font-weight: 700; margin-bottom: 5px;}
.tripetype{margin-bottom: 15px;}
.tripetype .btn-outline-primary{display: inline-block; border-radius: 50px; font-size: 14px; border-color: var(--primary-one);}
.tripetype .btn-outline-primary:hover{border-color: var(--primary-one); color: var(--primary-one);}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--bs-btn-active-color);
    background-color: var(--primary-one);
    border-color: var(--primary-one);
}




.form-control {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: 2px solid rgba(4, 0, 23, 0.1);
    border-radius: 6px;
    padding: 0 15px;
    font-size: 16px;
    color: rgba(4, 0, 23, 0.6);
    appearance: revert;
}

.bformBox {
	background:var(--primary-one);
	padding: 40px;
	position: relative;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}
.bformBox.nomr {
	margin-top: 0;
}
.bformBox h3 {
	color: #fff;
	margin: 0 0 30px 0;
	text-align: center;
	font-size: 36px;
	font-weight: 700;
}
.bformBox .formrow {
	margin-bottom: 20px;
}
.bformBox .formrow .form-control {
	height: auto;
	border-radius: 0;
	padding: 10px 15px;
	font-size: 22px;
	border-color: #ddd;
	box-shadow: none;
	color: #999;
	border: none;
	background: #fff;
}
.bformBox .formrow textarea.form-control {
	height: 100px;
}
.bformBox .formrow .bootstrap-select {
	padding: 0;
	background: none;
}
.bformBox .formrow .dropdown-toggle {
	padding: 10px 15px;
	border-radius: 0;
	font-size: 22px;
	color: #999;
	border: none;
	z-index: 1;
}
.bformBox .formrow .dropdown-toggle:hover, .bformBox .formrow .dropdown-toggle:active, .bformBox .formrow .dropdown-toggle:focus {
	background: #fff;
}
.bformBox .input-group-addon {
	background: #eee;
	color: #444;
	font-size: 16px;
	border-color: #eee;
	padding: 6px 20px;
}
.formrow .dropdown-menu .form-control {
	border: 1px solid #ddd;
	font-size: 16px;
	margin-bottom: 10px;
}
.formbtn {
	text-align: center;
	margin-top: 10px;
}
.formbtn .btn {
	background: #333;
	font-size: 18px;
	color: #fff;
	padding: 12px 30px;
	text-transform: uppercase;
	border-radius: 0;
	font-weight: 700;
}
.formbtn .btn:hover {
	background: rgba(0,0,0,0.5);
}
/*---------------------------------------
   Cars List section              
-----------------------------------------*/
.destinationList ul li h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-one);
	margin: 0;
	padding: 15px 0 0px 0;
}
.destinationList ul li .subtitle {
	color: #888;
	text-transform: uppercase;
	font-size: 14px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 20px;
}
.destinationList ul li .subtitle:after {
	position: absolute;
	width: 40px;
	height: 5px;
	background: var(--primary-one);
	content: '';
	left: 0;
	bottom: 0;
}

.destinationList ul li{margin-bottom: 30px;}
.locwrap {
	font-size: 14px;
}
.destinationList ul li .imgbox {
	overflow: hidden;
	border-radius: 10px;
}
.destinationList ul li .imgbox img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	width: 100%;
}
.destinationList ul li:hover .imgbox img {
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.comprating i{color: #ffae00;}
.comprating{font-size: 14px; margin-bottom:7px;}
.location {
	padding: 0 0 10px 0;
	color: #999;
}
.location i{color:var(--primary-one)}
.locwrap .meta {
	padding:0 0 10px 0;
}
.locwrap .meta span {
	display: inline-block;
	margin-bottom: 10px;
	margin-right: 4px;
	padding: 10px;
	border: 1px solid #eee;
	color: #777;
	border-radius: 5px;
}
.locwrap .meta span i {
	color: #888;
}
.locwrap .prices {
	padding:0 0 15px 0;
	font-size: 30px;
	line-height: 30px;
	font-weight: 700;
	color: var(--secondary-color);
}
.locwrap .prices span{font-size: 16px; font-weight: 400; color: #555;}
.locwrap .buttons {
	padding:0;
}
.locwrap .buttons a {
	display: inline-block;
	background: #555;
	color: #fff;
	padding: 10px 20px;
	border-radius: 40px;
	font-size: 16px;
}
.locwrap .buttons a:hover {
	background:var(--primary-one);
}

.owl-nav{text-align: center; margin-top: 20px;}
.owl-nav button.owl-prev, .owl-nav button.owl-next{width:36px; height:36px; border: 1px solid #eee !important; border-radius: 50%; font-size:24px !important; margin: 0 5px; background: #fff !important;}
.owl-nav button span{line-height: 30px; display: block; color: #000;}
.owl-nav button:hover{border-color: var(--primary-one) !important;}

/* Flights */
.flightbox{background: #fff; border-radius: 10px; margin-bottom: 30px; transition: all 0.5s ease; overflow: hidden;}
.flightimg{position: relative;}
.flightint{padding: 20px;}
.flightbox:hover{box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;}
.flightcom{position: absolute; bottom: 15px; left: 15px;}
.flightcom img{max-width: 50px; border: 1px solid #eee; border-radius: 50%; background: #fff;}
.flightcom a{font-weight: var(--font-bold); color: var(--primary-one);}
.flightbox h3{line-height: 24px; margin-bottom: 10px;}
.flightbox h3 a{font-size: 20px; color: #000;}
.flightbox h3 a:hover{color: var(--secondary-color);}
.flightbox p{margin-bottom:5px; color: #666;}
.flightbox p i, .cabine i{color: #999;}
.cabine{color:var(--secondary-color); margin-bottom: 5px;}
.flightbox .price{font-size: 16px; margin-bottom: 10px;}
.flightbox .price strong{font-size: 20px; color: var(--primary-one);}
.flightbox .btn-primary{padding: 10px 20px; font-size: 14px;}


/* Destinations */
.destibox{text-align: center; margin-bottom: 30px;}
.destimg{width: 180px; height: 180px; border-radius: 20px; overflow: hidden; margin: 0 auto;}
.destimg img{transition: .6s;     object-fit: cover;}
.destibox:hover .destimg img {
    transform: scale(1.15);
}
.destibox h4{font-size: 18px; font-weight: var(--font-bold); margin-top: 15px; margin-bottom: 0;}
.destibox p{margin-bottom: 0; color: var(--primary-one);}


/* Widgets */
.hotelwidget{background: url(../images/book-hotels.jpg) no-repeat; background-size: cover; padding: 60px; border-radius: 15px; height:500px;}
.hotelwidget h2, .fligtwidget h2{font-weight: var(--font-bold); font-size: 60px; color: var(--white); margin-bottom: 10px;}
.hotelwidget h3, .fligtwidget h3{font-size:36px; color: var(--white); margin-bottom: 30px; line-height: 40px;}



.fligtwidget{background: url(../images/book-flight.jpg) no-repeat; background-size: cover; padding: 60px; border-radius: 15px; height:500px;}


/*---------------------------------------
   Counter section              
-----------------------------------------*/

#counter {
	padding:30px 0 0 0;
	    border-top: 1px solid #f1dada;
		margin-top: 30px;
}
.animatebg {
	background: #0562da;
	-webkit-animation: bannerbg 5s linear 2s infinite alternate; /* Safari 4.0 - 8.0 */
	animation: bannerbg 5s linear 2s infinite alternate;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes bannerbg {
 0% {
background-color:#0562da;
}
 25% {
background-color:#fec107;
}
 50% {
background-color:#c90157;
}
 75% {
background-color:#00bef9;
}
 100% {
background-color:#00bef9;
}
}

/* Standard syntax */
@keyframes bannerbg {
 0% {
background-color:#0562da;
}
 25% {
background-color:#fec107;
}
 50% {
background-color:#c90157;
}
 75% {
background-color:#00bef9;
}
 100% {
background-color:#00bef9;
}
}
.counterbox{text-align: center;}
#counter .counter-number {
	display: block;
	color: #000000;
	font-size: 60px;
	line-height: 60px;
	font-weight: var(--font-reg);
}
#counter span {
	color:var(--primary-one);
	font-weight: 400;
	text-transform: uppercase;
}
.counter-icon {
	margin-bottom: 5px;
	position: relative;
}
.counter-icon:before{    width: 70px;
    height: 70px;
    background: #ffe7e7;
    border-radius: 50%;
    content: '';
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);}

.counter-icon img{max-width: 90px; position: relative; z-index: 1;}
/*********************************************
		Revolution slider options
**********************************************/
.tp-banner-container {
	position: relative;
z-index:;
	padding: 0;
	width: 100%;
}
.tp-banner {
	position: relative;
	width: 100%;
}
.tp-banner ul {
	padding: 0;
	margin: 0;
}
.tp-caption {
	line-height: normal !important
}
.tp-caption a {
	color: inherit !important;
}
.tp-bullets.simplebullets.round .bullet {
	border: 3px #fff solid;
	border-radius: 50%;
	background-image: none !important;
}
.tparrows {
	width: auto !important;
	height: auto !important;
	background-image: none !important;
}
.tp-arr-allwrapper {
	margin: 0 10px;
	width: 50px;
	height: 60px;
}
.tp-arr-allwrapper:hover .tp-arr-iwrapper {
	color: #fff;
}
.tp-arr-iwrapper {
	color: #fff;
	text-align: center;
	font-size: 30px;
	font-family: 'FontAwesome';
	line-height: 60px;
}

.tp-leftarrow .tp-arr-iwrapper:before {
	content: "\f104";
}
.tp-rightarrow .tp-arr-iwrapper:before {
	content: "\f105";
}

.slide-h1 {
	margin: 5px 0 !important;
	padding: 0 0 10px !important;
	padding-bottom: 5px !important;
	color: #444;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 57px;
}
.slide-h2 {
	margin: 5px 0 !important;
	padding: 0 0 10px !important;
	padding-bottom: 5px !important;
	color: #555;
	font-weight: bold;
	font-size: 55px;
	line-height: 100%;
}
.big-font {
	text-transform: uppercase;
	font-weight: 800;
	font-size: 60px;
}
.large-desc {
	font-size: 16px;
}
.slide-h3 {
	color: #fff;
	font-size: 31px;
	line-height: 100%;
}
.slide-h3 span {
	text-transform: uppercase;
	font-weight: bold;
}
.slide-head {
	text-transform: uppercase;
	font-weight: 900;
	font-size: 30px;
}
.slide-desc {
	font-size: 22px;
	line-height: 150%;
}
.main-title {
	text-transform: uppercase;
	font-weight: 800;
	font-size: 70px;
}
.icon-cont {
	padding: 15px 40px;
	border-radius: 10px;
	text-align: center;
}
.icon-cont:after {
	position: absolute;
	bottom: -10px;
	left: 40%;
	z-index: 5;
	display: inline-block;
	width: 0;
	height: 0;
	border-width: 10px 10px 0 10px;
	border-style: solid;
	content: "";
}
.icon-cont i {
	margin-bottom: 10px;
	color: #fff;
	font-size: 50px;
}
.icon-cont span {
	display: block;
	padding: 0 0 5px;
	color: #fff;
	text-align: center;
	font-size: 18px;
}
a.wit-btn {
	background: #fff;
	color: #333 !important;
	text-transform: uppercase;
}
.wit-line {
	width: 5%;
	height: 1px;
	background: #fff;
}
.vert-line {
	min-height: 270px;
	width: 1px;
	background: #fff;
}
.subTxt {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 17px;
	color: #333;
}
.large-title {
	color: #222;
	font-size: 60px;
	font-weight: 800;
	text-transform: uppercase !important;
}
.large-light-title {
	color: #787878 !important;
	font-size: 70px;
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 2px
}
.large-text {
	font-size: 20px;
	color: #000;
	font-weight: lighter;
}
.larger-text {
	font-size: 24px;
	font-weight: lighter;
	text-transform: uppercase;
}
.witTxt {
	color: #fff !important;
}
.light-font {
	font-weight: lighter !important;
	font-size: 50px;
}
.black-bg {
	background: rgba(0,0,0,.63);
	color: #a8a8a8;
	text-transform: none;
}
.lft-list {
	padding: 10px;
	font-size: 18px;
	color: #fff;
}
.wit-border {
	border: 1px #fff solid;
	padding: 15px 60px;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
}
.rounded-bord {
	margin-right: 15px;
	border: 1px #fff solid;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 13px;
	border-radius: 50%;
}
#vertical-ticker {
	height: 120px;
	overflow: hidden;
}
#vertical-ticker li {
	padding: 15px 20px;
	display: block;
	text-align: center;
}
.to-bottom i.fa {
	font-size: 30px;
	border: 2px #a8a8a8 solid;
	padding: 20px 22px;
	border-radius: 50%;
	-webkit-animation: bounce 2s infinite linear;
	animation: bounce 2s infinite linear;
}
.slidertext1 {
	color: #fff;
	font-size: 50px;
	font-weight: 700;
	padding: 15px 0;
	text-transform: none !important;
	font-family: 'Roboto', sans-serif;
}
.slidertext1 span {
	color:var(--primary-one);
}
.slidertext2 {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	padding: 15px 0;
	text-transform: none;
	font-family: 'Roboto', sans-serif;
}
.sliderpara {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	padding: 15px 0;
	text-transform: none !important;
}
.sliderbtn a {
	color: #fff !important;
}
.sliderbtn a:hover {
	color: #000 !important;
}
.tp-bannertimer {
	display: none;
}
 @-webkit-keyframes bounce {
 0% {
 transform:translateY(0%);
}
 50% {
 transform:translateY(-30%);
}
 100% {
 transform:translateY(0);
}
}

/* Mozilla Firefox 15 below */
@-moz-keyframes bounce {
 0% {
 transform:translateY(0%);
}
 50% {
 transform:translateY(-30%);
}
 100% {
 transform:translateY(0);
}
}

/* Opera 12.0 */
@-o-keyframes bounce {
 0% {
 transform:translateY(0%);
}
 50% {
 transform:translateY(-30%);
}
 100% {
 transform:translateY(0);
}
}

/* W3, Opera 12+, Firefox 16+ */
@keyframes bounce {
 0% {
 transform:translateY(0%);
}
 50% {
 transform:translateY(-30%);
}
 100% {
 transform:translateY(0);
}
}
/*---------------------------------------
    About section              
-----------------------------------------*/

#about {
	padding: 70px 0;
}
.about-desc .section-title{text-align: left; padding-bottom: 0px;}
.about-desc .section-title h3{margin-left: 0;}
.about-desc h2 {
	font-size: 36px;
	text-align: center;
	color: #272727;
	font-weight: 500;
	margin-bottom: 30px;
}
#about .about-desc h4 {
	margin-top: 0px;
	padding-bottom: 8px;
}



.aboutstbx{display: flex; gap: 20px; margin-top: 10px; background: #fff; padding: 20px;    border-radius: 20px;}
.aboutstbx .icoabt{flex: 0 0 64px; width: 64px;}
.aboutstbx h4{font-size: 20px; font-weight: var(--font-bold); margin-bottom: 5px; padding-bottom: 0;}
.aboutstbx p{margin-bottom: 0;}

.postimg2 {
	margin-top: 40px;
}
.circleList {
	list-style: none;
}
.circleList li {
	text-align: center;
	margin-bottom: 0;
}
.circleList li .cricle {
	color: #fff;
	font-size: 36px;
	text-align: center;
	margin: 0 auto;
	background:var(--secondary-color);
	padding: 15px 25px;
	display: inline-block;
	border-radius: 5px;
}
.circleList li .title {
	font-size: 18px;
	margin-top: 15px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #000;
}
.circleList li p {
	font-size: 16px;
}
#about .team-wrapper {
	position: relative;
	margin: 0;
	padding: 0;
}
#about .team-wrapper h2 {
	color: #353535;
	font-size: 26px;
	line-height: 32px;
}
#about .team-wrapper strong {
	color:var(--primary-one);
	font-weight: 600;
}
#about .team-wrapper img {
	border-radius: 2px;
	width: 100%;
}
#about .team-wrapper .team-desc {
	background: rgba(250,250,250,0.5);
	position: absolute;
	cursor: crosshair;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	padding: 20em 4em 0 0;
	transition: all 0.4s ease-in-out;
	text-align: right;
}
#about .team-wrapper:hover .team-desc {
	opacity: 1;
	transform: scale(1.1);
}
ul.orderlist {
	list-style: none;
	margin: 20px 0 0 0;
	padding: 0
}
ul.orderlist li {
	color: #333;
	font-size: 16px;
	position: relative;
	padding: 10px 0;
	padding-left: 45px;
	line-height: 30px;
	font-weight: 700;
}
ul.orderlist li:before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	font-weight: 900;
	left: 0;
	vertical-align: middle;
	color: #fff;
	background: var(--secondary-color);
	padding: 4px 8px;
	border-radius: 5px;
	line-height: 24px;
}

ul.orderlist li:nth-child(2):before{background: var(--primary-one);}
ul.orderlist li:nth-child(3):before{background: var(--black);}
ul.orderlist li:nth-child(4):before{background: var(--success-color);}




/*********************************************
			Services Start
**********************************************/
.servicesbox {
	padding: 100px 0;
}
.servicesbox h3 {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 30px 0;
	position: relative;
}
.servicesbox p {
	color: #fff;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	line-height: 26px;
	font-weight: 300;
	margin-top: 10px;
}
.servicesbox .readmore {
	display: inline-block;
	padding: 15px 30px;
	color: #fff;
	margin-top: 30px;
	text-transform: uppercase;
	font-weight: 600;
	background:var(--secondary-color);
	border-radius:10px;
}
.servicesbox .readmore i {
	font-weight: 400;
	margin-left: 10px;
}
.servicesbox .readmore:hover {
	background: #fff;
	color: #333;
	text-decoration: none;
}


.service-listing-card {
	display: block;
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-listing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.2);
}
.service-listing-card__image-wrap {
	display: block;
}
.service-listing-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease-out;
    will-change: transform;
    transform: translateZ(0);
    transform-origin: center center;
}
.service-listing-card__image:hover {
	transform: scale(1.1);
}
.service-listing-card__label {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 15px;
	background: rgba(255, 255, 255, 1); /* semi-transparent */
	border-radius: 10px;
	padding: 20px 14px;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.2;
	transition: 0.5s ease-out, background 0.5s ease-out;
	backdrop-filter: blur(0px); /* initial state */
}

.service-listing-card:hover .service-listing-card__label {
	backdrop-filter: blur(8px);
	background: rgba(255, 255, 255, 0.5);
	bottom: 30px;
	transform: translateY(-50%);
	
}



.service-detail-card {
	margin-bottom: 30px;
}
.service-detail-hero .service-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 14px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.78);
}
.service-detail-hero .service-breadcrumb a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}
.service-detail-hero .service-breadcrumb a:hover {
	color: var(--primary-five-light);
}
.service-detail-hero__excerpt {
	max-width: 720px;
	margin: 12px auto 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 17px;
	line-height: 1.55;
}
.service-detail-page {
	padding-top: 50px;
}
.service-detail-card__image {
	width: 100%;
	border-radius: 24px;
	margin-bottom: 28px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.service-detail-card__lead {
	font-size: 20px;
	line-height: 1.65;
	color: #475569;
	font-weight: 500;
	margin-bottom: 22px;
}
.service-detail-card__title {
	margin-bottom: 14px;
	font-size: 32px;
	font-weight: 700;
}
.service-detail-card__content {
	color: #475569;
	font-size: 18px;
	line-height: 1.75;
}
.service-detail-card__content p{margin-bottom: 20px;}

.service-detail-card__content ul {
	padding-left: 0;
	margin: 12px 0 20px 0;
	list-style: none; 
}

.service-detail-card__content ul li {
	font-size: 18px;
	position: relative;
	padding-left: 28px; 
	margin-bottom: 15px;
}

.service-detail-card__content ul li::before {
	content: "\f00c"; /* check icon */
	font-family: "Font Awesome 5 Free";
	font-weight: 900; 
	position: absolute;
	left: 0;
	top: 2px;
	color: #22c55e;
}

.service-detail-card__content ol {
	padding-left: 0;
	margin: 12px 0 20px 0;
	list-style: none; 
}

.service-detail-card__content ol li {
	font-size: 18px;
	position: relative;
	padding-left: 28px; 
	margin-bottom: 15px;
}

.service-detail-card__content ol li::before {
	content: "\f0a9"; /* check icon */
	font-family: "Font Awesome 5 Free";
	font-weight: 900; 
	position: absolute;
	left: 0;
	top: 2px;
	color: var(--primary-one);
}
.service-detail-card__content h4{font-weight: 700;}
.service-detail-card__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #e8ecf1;
}

.service-sidebar {
	display: flex;
	flex-direction: column;
	gap: 22px;
	position: sticky;
	top: 100px;
}
.service-sidebar-card {
	background: #fff;
	border: 1px solid #eef1f5;
	border-radius: 20px;
	padding: 22px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.service-cta-box {
	background:
		linear-gradient(160deg, rgba(237, 81, 37, 0.92) 0%, rgba(45, 46, 47, 0.88) 100%),
		url(../images/cars/03.jpg) center/cover no-repeat;
	border-radius: 24px;
	padding: 32px 26px 28px;
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 16px 36px rgba(237, 81, 37, 0.28);
}
.service-cta-box--sticky {
	z-index: 3;
}
.service-cta-box::before {
	content: none;
}
.service-cta-box > * {
	position: relative;
	z-index: 1;
}
.service-cta-box__icon {
	width: 72px;
	height: 72px;
	border: 3px solid rgba(255, 255, 255, 0.75);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	background: rgba(255, 255, 255, 0.12);
}
.service-cta-box__icon i {
	font-size: 28px;
	color: #fff;
}
.service-cta-box__title {
	font-size: 28px;
	line-height: 1.15;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	font-weight: 800;
	margin: 0 0 12px;
	color: #fff;
}
.service-cta-box__text {
	font-size: 15px;
	line-height: 1.5;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
	margin: 0 0 22px;
}
.service-cta-box__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: min(100%, 240px);
	background: #fff;
	color: var(--primary-one);
	border-radius: 999px;
	padding: 13px 22px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.service-cta-box__btn:hover {
	background: var(--primary-five-light);
	color: var(--primary-one);
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}
.service-cta-box__btn i {
	font-size: 15px;
}
.service-cta-box__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
}
.service-cta-box__phone:hover {
	color: var(--primary-five-light);
}
.service-sidebar-card h3 {
	margin: 0 0 16px;
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-text-color);
}
.service-sidebar-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.service-sidebar-list li + li {
	margin-top: 10px;
}
.service-sidebar-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border-radius: 14px;
	text-decoration: none;
	color: #334155;
	background: #f8fafc;
	border: 1px solid transparent;
	transition: all 0.2s ease;
}
.service-sidebar-link:hover,
.service-sidebar-link.active {
	background: var(--primary-five-light);
	border-color: rgba(237, 81, 37, 0.18);
	color: var(--primary-one);
}
.service-sidebar-link__icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}
.service-sidebar-link__icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}
.service-sidebar-link__text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.service-sidebar-link__text strong {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	color: inherit;
}
.service-sidebar-link__text small {
	font-size: 12px;
	line-height: 1.35;
	color: #64748b;
	font-weight: 500;
}
.service-sidebar-link:hover .service-sidebar-link__text small {
	color: rgba(237, 81, 37, 0.8);
}
.service-sidebar-link__arrow {
	font-size: 12px;
	color: #94a3b8;
	flex-shrink: 0;
}
.service-sidebar-link:hover .service-sidebar-link__arrow {
	color: var(--primary-one);
}
.service-sidebar-view-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-one);
	text-decoration: none;
}
.service-sidebar-view-all:hover {
	color: #c93f18;
}

@media (max-width: 991px) {
	.service-sidebar {
		position: static;
		top: auto;
	}
	.service-cta-box--sticky {
		position: static;
		top: auto;
	}
	.service-sidebar-card {
		position: static;
	}
	.service-cta-box {
		border-radius: 20px;
		padding: 28px 22px;
	}
	.service-cta-box__icon {
		width: 64px;
		height: 64px;
		border-width: 3px;
		margin-bottom: 14px;
	}
	.service-cta-box__icon i {
		font-size: 24px;
	}
	.service-cta-box__title {
		font-size: 24px;
	}
	.service-cta-box__text {
		font-size: 14px;
	}
	.service-cta-box__btn {
		font-size: 15px;
		padding: 12px 18px;
	}
	.service-cta-box__btn i {
		font-size: 14px;
	}
	.service-listing-card__label {
		font-size: 22px;
	}
}












.dark h3 {
	color: #000;
}
.dark p {
	color: #000;
}
.bg1 {
	background: url(../images/service-bg-1.jpg) no-repeat left;
	background-size: cover;
	background-attachment: fixed;
}

.videobox {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url('../images/videobg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
}

/* Dark Overlay */
.videobox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2; 
  padding: 20px;
}

.videobox h3 {
  font-size: 40px;
  margin-bottom: 30px;
  max-width: 700px;
}

/* Animated Play Button */
.videplay {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background:var(--primary-one);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.videplay:hover {
  transform: scale(1.1);
  background: var(--secondary-color);
  color: var(--white);
}

/* The Ripple Animation (Before and After) */
.videplay::before,
.videplay::after {
  content: '';
  position: absolute;
  border: 5px solid #fff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  animation: ripple 2s infinite;
  opacity: 0;
}

.videplay::after {
  animation-delay: 1s; 
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}



/*---------------------------------------
   			How it works         
-----------------------------------------*/
.howitwrap {
	position: relative;
}

.howlist {
	list-style: none;
	margin-bottom: 20px;
}
.howlist li {
	margin-top: 30px;
}
.howitworks-card{text-align: center;}
.howitworks-card h4 {
	font-size: 20px;
	font-weight: 700;
	color:var(--black);
	margin-bottom: 10px;
}
.howitworks-card h4 strong{color: var(--primary-one);}
.howitworks-card p {
	font-size: 16px;
	line-height: 26px;
	color: #333;
}
.howitworks-card .icon{max-width: 100px;    margin: 0 auto; margin-bottom: 30px;}




.fullimg {
	height: 650px;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	width: 50%;
	float: left;
}
.stcontent {
	float: left;
	padding: 50px;
	width: 50%;
}
/*---------------------------------------
   Service section              
-----------------------------------------*/

#service .service-thumb {
	margin-bottom: 30px;
	padding: 30px;
	transition: ease-in-out 0.3s;
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3s;
	-ms-transition: ease-in-out 0.3s;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;	
	position: relative;
}
.serviceintcontent{position: relative; z-index: 1;}
#service .service-thumb:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 100%;
    background-color: var(--secondary-color);
    border-radius:0 0 500px 500px;
    transition: all 0.4s ease-in-out;
    height:0;
    width: 100%;
    z-index: 0;
    opacity: 0;
}
#service .service-thumb:hover:before {
    bottom: 0;
    border-radius: 0;
    opacity: 1;
	 height: 100%;
}


#service .service-thumb h4 {
	color:var(--black);
	font-size: 20px;
	font-weight: var(--font-bold);
}
#service .thumb-icon {
	background: rgba(0, 0, 0, 0.1);
	width: 70px;
	height: 70px;
	text-align: center;
	margin-bottom: 15px;
	transition: ease-in-out 0.3s;
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3s;
	-ms-transition: ease-in-out 0.3s;
	border-radius: 70px;
}
#service .service-thumb:hover .thumb-icon {
	background:var(--white);
}
#service .service-thumb p {
	color: #050505;
	margin-bottom: 15px;
}


#service .service-thumb:hover h4, #service .service-thumb:hover p{color: var(--white);}

/*---------------------------------------
    Team section              
-----------------------------------------*/
#team .team-thumb{
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(16, 24, 40, 0.18);
	min-height: 340px;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	transition: all 0.35s ease;
	display: block;
}

#team .thumb-image {
	margin-bottom: 0;
	height: 400px;
	position: relative;
}

#team .thumb-image:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 62%;
	background: linear-gradient(180deg, rgba(7, 13, 22, 0) 0%, rgba(7, 13, 22, 0.92) 100%);
	z-index: 1;
}

#team .team-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: -webkit-transform 0.45s ease;
	transition: transform 0.45s ease;
	display: block;
}

#team .team-info {
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 20px;
	z-index: 2;
	text-align: center;
}

#team .team-thumb h4 {
	margin: 0 0 4px 0;
	color: var(--white);
	font-size: 24px;
	font-weight: var(--font-bold);
	line-height: 1.2;
}

#team .team-thumb h5 {
	color: rgba(255, 255, 255, 0.88);
	margin: 0;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.3;
}

#team .team-exp-badge {
	position: static;
	display: inline-block;
	margin-top: 10px;
	font-size: 12px;
	font-weight: 700;
	color: var(--white);
	background: var(--primary-one);
	padding: 6px 15px;
	border-radius: 999px;
}

#team .team-thumb:hover {
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(16, 24, 40, 0.24);
}

#team .team-thumb:hover img {
	-webkit-transform: scale(1.06);
	transform: scale(1.06);
}
/* Social */
.social {
	margin-top: 15px;
	margin-bottom: 0;
}
.social li{display: inline-block;}
.social li a {
	display: block;
	height: 36px;
	width: 36px;
	border-radius: 5px;;
	color: #fff !important;
	line-height: 36px;
	text-align: center;
	text-decoration: none !important;
	background:var(--primary-one)
}
.social li a:hover {
	background: #333;
}
/*---------------------------------------
    Testimonials section              
-----------------------------------------*/
#testimonials {
	padding:70px 0;
}
.testibox{
    border-radius: 20px;
	padding: 50px;
	border: 1px solid #eee;
}
#testimonials h2 {
	color: #555;
}
#testimonials .section-title {
	padding-bottom: 30px;
}
.testimonialsList {
	list-style: none;
}
.testimonialsList li {
	text-align: center;
	margin: 0 0 15px 0;
}
.testimonialsList li .clientname {
	font-size: 20px;
	font-weight: 700;
	color: var(--black);
	margin-top: 10px;
}
.testimonialsList li p {
	font-style: italic;
	line-height: 26px;
	color: #555;
	max-width: 770px;
	margin: 0 auto;
	font-size: 18px;
}
.testimonialsList li .clientinfo {
	font-weight: 400;
	color: var(--primary-one);
}
#testimonials .section-title p {
	font-size: 18px;
	color: #fff;
}
.testimonialsList li .rating {
	color: var(--secondary-color);
	font-size: 20px;
	margin-bottom: 10px;
}
.useravatar{text-align: center; width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin: 0 auto; margin-top: 20px;}




/*---------------------------------------
    Taglinewrap section              
-----------------------------------------*/
.taglinewrap {
	background: #222 url(../images/tagline-bg.jpg) no-repeat;
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
	padding: 120px 0;
	margin: 0 30px;
	border-radius: 30px;
	overflow: hidden;
	position: relative;
}
.taglinewrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.ctacontect {
	position: relative;
	z-index: 2;
}


.taglinewrap h3 {
	color: #fff;
	margin-bottom: 15px;
}
.taglinewrap p {
	color: #fff;
	max-width: 800px;
	margin: 0 auto;
	font-size: 20px;
	line-height: 30px;
}

/************************************************
           == Home Blog css ==
*************************************************/
.hmblog .seprator {
	text-align: center;
}
.hmblog .mainblogpost {
	position: relative;
}

.hmblog .postimg {
	overflow: hidden;
	margin-bottom: 15px;
}
.hmblog .postimg img {
	display: block;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	width: 100%;
}
.subposts:hover img, .mainblogpost:hover img {
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.hmblog .postinfo h3 a {
	display: block;
	font-size: 30px;
	font-weight: 700;
	color: #000;
}
.hmblog .date {
	background:var(--secondary-color);
	padding: 15px 20px;
	width: 80px;
	text-align: center;
	color: #fff;
	position: absolute;
	bottom: -17px;
    left: 36px;
	z-index: 10;
}
.hmblog .date strong {
	display: block;
	font-size: 30px;
}
.hmblog .date span {
	display: block;
	font-size: 18px;
	text-transform: uppercase;
}
.subposts {
	position: relative;
	margin-bottom: 30px;
}
.hmblog .subposts .postinfo h3 {
	line-height: 24px;
}
.hmblog .subposts .postinfo h3 a {
	font-size: 18px;
}
.hmblog .subposts .postinfo h3 a:hover {
	color: var(--primary-one);
}
.hmblog .subposts .date {
	width: auto;
	padding: 7px 15px;
	text-align: left;
	margin: 10px 0 0 0;
	display: inline-block;
	text-transform: uppercase;
	font-weight: bold;
}

/* =======================
		Blog Grid
======================= */
#blog {
	padding: 60px 0 50px 0;
}
.blogGrid {
	list-style: none;
}
.blogGrid li {
	margin-bottom: 30px;
}
.blogGrid li .postimg {
	position: relative;
	display: block;
	margin: 0;
	overflow: hidden;
}
.blogGrid li .postimg img {
	width: 100%;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.blogGrid li:hover .postimg img {
	-ms-transform: scale(1.2) rotate(5deg);
	-moz-transform: scale(1.2) rotate(5deg);
	-webkit-transform: scale(1.2) rotate(5deg);
	-o-transform: scale(1.2) rotate(5deg);
	transform: scale(1.2) rotate(5deg);
}
.postimg .date {
	font-weight: bold;
	font-size: 15px;
	color: #999;
	line-height: 20px;
}
.blogGrid li .post-header {
	margin-bottom: 15px;
	background: #333;
	padding: 25px;
}
.blogGrid li .post-header .date {
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.15);
	padding-bottom: 10px;
}
.blogGrid li .post-header .date i {
	margin-right: 5px;
}
.blogGrid li .post-header h4 a {
	color:var(--primary-one);
}
.blogGrid li .post-header h4 a:hover {
	text-decoration: underline;
	color: #fff;
}
.blogGrid li p {
	font-size: 14px;
}
.blogGrid .readmore {
	display: inline-block;
	margin-top: 25px;
	color: #fff;
	font-weight: 600;
	padding: 10px 20px;
	background:var(--primary-one);
}
.blogGrid .readmore i {
	margin-left: 7px;
}
.blogGrid .readmore:hover {
	text-decoration: none;
	background: #000
}
.postmeta {
	margin: 10px 0 0 0;
	line-height: 24px;
	color: #999;
}
.postmeta span, .postmeta a {
	color: #fff;
	display: inline-block;
	margin-right: 10px;
}
/*---------------------------------------
    Contact section              
-----------------------------------------*/
#contact {
	padding: 50px 0;
}
.contact {
	margin-bottom: 30px;
	border: 1px solid #eee;
	padding: 20px;
	text-align: left;
	background: #f9f9f9;
}
.contact > span {
	color:var(--primary-one);
	float: left;
	font-size: 30px;
	line-height: 55px;
	text-align: center;
	width: 60px;
	height: 60px;
	border: 1px solidvar(--primary-one);
	background: #fff;
}
.inner-page .fa-home:before {
	content: "\f015";
}
.information {
	margin-top: 5px;
	padding-left: 80px;
}
.information > strong {
	color: #000;
	display: table;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.information > p {
	line-height: 22px;
	margin: 0;
}
.contact-form {
	position: relative;
}
.contact-form h4 {
	text-align: left;
	color: #333;
	font-size: 36px;
	margin: 0 0 30px 0;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
}
.contact-form h4 span {
	color:var(--primary-one);
	font-weight: 400;
}
#contact .form-control {
	border-color: transparent;
	border-radius: 0;
	box-shadow: none;
	font-size: 18px;
	margin-bottom: 30px;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}
#contact input {
	border: 2px solid #f0f0f0 !important;
	height: 55px;
}
#contact input:focus, #contact textarea:focus {
	border-color:var(--primary-one) !important;
}
#contact textarea {
	background: #fff;
	border: 2px solid #f0f0f0 !important;
}
#contact button#submit {
	background-color:var(--primary-one);
	border: none;
	color: #ffffff;
	padding: 10px 30px;
	border-radius: 0;
	height: auto;
	width: 100%;
	font-weight: 700;
	text-transform: uppercase;
}
#contact button#submit:hover {
	background: #555;
	color: #ffffff;
}
#map {
	width: 100%;
	height: 400px;
	border: none;
	display: block;
	pointer-events: none;
}
.frmap {
	margin-top: 10px;
}
/*---------------------------------------
    Address section              
-----------------------------------------*/

#address {
	color: #333;
	text-align: left;
	margin-top: 10px;
}
#address .fa {
	font-size: 42px;
	color:var(--primary-one);
	float: left;
	width: 50px;
	height: 70px;
	margin-right: 15px;
}
#address h4 {
	color: #444;
	margin: 0;
}
#address p {
	color: #888;
	margin-bottom: 0
}
.address-office, .address-phone, .address-email {
	margin-bottom: 30px;
	clear: both;
	border: 1px solid #ddd;
	background: #fff;
	padding: 20px;
	min-height: 120px;
}
/*---------------------------------------
   Newsletter
-----------------------------------------*/
.newsletter {
	background:var(--primary-one);
	padding: 50px 0;
}
.newsletter h3 {
	margin: 0;
	font-size: 30px;
	font-weight: var(--font-bold);
}
.newsletter h3, .newsletter p {
	color: #fff;
	margin: 0;
}
.newsletter .input-group {
	max-width: 675px;
	margin: 0 auto;
}
.newsletter .input-group:before {
	content: '\f0e0';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	left: 20px;
	top: 12px;
	color: #999;
	font-size: 24px;
	z-index: 100;
	font-weight: 900;
}
.newsletter .form-control {
	height: auto;
	padding: 10px 15px 10px 60px;
	font-size: 16px;
	border-radius: 0;
	line-height: normal;
	border: none;
}
.newsletter .btn {
	background: var(--secondary-color);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	padding:15px 30px;
	cursor: pointer;
	border: none;
	color: #fff;
	border-radius: 0;
}
/*---------------------------------------
   Clients
-----------------------------------------*/
.our-clients {
	padding: 50px 0;
	background: #f7f7f7;
}
.our-clients .owl-controls {
	display: none !important;
}

.partnerint{background: #fff; border-radius: 10px; padding: 10px;}

/*---------------------------------------
   Footer section              
-----------------------------------------*/

footer {
	background:var(--primary-one) url(../images/footer-bg.jpg) no-repeat bottom;
	background-size: cover;
	padding: 40px 0;
}
footer h5{font-size: 18px; color:var(--secondary-color); margin-bottom: 20px; font-weight: 700;}
.footerlogo{text-align: center; margin-bottom: 20px;}
.quicklinks{margin-bottom: 20px;}
.quicklinks li{margin: 10px 0;}
.quicklinks li a{color: #fff; font-size: 16px; text-decoration: none;}
.quicklinks li a:hover{color: var(--secondary-color);}

.contact-info li{color: #fff; font-size: 16px; margin-bottom:15px;	}
.contact-info li i{color: var(--primary-one); margin-right: 10px;}


.socialLinks {
	margin-bottom: 20px;
	text-align: center;
}
.socialLinks a {
	font-size: 18px;
	color: #fff;
	display: inline-block;
	margin: 0 5px;
	width: 36px;
	height: 36px;
	background:var(--primary-one);
	border-radius: 5px;
	text-align: center;
}
.socialLinks a:hover {
	color:var(--primary-one);
	background: #fff;
}
.socialLinks a i {
	display: block;
	margin-top: 9px;
}
.footer-copyright{text-align: center;}
footer .footer-copyright p {
	color: #999;
	margin-bottom: 0;
}
.scrollup {
	width: 40px;
	height: 40px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	background-color: #000;
	padding: 5px;
	opacity: 0.5;
	border-radius: 50%;
}
.scrollup i {
	color: #fff;
	display: block;
	line-height: 30px;
	text-align: center;
}
.scrollup:hover {
	opacity: 1;
	text-decoration: none;
}
.successpage {
	width: 100%;
	text-align: center;
}

.successpage h1 {
	color: #56b50f;
	font-size: 48px;
}
.successpage h2 {
	font-weight: 300;
	color: #444;
}
.successpage p {
	max-width: 770px;
	margin: 10px auto;
}

/********* Inner Page Common *********/
.pageheader{position: relative; padding:70px 0; background: url(../images/home-bg.jpg) no-repeat center;background-size: cover; margin: 0 30px;
 border-radius: 30px; background-attachment: fixed; }
.pageheader h1{text-align: center; font-size: 36px; color:var(--white); margin-bottom: 0; font-weight: var(--font-bold);}
.pageheader p{text-align: center; margin-bottom: 0; color: rgba(255, 255, 255, 0.88); font-size: 16px; margin-top: 10px;}

.innerpagewrap {
    padding: 50px 0;
    min-height: 400px;
}

.carlistpage .car-modern-card{margin-bottom: 30px;}

.account-main {
    padding: 50px;
    background: #fff;
    -webkit-box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
    box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
    border-radius:15px;
    border-bottom: 3px solid var(--primary-one);
}
.account-title h3{font-size: 30px;}
.account-title h3 span{color: var(--primary-one); font-size: 30px;}
.postimg img{border-radius: 10px;}

.leadpostimg img{border-radius: 10px;}
.estprice{text-align: right;}
.estprice strong{display: block; font-size: 34px; line-height: 36px;}

.checklist{list-style: none;}  
  .checklist li {
    position: relative;  
    padding-left: 25px;  
    font-size: 16px;
    margin-bottom: 15px;
  }  
  .checklist li:before {
    font-family: "Font Awesome 5 Free";  
    font-weight: bold;  
    content: "\f00c";  
    position: absolute;  
    top: 2px;  
    left: 0;  
    color: var(--primary-one);
  }  
  .checklist li strong {
    font-weight: 700;
  }
  

.form-outline h5{font-size: 14px; color: #666;}
.form-outline ul{list-style: disc; margin-left: 20px;}
.form-outline ul li{font-size: 13px; color: #666;}
.form-outline p{font-size: 14px;}


.form-outline input:focus{outline: none; box-shadow:none}
.account-form-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.account-form-label label {
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-body-heading);
    margin-bottom: 5px;
}
.account-form-label a {
    font-size: 14px;
    color: rgba(4, 0, 23, 0.6);
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
}
.account-bottom-text{text-align: center;}
.account-bottom-text a{color: var(--primary-one); text-decoration: none;}
.account-bottom-text p{margin-bottom: 0;}

/* Auth Pages (Login / Register) */
.auth-page {
    position: relative;
    padding: 40px 0 90px;
    overflow: hidden;
    background: #f4f6f9;
}
.auth-page-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(237, 81, 37, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(237, 150, 37, 0.1) 0%, transparent 35%),
        linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
    pointer-events: none;
}
.auth-page-bg::before {
    content: "";
    position: absolute;
    top: 60px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px dashed rgba(237, 81, 37, 0.15);
}
.auth-page-bg::after {
    content: "";
    position: absolute;
    bottom: 80px;
    left: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px dashed rgba(237, 150, 37, 0.2);
}
.auth-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 28px;
    color: #888;
}
.auth-breadcrumb a {
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
.auth-breadcrumb a:hover {
    color: var(--primary-one);
}
.auth-breadcrumb span:last-child {
    color: var(--primary-one);
    font-weight: 600;
}
.auth-shell {
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(30, 30, 30, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    background: #fff;
}
.auth-wrap {
    gap: 0;
}
.auth-side-panel {
    height: 100%;
    min-height: 580px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.auth-side-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.auth-shell:hover .auth-side-bg {
    transform: scale(1.12);
}
.auth-side-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20, 18, 18, 0.35) 0%,
        rgba(20, 18, 18, 0.75) 45%,
        rgba(20, 18, 18, 0.95) 100%
    );
    z-index: 1;
}
.auth-side-content {
    position: relative;
    z-index: 2;
    padding: 44px 40px;
    color: #fff;
}
.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(237, 150, 37, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 7px 16px;
    margin-bottom: 20px;
}
.auth-badge i {
    color: var(--secondary-color);
    font-size: 10px;
}
.auth-side-panel h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
	color: #fff;
}
.auth-side-panel h2 span {
    color: var(--secondary-color);
}
.auth-side-content > p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 380px;
}
.auth-feature-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}
.auth-feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    margin-bottom: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    transition: background 0.25s ease, transform 0.25s ease;
}
.auth-feature-list li:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(4px);
}
.auth-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-one), var(--secondary-color));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(237, 81, 37, 0.35);
}
.auth-feature-icon i {
    color: #fff;
    font-size: 15px;
}
.auth-feature-list li strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.auth-feature-list li small {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}
.auth-stat-row {
    display: flex;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.auth-stat {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.auth-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
}
.auth-stat span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}
.auth-form-card.account-main {
    height: 100%;
    border-radius: 0;
    border: none;
    border-bottom: none;
    padding: 44px 48px 40px;
    box-shadow: none;
    position: relative;
}
.auth-form-card.account-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 48px;
    right: 48px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--primary-one), var(--secondary-color));
}
.auth-form-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}
.auth-form-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(237, 81, 37, 0.12), rgba(237, 150, 37, 0.18));
    border: 1px solid rgba(237, 81, 37, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.auth-form-icon i {
    font-size: 22px;
    color: var(--primary-one);
}
.auth-form-icon.vendor {
    background: linear-gradient(135deg, rgba(237, 150, 37, 0.15), rgba(237, 81, 37, 0.1));
}
.auth-form-card .account-title {
    margin-bottom: 0;
}
.auth-form-card .account-title h3 {
    font-size: 24px;
    margin-bottom: 4px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.auth-form-card .account-title p {
    color: #888;
    margin-bottom: 0;
    font-size: 14px;
}
.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 26px;
    padding: 5px;
    background: linear-gradient(135deg, #f3f4f6, #ebedf0);
    border-radius: 50px;
    border: 1px solid #e5e7eb;
}
.auth-tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #777;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.auth-tab-btn i {
    font-size: 13px;
}
.auth-tab-btn:hover {
    color: var(--primary-one);
}
.auth-tab-btn.active {
    background: #fff;
    color: var(--primary-one);
    box-shadow: 0 6px 20px rgba(30, 30, 30, 0.1);
}
.auth-tab-content {
    display: none;
}
.auth-tab-content.active {
    display: block;
    animation: authFadeIn 0.35s ease;
}
@keyframes authFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.auth-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-body-heading);
    margin-bottom: 7px;
}
.auth-input-wrap {
    position: relative;
}
.auth-input-wrap > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b5bd;
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
    transition: color 0.2s ease;
}
.auth-input-wrap:focus-within > i {
    color: var(--primary-one);
}
.auth-input-wrap .form-control,
.auth-input-wrap .form-select {
    padding: 13px 16px 13px 44px;
    border: 1.5px solid #e8eaed;
    border-radius: 12px;
    font-size: 15px;
    height: auto;
    background: #fafbfc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.auth-input-password .form-control {
    padding-right: 48px;
}
.auth-pass-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #aaa;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    z-index: 3;
}
.auth-pass-toggle:hover {
    color: var(--primary-one);
    background: rgba(237, 81, 37, 0.08);
}
.auth-input-wrap .form-control:focus,
.auth-input-wrap .form-select:focus {
    border-color: var(--primary-one);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(237, 81, 37, 0.1);
}
.auth-textarea-wrap > i {
    top: 18px;
    transform: none;
}
.auth-textarea-wrap .form-control {
    min-height: 96px;
    resize: vertical;
}
.auth-check .form-check-input:checked {
    background-color: var(--primary-one);
    border-color: var(--primary-one);
}
.auth-check .form-check-label {
    font-size: 14px;
    color: #666;
}
.auth-check .form-check-label a {
    color: var(--primary-one);
    text-decoration: none;
}
.auth-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-one);
    text-decoration: none;
}
.auth-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
.auth-submit-btn {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    font-size: 15px !important;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 26px 0;
    color: #aaa;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}
.auth-social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.auth-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #e8eaed;
    background: #fff;
    color: #444;
    transition: all 0.25s ease;
}
.auth-social-link i {
    font-size: 16px;
}
.auth-social-link.google:hover {
    border-color: #ea4335;
    color: #ea4335;
    background: rgba(234, 67, 53, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 67, 53, 0.12);
}
.auth-social-link.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.12);
}
.auth-vendor-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(237, 81, 37, 0.08), rgba(237, 150, 37, 0.12));
    border: 1px dashed rgba(237, 81, 37, 0.35);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
}
.auth-vendor-cta a:hover {
    background: linear-gradient(135deg, rgba(237, 81, 37, 0.15), rgba(237, 150, 37, 0.2));
    border-style: solid;
}
.auth-vendor-cta i {
    color: var(--primary-one);
}
@media (max-width: 991px) {
    .auth-side-panel {
        min-height: 420px;
    }
    .auth-side-content {
        padding: 32px 28px;
    }
    .auth-side-panel h2 {
        font-size: 28px;
    }
    .auth-form-card.account-main {
        padding: 32px 28px 28px;
    }
    .auth-form-card.account-main::before {
        left: 28px;
        right: 28px;
    }
    .auth-stat-row {
        flex-wrap: wrap;
    }
    .auth-stat {
        min-width: calc(33% - 8px);
    }
}
@media (max-width: 575px) {
    .auth-page {
        padding: 24px 0 60px;
    }
    .auth-shell {
        border-radius: 18px;
    }
    .auth-form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .auth-tabs {
        flex-direction: column;
        border-radius: 14px;
    }
    .auth-tab-btn {
        border-radius: 10px;
    }
    .auth-social-row {
        grid-template-columns: 1fr;
    }
    .auth-feature-list li {
        padding: 10px 12px;
    }
    .auth-stat strong {
        font-size: 18px;
    }
}

.requiredField {
    color: red;
}




.topsort{padding:20px; background: #eee; margin-bottom: 30px; border-radius: 5px;}


.filtersidebar{padding:30px; background: #fff; margin-bottom: 30px; border-radius: 15px; border: 1px solid #eee;}

.filterbox h5{font-weight: var(--font-bold); font-size: 18px;}
.filterbox label{font-weight: 700; font-size: 14px; color: #333;}

.filterbox .form-check{margin-top: 15px;}
.filterbox .form-check label{display: flex; justify-content: space-between; align-items: center;}

.filterbox .price-input {
	width: 100%;
	display: flex;
	margin: 0 0 35px;
  }
.filterbox .price-input .field {
	width: 100%;
  }
.filterbox .field input {
	width: 100%;
	outline: none;
	font-size: 19px;
	padding: 10px;
	border-radius: 5px;
	text-align: center;
	border: 1px solid #ddd;
	-moz-appearance: textfield;
  }
  .filterbox input[type="number"]::-webkit-outer-spin-button,
  .filterbox input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
  }
  .filterbox .price-input .separator {
	width: 130px;
	display: flex;
	font-size: 19px;
	align-items: center;
	justify-content: center;
  }
  .filterbox .slider {
	height: 5px;
	position: relative;
	background: #ddd;
	border-radius: 5px;
  }
  .filterbox .slider .progress {
	height: 100%;
	left: 25%;
	right: 25%;
	position: absolute;
	border-radius: 5px;
	background: var(--secondary-color);
  }
  .filterbox .range-input {
	position: relative;
  }
  .filterbox  .range-input input {
	position: absolute;
	width: 100%;
	height: 5px;
	top: -5px;
	background: none;
	pointer-events: none;
	-webkit-appearance: none;
	-moz-appearance: none;
  }
  .filterbox  input[type="range"]::-webkit-slider-thumb {
	height: 17px;
	width: 17px;
	border-radius: 50%;
	background: var(--secondary-color);
	pointer-events: auto;
	-webkit-appearance: none;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  }
  .filterbox input[type="range"]::-moz-range-thumb {
	height: 17px;
	width: 17px;
	border: none;
	border-radius: 50%;
	background: #17a2b8;
	pointer-events: auto;
	-moz-appearance: none;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  }


/* =======================
		Blog Listing
======================= */
.blogWraper {
	margin-bottom: 40px;
}
.blogList {
	list-style: none;
}
.blogList li {
	background: #fff;
	padding: 20px;
	margin-bottom: 30px;
	border: 1px solid #e4e4e4;
	border-radius: 10px;
}
.blogList li:hover {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
	border-color:var(--primary-one);
}
.blogList li .postimg {
	position: relative;
}
.blogList li .postimg .date {
	width: 60px;
	height: 60px;
	font-weight: bold;
	font-size: 15px;
	color: #fff;
	padding: 7px 10px 0 10px;
	text-align: center;
	line-height: 20px;
	background:var(--primary-one);
	letter-spacing: 0.4px;
	outline: 3px solidvar(--primary-one);
	border: 1px solid #fff;
	position: absolute;
	left: 14px;
	top: 14px;
	z-index: 12;
}
.post-header {
	margin-bottom: 15px;
}
.post-header h4 a {
	font-size: 24px;
	color: #333;
	font-weight: 600;
}
.post-header h4 a:hover {
	color:var(--primary-one);
}
.postmeta {
	margin: 10px 0;
	font-size: 14px;
}
.postmeta span, .postmeta a {
	color:var(--primary-one);
}
.blogList li p {
	font-size: 14px;
	line-height: 24px;
	color: #777;
}
.blogList li .readmore {
	background:var(--primary-one);
	display: inline-block;
	margin-top: 5px;
	color: #fff;
	font-weight: 600;
	font-size: 13px;
	padding: 10px 25px;
}
.blogList li .readmore i {
	margin-left: 5px;
}
.blogList li .readmore:hover {
	text-decoration: none;
	background: #333;
}
/*Pagination*/
.pagiWrap .showreslt {
	font-size: 14px;
	font-weight: 600;
	margin-top: 10px;
}
.pagiWrap .pagination {
	text-align: right;
	margin: 0;
}
.pagination>li:first-child>a, .pagination>li:first-child>span, .pagination>li:last-child>a, .pagination>li:last-child>span {
	border-radius: 0;
}





/*Side bar*/
.sidebar {
	box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    padding: 30px;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
}
.sidebar .widget {
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}
.sidebar .widget-title {
	font-size: 18px;
	font-weight: 600;
	color: #666;
	margin-bottom: 20px;
}
/*Sidebar Search*/
.search {
	position: relative;
	margin-bottom: 15px;
}

.search .btn {
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 0;
	background: none;
	font-size: 20px;
}
/*categories*/
.categories li {
	margin-bottom: 15px;
	position: relative;
	padding-left: 17px;
}
.categories li a {
	margin-top: 0;
	color: #888;
	font-size: 14px;
	font-weight: 600;
}
.categories li a:hover {
	color: #000;
}
.categories li:before {
	content: "\f0da ";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0px;
	top: 3px;
	color:var(--primary-one);
	font-size: 12px;
}
/*Archives*/
.archive li {
	line-height: 45px;
}
.archive li a {
	margin-top: 0;
	color: #888;
	font-size: 14px;
	font-weight: 600;
}
.archive li span {
	float: left;
	height: 30px;
	width: 30px;
	text-align: center;
	background: #f5f5f5;
	border: 1px solid #fff;
	outline: 3px solid #f5f5f5;
	margin-right: 20px;
	line-height: 26px;
	font-size: 12px;
	color: #777777;
	margin-top: 10px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.archive li a:hover span {
	background:var(--primary-one);
	color: #fff;
}
/*Popular Posts*/
.papu-post {
}
.papu-post .media-left {
	margin-right: 0px;
}
.papu-post .media-left img {
	width: 100%;
}
.papu-post .media-left a {
	width: 80px;
	margin-top: 0;
	margin-right: 5px;
	display: inline-block;
}
.papu-post span {
	color:var(--primary-one);
	letter-spacing: 0px;
	font-size: 11px;
}
.papu-post li {
	border-bottom: 1px solid #ececec;
	padding: 20px 0;
	margin: 0px;
}
.papu-post .media-heading {
	display: inline-block;
	width: 100%;
	color: #777777;
	margin-top: 0px;
	font-size: 14px;
	line-height: 20px;
}
.papu-post li:last-child {
	border-bottom: 0;
}
/*Tags*/
.tags:after {
	display: table;
	clear: both;
	content: '';
}
.tags li {
	display: inline-block;
	float: left;
}
.tags a {
	font-size: 13px;
	color: #969595;
	border: 1px solid #dadada;
	padding: 7px 10px;
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 5px;
	text-transform: uppercase;
	background: #fff;
}
.tags a:hover {
	border: 1px solidvar(--primary-one);
	background:var(--primary-one);
	color: #fff;
	text-decoration: none;
}
/*Photo Streen*/
.photo-steam {
	margin: 0 -5px;
}
.photo-steam:after {
	display: table;
	clear: both;
	content: '';
}
.photo-steam li {
	float: left;
	width: 25%;
	padding: 0 5px;
	margin-bottom: 10px;
}
.blogdetailbox .date {
	margin-top: 15px;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}
.blogdetailbox p {
	font-size: 14px;
}
/*Comments*/
blockquote {
	display: block;
	font-size: 16px;
	line-height: 24px;
	margin: 20px 0;
	padding: 20px 20px 20px 60px;
	position: relative;
	border: 3px solidvar(--primary-one);
	box-shadow: 0 0 12px rgba(0,0,0,0.2);
}
blockquote p {
	font-style: italic;
	display: inline-block;
	color: #000;
}
blockquote:before {
	color: #ddd;
	content: "\f10d";
	font-family: 'FontAwesome';
	font-size: 22px;
	font-style: normal;
	left: 24px;
	position: absolute;
	top: 20px;
	transform: scale(-1);
}
blockquote:after {
	color: #ddd;
	content: "\f10e";
	display: inline-block;
	font-family: 'FontAwesome';
	font-size: 22px;
	font-style: normal;
	margin: 0 0 0 8px;
	position: relative;
	top: 3px;
}
.comments h4 {
	color: #222222;
	font-size: 24px;
	font-weight: 600;
}
.comments .media-body h4 span {
	font-size: 12px;
	color: #777777;
	margin-left: 20px;
	display: inline-block;
	width: 100%;
}
.comments {
	margin-top: 30px;
}
.comments .media-list {
	margin-bottom: 30px;
}
.comments .media-list li {
	padding: 20px;
	border: 1px solid #e9e9e9;
	position: relative;
	background: #fff;
}
.comments .media-left {
	margin-right: 20px;
}
.comments .media-left a {
	width: 100px;
	display: inline-block;
}
.comments .media p {
	margin-top: 5px;
	color: #333;
	line-height: 20px;
	font-size: 14px;
}
.comments .media h6 span {
	font-size: 13px;
	color: #999;
	margin: 0;
	margin-top: 10px;
	text-transform: none;
	display: inline-block;
	width: 100%;
}
.comments .media {
	margin-top: 30px;
}
.comments .media h6 {
	font-weight: 600;
	color: #00b1f1;
	font-size: 16px;
	text-transform: none;
}
.margin-left80 {
	margin-left: 80px;
}
.comments .btn.raply {
	padding: 10px 12px;
	font-size: 12px;
	color: #333;
	background: #f5f5f5;
	border: none;
	border-radius: 0;
	position: absolute;
	top: 15px;
	right: 0;
}
.comments .btn.raply:hover {
	background: #00b1f1;
	color: #fff;
}
.comments .media a img {
	margin-bottom: 10px;
}
.commnetsfrm {
	background: #fff;
	padding: 25px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.comments form label {
	text-transform: uppercase;
	font-weight: normal;
	margin-top: 20px;
	display: inline-block;
	width: 100%;
	font-size: 12px;
}
.comments form .form-control {
	display: inline-block;
	width: 100%;
	height: 40px;
	margin-top: 5px;
	border-radius: 0px;
	box-shadow: none;
	background: none;
	border: 1px solid #e8e8e8;
}
.comments form textarea.form-control {
	display: inline-block;
	width: 100%;
	height: 150px;
}
.commnetsfrm .btn {
	background:var(--primary-one);
	color: #fff;
	font-weight: 700;
	margin-top: 20px;
	font-size: 18px;
	padding: 10px 25px;
	cursor: pointer;
	border-radius: 0px;
}
.innercms {
	padding: 50px 0;
}
.pageTitle {
	background: url(../images/home-bg.jpg) no-repeat top;
	background-size: cover;
	text-align: center;
	padding: 120px 0 50px 0;
}
.pageTitle h1 {
	color: #fff;
	margin: 0;
}
.pagiWrap {
	margin-top: 40px;
	text-align: right;
}
.pagiwrap .page-link {
	margin: 0 5px;
	border-radius: 10px !important;
	color: #000;
}
.pagiwrap .active .page-link{color: var(--white);}
.page-item.active .page-link {
	background:var(--secondary-color);
	border-color:var(--secondary-color);
}

.pagiwrap{background: #fff; margin-top: 30px;}
.pagiwrap .pagination{justify-content: center;}


/* Dashboard */
.dashboard-page {
	background: var(--soft-bg);
}

.twm-right-section-panel .panel.panel-default {
	border-radius: 16px;
	background: transparent;
	border: none;
	box-shadow: none;
}
.dashboard-card-2 {
	position: relative;
	overflow: hidden;
	z-index: 1;
	padding: 24px 22px;
	background-color: #fff;
	border-radius: 16px;
	min-height: 148px;
	box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
}
.dashboard-card-2:hover {
	-webkit-transform: translateY(-6px);
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(17, 24, 39, 0.14);
}
.block-gradient {
	background: linear-gradient(135deg, var(--primary-one) 0%, #ff7a4d 100%);
}
.block-gradient-2 {
	background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
}
.block-gradient-3 {
	background: linear-gradient(135deg, var(--secondary-color) 0%, #f5b041 100%);
}
.block-gradient-4 {
	background: linear-gradient(135deg, var(--primary-one) 0%, #c93d18 100%);
}
.block-gradient-5 {
	background: linear-gradient(135deg, #2d2e2f 0%, #4a4a4a 100%);
}
.dashboard-card-2 .wt-card-wrap-2 {
	color: #fff;
	position: relative;
}
.dashboard-card-2 .wt-card-icon-2 {
	font-size: 34px;
	line-height: 1;
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.22;
}
.wt-card-right {
	text-align: right;
	font-size: 42px;
	line-height: 1;
	font-weight: 700;
	margin-bottom: 12px;
	position: relative;
	z-index: 2;
}
.dashboard-card-2 .wt-card-bottom-2 h4 {
	font-weight: 600;
	color: #fff;
	font-size: 16px;
	margin-bottom: 0;
	position: relative;
	z-index: 2;
}
.dash-welcome-card {
	background: linear-gradient(135deg, #1c1c1c 0%, #2d2e2f 100%);
	border-radius: 18px;
	padding: 28px 30px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	box-shadow: 0 16px 40px rgba(17, 24, 39, 0.16);
}
.dash-welcome-text h2 {
	color: var(--white);
	font-size: 28px;
	margin: 0 0 8px;
	font-weight: var(--font-bold);
}
.dash-welcome-text p {
	color: rgba(255, 255, 255, 0.82);
	margin: 0;
	font-size: 15px;
}
.dash-welcome-text strong {
	color: var(--secondary-color);
}
.dash-bookings-card {
	background: var(--white);
	border: 1px solid #eceff3;
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}
.dash-section-sub {
	margin: 6px 0 0;
	color: #6f7782;
	font-size: 14px;
}
.booking-table {
	margin-bottom: 0;
}
.booking-table thead th {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: #7d8590;
	font-weight: 700;
	border-bottom: 1px solid #eceff3;
	padding: 14px 12px;
	white-space: nowrap;
}
.booking-table tbody td {
	padding: 18px 12px;
	vertical-align: middle;
	border-bottom: 1px solid #f1f3f6;
	font-size: 14px;
	color: #4b5563;
}
.booking-table tbody tr:last-child td {
	border-bottom: none;
}
.booking-car-cell {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 210px;
}
.booking-car-cell img {
	width: 56px;
	height: 42px;
	object-fit: cover;
	border-radius: 10px;
	flex-shrink: 0;
}
.booking-car-cell strong {
	display: block;
	color: var(--dark-bg);
	font-size: 15px;
	line-height: 1.3;
}
.booking-car-cell span {
	display: block;
	font-size: 12px;
	color: #7d8590;
	margin-top: 2px;
}
.booking-status {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}
.status-active {
	background: rgba(237, 81, 37, 0.12);
	color: var(--primary-one);
}
.status-completed {
	background: rgba(10, 197, 26, 0.12);
	color: var(--success-color);
}
.status-upcoming {
	background: rgba(237, 150, 37, 0.14);
	color: var(--secondary-color);
}
.btn-sm {
	padding: 8px 18px !important;
	font-size: 13px;
	line-height: 1.4;
	min-height: 38px;
}
.btn-sm.btn-primary,
.btn-sm.btn-sec,
.btn-sm.btn-dark,
.btn-sm.btn-white,
.btn-sm.btn-grey {
	padding: 8px 18px 8px 46px !important;
}
.btn-sm.btn-primary i,
.btn-sm.btn-sec i,
.btn-sm.btn-dark i,
.btn-sm.btn-white i,
.btn-sm.btn-grey i {
	width: 28px;
	height: 28px;
	left: 6px;
	font-size: 11px;
}
.btn-sm.btn-primary:hover,
.btn-sm.btn-sec:hover,
.btn-sm.btn-dark:hover,
.btn-sm.btn-white:hover,
.btn-sm.btn-grey:hover {
	padding-left: 18px !important;
	padding-right: 46px !important;
}
.btn-sm.btn-primary:hover i,
.btn-sm.btn-sec:hover i,
.btn-sm.btn-dark:hover i,
.btn-sm.btn-white:hover i,
.btn-sm.btn-grey:hover i {
	left: calc(100% - 34px);
}
.btn-primary:not(:has(> i)),
.btn-sec:not(:has(> i)),
.btn-dark:not(:has(> i)),
.btn-white:not(:has(> i)),
.btn-grey:not(:has(> i)) {
	padding-left: 26px;
	padding-right: 26px;
}
.btn-sm.btn-primary:not(:has(> i)),
.btn-sm.btn-sec:not(:has(> i)),
.btn-sm.btn-dark:not(:has(> i)),
.btn-sm.btn-white:not(:has(> i)),
.btn-sm.btn-grey:not(:has(> i)) {
	padding: 8px 18px !important;
}
.myjobtable tr td {
	font-size: 14px;
}
.myjobtable tr td a {
	text-decoration: none;
}
.btbtns a {
	padding: 6px 15px;
	font-size: 14px;
	line-height: 18px;
	font-weight: 500;
}
.sortby h3 {
	font-size: 24px;
	margin: 0;
	font-weight: var(--font-bold);
	color: var(--dark-bg);
}
  
  
  .instoretxt {
	  background: #fcfdff;
	  border: 1px solid #eee;
	  padding: 30px;
	  margin-bottom: 30px;
	margin-top: 30px;
	  border-radius: 15px;
	  box-shadow: 0px 18px 40px rgb(25 15 9 / 10%);
  }
  .instoretxt h3{font-size: 24px;}
  .instoretxt .table {
	margin-bottom: 0;
	margin-top: 30px;
  }
  .instoretxt .currency {
	  font-size: 16px;
	  font-weight: 700;
  }
  .instoretxt .currency strong {
	  color: #056cb8;
  }
  .instoretxt strong {
	  font-weight: 700;
	  color: #056cb8;
  }
  
  .profileDetails {
	background: linear-gradient(180deg, #141414 0%, #1f1f1f 100%);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 18px;
	padding: 30px 22px;
	margin-bottom: 30px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  }
  .profileDetails h3 {
	color: var(--white);
	font-size: 20px;
	font-weight: var(--font-bold);
	margin-bottom: 8px;
  }
  .dash-member-tag {
	display: inline-block;
	background: rgba(237, 150, 37, 0.16);
	color: var(--secondary-color);
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 14px;
  }
  .profileDetails .profile-picture {
	width: 100%;
  }
  .profileDetails .profile-radius {
	border: 4px solid rgba(237, 150, 37, 0.35);
	width: 132px;
	border-radius: 50%;
	margin-top: 8px;
	padding: 4px;
	background: rgba(255, 255, 255, 0.04);
  }
  .profileDetails .profile_img {
	height: 116px;
	width: 116px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;
	overflow: hidden;
  }
  .profileDetails .profile_img img {
	height: auto;
	width: 100%;
  }
  .userdetailbox {
	background: #222;
	padding: 25px;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  }
  .userdetailbox h3 {
	color: #fff;
	font-size: 24px;
  }


  .usertabls {
	margin-bottom: 40px;
	background: #333;
	padding: 15px;
  }
  .usertabls ul {
	margin-bottom: 0;
  }
  .usertabls ul li {
	display: inline-block;
  }
  .usertabls ul li a {
	color: #fff;
	transition: all ease .5s;
	text-align: left;
	font-size: 14px;
	display: block;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	padding: 10px 20px;
  }
  .usertabls ul li a:hover {
	text-decoration: none;
	background: #f81473;
  }
  .usertabls ul li.views {
	float: right;
	color: #fff;
	margin-top: 10px;
  }
  .usertabls ul:after {
	clear: both;
	display: table;
	content: '';
  }
  .profile-Wrap h3 {
	margin-top: 0;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	color: #000;
  }
  .authorDetail {
	text-align: center;
	padding-top: 18px;
  }
  .authorDetail h2 {
	font-weight: 600;
	font-size: 20px;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--white);
  }
  .authorDetail p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 8px;
  }
  .authorDetail p i {
	color: var(--secondary-color);
	margin-right: 6px;
	width: 16px;
	text-align: center;
  }
  .editDetails {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 22px;
	padding-top: 18px;
  }
  .editDetails ul {
	list-style: none;
	margin: 0;
	padding: 0;
  }
  .editDetails ul li {
	margin-bottom: 6px;
  }
  .editDetails ul li a {
	color: rgba(255, 255, 255, 0.82);
	transition: all ease 0.3s;
	text-align: left;
	font-size: 14px;
	font-weight: 500;
	display: block;
	padding: 11px 14px;
	text-decoration: none;
	border-radius: 12px;
  }
  .editDetails ul li a i {
	margin-right: 10px;
	color: var(--secondary-color);
	width: 18px;
	text-align: center;
  }
  .editDetails ul li a:hover,
  .editDetails ul li a.active {
	background: rgba(237, 81, 37, 0.14);
	color: var(--white);
	text-decoration: none;
  }
  .editDetails ul li a.active i,
  .editDetails ul li a:hover i {
	color: var(--primary-one);
  }
  .editDetails ul li a .badge {
	background: var(--primary-one);
  }


/* Hitel detail */
.hotelmaininfo{margin-bottom: 30px;}
.hotelmaininfo h1{font-size: 36px; margin-bottom: 0; font-weight: var(--font-bold);}
.hotelmaininfo .location{padding-bottom: 0;}
.hotelmaininfo .prices{font-size: 36px; color:var(--primary-one); text-align: right; font-weight: 700; margin-top: 20px;}
.hotelmaininfo .prices span{font-size: 18px; color: #555; font-weight:400;}


.facilitieslist .feature-icon{display: block; width: 42px; height: 42px; object-fit: contain;}
.facilitieslist .feature-icon-fallback{display: block; font-size: 36px; color: var(--primary-one); margin-bottom: 10px;}
.facilitieslist .text-fst{background: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #eee;
    display: flex;
    border-bottom: 2px solid var(--primary-one);
    align-items: center;
    gap: 15px;
    font-size: 15px;
    line-height: normal;}

.detcontent{border-bottom: 1px solid #ddd; padding-bottom: 30px; margin-bottom: 30px; margin-top: 30px;}
.detcontent h3{font-size: 20px; font-weight: 700; margin-bottom: 10px;}
.detcontent p{font-size: 18px; line-height: 30px;}

.contentbullets ul li {
    position: relative;  
    padding-left: 25px;  
    font-size: 16px;
    margin-bottom: 15px;
  }  
  .contentbullets ul li:before {
    font-family: "Font Awesome 5 Free";  
    font-weight: bold;  
    content: "\f00c";  
    position: absolute;  
    top: 2px;  
    left: 0;  
    color: var(--primary-one);
  }


.bookingsidebar{background: #f3ead9; padding: 30px; border-radius: 10px; margin-bottom: 30px;}
.bookingsidebar h4{font-weight: var(--font-bold); font-size: 24px; color: var(--black);}
.bookingsidebar p{font-size: 14px;}
.car-detail-card{background:#fff; border-radius:10px; box-shadow:0 10px 40px rgba(0,0,0,0.08); padding:25px; margin-bottom:30px;}
.car-detail-card h4{font-size:22px; font-weight:700; margin-bottom:20px;}
.car-detail-card .car-details{list-style:none; margin:0; padding:0;}
.car-detail-card .car-details li{display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-bottom:1px solid #f1f1f1;}
.car-detail-card .car-details li:last-child{border-bottom:0;}
.car-detail-card .car-details span{color:#555; font-weight:600;}
.car-detail-card .car-details img{width:30px; margin-right:10px;}

.driver-card{background:#fff; border-radius:10px; box-shadow:0 10px 40px rgba(0,0,0,0.08); padding:25px; margin-bottom:30px; border:1px solid #f1f1f1;}
.driver-card h4{font-size:22px; font-weight:700; margin-bottom:18px; color:var(--dark-bg);}
.driver-card-inner{display:flex; align-items:center; gap:16px;}
.driver-card .driver-image{flex-shrink:0;}
.driver-card .driver-image img{width:88px; height:88px; border-radius:50%; object-fit:cover; border:3px solid rgba(237,150,37,0.35); display:block;}
.driver-card .driver-info h5{font-size:18px; font-weight:700; margin:0 0 10px; color:var(--dark-bg);}
.driver-card .driver-meta{display:flex; flex-direction:column; gap:8px;}
.driver-card .driver-meta span{font-size:14px; color:#6f7782; display:flex; align-items:center; gap:8px;}
.driver-card .driver-meta i{width:16px; color:var(--secondary-color); font-size:13px;}
.driver-card .driver-meta strong{color:var(--dark-bg); font-weight:700;}

/* Checkout / Payment */
.checkout-page{background:var(--soft-bg);}
.booking-steps{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:32px; flex-wrap:wrap;}
.booking-step{display:flex; align-items:center; gap:10px; font-size:14px; font-weight:600; color:#8b93a1; flex:1; min-width:140px;}
.booking-step span{width:34px; height:34px; border-radius:50%; background:#e8ebf0; color:#6f7782; display:inline-flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; flex-shrink:0;}
.booking-step.active{color:var(--primary-one);}
.booking-step.active span{background:var(--primary-one); color:var(--white);}
.booking-step.completed{color:var(--dark-bg);}
.booking-step.completed span{background:rgba(10,197,26,0.15); color:var(--success-color);}
.checkout-card{background:var(--white); border-radius:18px; padding:30px; box-shadow:0 12px 30px rgba(17,24,39,0.08); border:1px solid #eceff3; margin-bottom:30px;}
.checkout-card h3{font-size:26px; font-weight:700; margin-bottom:8px; color:var(--dark-bg);}
.checkout-sub{color:#6f7782; font-size:15px; margin-bottom:24px;}
.payment-method-list{display:flex; flex-direction:column; gap:14px; margin-bottom:28px;}
.payment-method-item{display:block; margin:0; cursor:pointer;}
.payment-method-item input{position:absolute; opacity:0; pointer-events:none;}
.payment-method-box{display:flex; align-items:center; gap:16px; padding:18px 20px; border:1px solid #e8ebf0; border-radius:16px; background:#fff; transition:all 0.25s ease;}
.payment-method-icon{width:52px; height:52px; border-radius:14px; background:rgba(237,150,37,0.12); color:var(--secondary-color); display:inline-flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0;}
.payment-method-text strong{display:block; font-size:16px; color:var(--dark-bg); margin-bottom:3px;}
.payment-method-text small{display:block; font-size:13px; color:#6f7782;}
.payment-method-check{margin-left:auto; color:#d5dae1; font-size:20px;}
.payment-method-item input:checked + .payment-method-box{border-color:rgba(237,81,37,0.45); background:rgba(237,81,37,0.04); box-shadow:0 10px 24px rgba(237,81,37,0.1);}
.payment-method-item input:checked + .payment-method-box .payment-method-check{color:var(--primary-one);}
.checkout-actions{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;}
.checkout-summary{background:var(--white); border-radius:18px; padding:24px; box-shadow:0 12px 30px rgba(17,24,39,0.08); border:1px solid #eceff3; margin-bottom:30px; position:sticky; top:20px;}
.checkout-summary h4{font-size:22px; font-weight:700; margin-bottom:20px; color:var(--dark-bg);}
.checkout-car{display:flex; align-items:center; gap:14px; padding-bottom:18px; margin-bottom:18px; border-bottom:1px solid #eef1f5;}
.checkout-car img{width:72px; height:54px; object-fit:cover; border-radius:12px;}
.checkout-car strong{display:block; font-size:16px; color:var(--dark-bg);}
.checkout-car small{display:block; font-size:13px; color:#6f7782; margin-top:2px;}
.checkout-summary-list{list-style:none; margin:0 0 20px; padding:0;}
.checkout-summary-list li{display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:1px solid #f3f5f8; font-size:14px;}
.checkout-summary-list li:last-child{border-bottom:none;}
.checkout-summary-list span{color:#6f7782;}
.checkout-summary-list strong{color:var(--dark-bg); text-align:right;}
.checkout-total{display:flex; justify-content:space-between; align-items:center; padding-top:16px; border-top:1px solid #eef1f5;}
.checkout-total span{font-size:15px; color:#6f7782; font-weight:600;}
.checkout-total strong{font-size:28px; color:var(--primary-one); font-weight:700;}
.card-preview{background:linear-gradient(135deg,#1c1c1c 0%,#3a3a3a 100%); border-radius:18px; padding:24px; color:var(--white); margin-bottom:28px; min-height:190px; display:flex; flex-direction:column; justify-content:space-between; box-shadow:0 16px 40px rgba(17,24,39,0.2);}
.card-preview-top{display:flex; justify-content:space-between; align-items:center; font-size:22px; font-weight:800; letter-spacing:1px;}
.card-preview-number{font-size:24px; letter-spacing:3px; font-weight:600; margin:20px 0;}
.card-preview-bottom{display:flex; justify-content:space-between; gap:20px;}
.card-preview-bottom small{display:block; font-size:11px; color:rgba(255,255,255,0.65); margin-bottom:4px; text-transform:uppercase;}
.card-preview-bottom strong{font-size:15px; letter-spacing:1px;}
.payment-card-form label{font-size:14px; font-weight:600; color:var(--dark-bg); margin-bottom:8px;}
.checkout-secure-note{display:inline-flex; align-items:center; gap:8px; font-size:13px; color:#6f7782; margin-bottom:20px;}
.checkout-secure-note i{color:var(--success-color);}
.booking-success-card{text-align:center;}
.booking-success-card img{max-width:120px; margin-bottom:20px;}
.booking-success-card h2{font-size:30px; font-weight:700; color:var(--dark-bg); margin-bottom:12px;}
.booking-success-card p{color:#6f7782; font-size:16px; margin-bottom:0;}
.booking-ref-box{background:#fafbfc; border:1px dashed #d7dde5; border-radius:14px; padding:18px; margin:24px 0; text-align:center;}
.booking-ref-box span{display:block; font-size:13px; color:#6f7782; margin-bottom:6px;}
.booking-ref-box strong{font-size:24px; color:var(--primary-one); letter-spacing:1px;}

.payment-method-tag{display:inline-flex; align-items:center; gap:6px; font-size:13px; color:#6f7782; font-weight:600; white-space:nowrap;}
.payment-method-tag i{color:var(--secondary-color);}
.payment-history-scroll{
	overflow-x:auto;
	-webkit-overflow-scrolling:touch;
}
.payment-history-table{
	width:100%;
	table-layout:auto;
}
.payment-history-table .payment-booking-cell{
	min-width:0;
	max-width:280px;
}
.payment-history-table .payment-booking-cell > div{
	min-width:0;
}
.payment-history-table .payment-booking-cell strong,
.payment-history-table .payment-booking-cell span{
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.payment-history-table .payment-txn-id{
	display:block;
	font-size:11px;
	color:#9aa3ad;
	font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	letter-spacing:0.02em;
	margin-top:2px;
}
.payment-history-table .payment-date,
.payment-history-table .payment-amount,
.payment-history-table .payment-action{
	white-space:nowrap;
}
.payment-history-table td strong{font-weight:700; color:var(--dark-bg);}
.dashboard-page .col-lg-9{
	min-width:0;
}

.notifications-page-list{display:flex; flex-direction:column; gap:12px;}
.notification-page-item{display:flex; align-items:flex-start; gap:12px; padding:18px 20px; text-decoration:none; border:1px solid #eef1f5; border-radius:16px; background:#fff; transition:all 0.25s ease;}
.notification-page-item:hover{border-color:rgba(237,81,37,0.35); background:#fff8f3; box-shadow:0 8px 22px rgba(17,24,39,0.06);}
.notification-page-item.unread{background:rgba(237,150,37,0.06); border-color:rgba(237,150,37,0.2);}

.booking-detail-top{display:flex; align-items:flex-start; justify-content:space-between; gap:16px; margin-bottom:24px; flex-wrap:wrap;}
.booking-back-link{display:inline-flex; align-items:center; gap:8px; font-size:14px; font-weight:600; color:#6f7782; text-decoration:none; margin-bottom:10px;}
.booking-back-link:hover{color:var(--primary-one);}
.booking-detail-top h2{font-size:30px; font-weight:700; margin:0 0 6px; color:var(--dark-bg);}
.booking-detail-top p{margin:0; color:#6f7782; font-size:15px;}
.booking-detail-card{background:var(--white); border:1px solid #eceff3; border-radius:18px; padding:24px; box-shadow:0 12px 30px rgba(17,24,39,0.06); margin-bottom:24px;}
.booking-detail-card h4{font-size:20px; font-weight:700; margin-bottom:20px; color:var(--dark-bg);}
.booking-detail-grid{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px;}
.booking-detail-item{display:flex; align-items:flex-start; gap:14px; padding:16px; border-radius:14px; background:#fafbfc; border:1px solid #eef1f5;}
.booking-detail-item i{width:40px; height:40px; border-radius:12px; background:rgba(237,150,37,0.14); color:var(--secondary-color); display:inline-flex; align-items:center; justify-content:center; flex-shrink:0;}
.booking-detail-item span{display:block; font-size:13px; color:#6f7782; margin-bottom:4px;}
.booking-detail-item strong{display:block; font-size:15px; color:var(--dark-bg); line-height:1.4;}
.booking-driver-box{display:flex; align-items:center; gap:16px;}
.booking-driver-box img{width:72px; height:72px; border-radius:50%; object-fit:cover; border:3px solid rgba(237,150,37,0.35);}
.booking-driver-box strong{display:block; font-size:18px; color:var(--dark-bg); margin-bottom:4px;}
.booking-driver-box span{display:block; font-size:14px; color:#6f7782; margin-bottom:6px;}
.booking-driver-box .driver-contact{display:inline-flex; align-items:center; gap:8px; font-size:14px; font-weight:600; color:var(--primary-one); text-decoration:none; margin-bottom:8px;}
.booking-driver-box .driver-contact i{color:var(--secondary-color); font-size:13px;}
.booking-driver-box .driver-contact:hover{color:var(--dark-bg);}
.booking-driver-box small{display:block; font-size:13px; color:#8b93a1;}
.booking-timeline{list-style:none; margin:0; padding:0;}
.booking-timeline li{display:flex; gap:14px; padding-bottom:22px; position:relative;}
.booking-timeline li:last-child{padding-bottom:0;}
.booking-timeline li:not(:last-child):before{content:""; position:absolute; left:11px; top:24px; bottom:0; width:2px; background:#e8ebf0;}
.booking-timeline li span{width:24px; height:24px; border-radius:50%; background:#e8ebf0; border:3px solid #fff; box-shadow:0 0 0 1px #e8ebf0; flex-shrink:0; position:relative; z-index:1;}
.booking-timeline li.completed span{background:rgba(10,197,26,0.15); box-shadow:0 0 0 1px rgba(10,197,26,0.25);}
.booking-timeline li.active span{background:rgba(237,81,37,0.15); box-shadow:0 0 0 1px rgba(237,81,37,0.35);}
.booking-timeline li strong{display:block; font-size:15px; color:var(--dark-bg); margin-bottom:3px;}
.booking-timeline li small{font-size:13px; color:#6f7782;}
.booking-detail-summary .booking-detail-car-img{width:100%; height:180px; object-fit:cover; border-radius:14px; margin-bottom:18px;}
.booking-detail-payment{display:flex; align-items:center; gap:8px; font-size:14px; color:#6f7782; margin-top:16px; padding-top:16px; border-top:1px solid #eef1f5;}
.booking-detail-payment i{color:var(--secondary-color);}

.number span {cursor:pointer; }
.number{display: flex; gap: 5px;}
.number .minus, .number .plus{
background:#f2f2f2;
border-radius:4px;
padding:5px 15px;
border:1px solid rgba(4, 0, 23, 0.1);
display: inline-block;
vertical-align: middle;
text-align: center;
font-size: 24px;
}
.number input{
width: 100px;
text-align: center;
font-size: 20px;
border:1px solid rgba(4, 0, 23, 0.1);
border-radius:4px;
vertical-align: middle;
}

.totalpay{font-size:16px; border-top: 1px solid #fff; padding-top: 15px;}
.totalpay strong{font-size: 30px; color: var(--black); display: block;}



.helpbox{background: #f5f5f5; border-radius: 5px; padding: 30px;}
.helpbox p{font-size: 14px;}
.helpbox .phone{margin-top: 10px; color: #555;}
.helpbox .phone i{color:var(--secondary-color); margin-right: 7px;}



.carinfowrap{margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 25px;
    background: #f9f6f4;}
.carinfowrap h2{font-size: 30px; font-weight: 700; line-height: 36px;}
.dflightcom{display: flex; gap: 15px; align-items: center;}
.dflightcom img{width:50px; border: 1px solid #ddd;  border-radius: 50%;}
.dflightcom p{margin-bottom: 0; font-size: 14px;}

.flightmoveinfo{border-top: 1px solid #eee; padding-top: 30px; margin-top: 30px;}

.ftakeinfo{display: flex; align-items: center; gap: 30px;}
.takeicon{width: 60px; height: 60px; background: #eee; border-radius: 50%; border: 2px solid #fff; box-shadow:0 0 15px rgba(0, 0, 0, 0.1); text-align: center; font-size: 24px; color: #777; line-height: 55px;}
.ftakeinfo h5{font-weight: var(--font-bold); color: var(--primary-one); margin-bottom: 0;}
.ftakeinfo strong{color: var(--secondary-color);}
.ftakeinfo p{margin-bottom: 0;}
.fdate{font-weight: var(--font-bold); color: var(--primary-one); margin-top: 10px;}


.economytxt{background: #eee; padding: 10px; text-align: center; border-radius: 5px; margin: 30px;}
.flightincl li{margin-bottom: 10px;}
.flightincl li i{width: 24px; color: var(--secondary-color);}

.carprices{font-size: 36px; font-weight: var(--font-bold); margin-bottom: 20px; padding-bottom: 20px; display:flex; align-items: baseline; border-bottom:1px solid  #eee;}
.carprices span{display: block; font-size: 18px; font-weight: var(--font-reg); color:var(--primary-one)}

.galleryview img{border-radius:20px}
.galleryview .image-popup {
	display: block;
	margin: 0;
	cursor: zoom-in;
}
.galleryview .image-popup img {
	width: 100%;
	display: block;
}


/********* Contact Page *********/
.submitquery label{font-size: var(--primary-size); font-weight: var(--font-bold); display: block; margin-bottom: 5px;}
.submitquery label i{font-size: 14px;}
.submitquery h3{font-size: var(--heading-4); margin-bottom: 30px; font-weight: var(--font-bold); color: var(--primary-text-color);}


.submitquery textarea{height: 200px;}

.submitquery .btn-primary:hover{background: var(--black); color: var(--white);}

.clrorange{color: var(--primary-one);}
.clrblue{color: #00b0f1;}
.clrgreen{color: #a4f100;}
.clrpurple{color: #7700f1;}
.clryellow{color: #f1c100;}

.mapbox{padding: 20px;box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px; border-radius: 10px;}
.mapbox iframe{display: block;}

.gmaps h5{font-weight: var(--font-bold); font-size: var(--heading-3); color: var(--primary-text-color); margin-top: 10px; margin-bottom: 30px;}

.ctinfobox{border-radius: 15px; box-shadow: 0 0 30px rgba(0,0,0,0.1); padding: 30px 35px; margin-top: 30px;}
.tptitle{display: flex; margin-bottom: 15px;}
.tptitle h6{font-size: var(--primary-size); color: var(--primary-one); font-weight: var(--font-bold);}
.tptitle h6 span{display: block; font-size: 14px; color: var(--primary-text-color);}
.tptitle i{font-size: var(--heading-5); margin-right: 15px;}
.ctinfobox p{margin-bottom: 0;}


.accordion-button:focus{box-shadow: none;}
.accordion-button{font-weight: var(--font-bold);}
.accordion-button:not(.collapsed){background-color: var(--primary-one); color: var(--white);}
.accordion-button:not(.collapsed)::after{background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-position: center;}


/************************************************
           == FAQs css==
*************************************************/
#faqs {
	background: #f7f7f7;
}
.faqs .panel-default>.panel-heading {
	background: none;
	border: none;
	padding: 0;
}
.faqs h4 a {
	padding: 10px 55px 10px 15px;
	display: block;
	background:var(--primary-one);
	color: #fff;
	font-size: 16px;
	position: relative;
}
.faq-item {
	background:#fff2f2;
	border-radius: 15px;
	margin-bottom: 16px;
	overflow: hidden;
}
.faq-item:last-child {
	margin-bottom: 0;
}
.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 24px;
	font-size:24px;
	font-weight: var(--font-med);
	color: #333e5c;
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
}
.faq-question:hover {
	background: rgba(0, 0, 0, 0.02);
}
.faq-icon {
	font-size: 24px;
	color: #333e5c;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 12px;
}
.faq-item.active .faq-icon {
	transform: rotate(180deg);
}
.faq-answer {
	border-top: 1px solid #eee;
}
.faq-answer p {
	margin: 0;
	padding: 20px 24px;
	font-size:18px;
	color: #555;
	line-height: 1.6;
}



/*---------------------------------------
   Mobile Responsive styles              
-----------------------------------------*/
@media (max-width: 1024px) {
.custom-navbar .nav li a {
	padding: 10px 15px;
}
.custom-navbar .navbar-brand {
	font-size: 24px;
	line-height: 24px;
}
.navbar-right {
	margin-top: 10px;
}
.stcontent, .fullimg {
	float: none;
	width: auto;
}
.fullimg {
	height: 350px;
	margin: 30px 30px 0 30px;
}
}
@media (max-width: 990px) {
h1 {
	font-size: 52px;
}
.is-sticky .navbar-brand {
	display: none;
}
.custom-navbar .nav li a {
	padding: 0px 15px;
}
.custom-navbar .nav li .calltxt {
	margin-top: 0;
	padding: 7px 15px
}
.is-sticky .custom-navbar .nav li .calltxt {
	margin-top: 0;
}
.navbar-light .navbar-toggler{display: block;}
.navbar-header {
	float: none;
	text-align: center;
}
.navbar-brand {
	float: none;
	display: inline-block;
}
.custom-navbar {
	border-bottom: 1px solid rgba(255,255,255,0.3);
	padding-bottom: 30px;
}
.is-sticky .custom-navbar {
	padding-bottom: 10px;
}
.is-sticky .custom-navbar .nav li a {
	padding: 10px 15px;
}
.pageTitle {
	padding-top: 170px;
}
.image-popup {
	display: block;
	margin: 30px 0;
}
.servicesbox {
	padding: 60px 30px;
}
.servicesbox h3 {
	font-size: 30px;
}
#counter .counter-number {
	font-size: 48px;
}
#service .service-thumb-first, #service .service-thumb-second {
	margin-bottom: 32px;
}
ul.orderlist li {
	float: none;
	width: auto;
}
#team .team-thumb {
	margin-bottom: 30px;
}
.postimg {
	margin-top: 30px;
	margin-bottom: 30px
}
.newsletter, #blog, #work {
	padding: 50px 15px;
}
.taglinewrap {
	padding: 50px 15px;
}
}
 @media (max-width: 880px) {
.portfolio-grid li .itemtitle p {
	font-size: 14px;
	line-height: 22px;
}
.portfolio-grid li .itemtitle {
	padding: 10px;
}
}
 @media (max-width: 768px) {
h1 {
	font-size: 48px;
}
#counter .counter-item {
	margin-top: 28px;
	margin-bottom: 28px;
}
}
 @media (max-width: 767px) {
.navbar-header {
	text-align: left;
}
.custom-navbar {
	border-bottom: 0;
	padding-bottom: 0;
}
.sticky-wrapper, .navbar-collapse.in {
	z-index: 100000;
}
.is-sticky .navbar-collapse.in {
	background: #eee;
}
.is-sticky .navbar-brand {
	display: block;
}
.custom-navbar .navbar-brand {
	line-height: 15px;
}
.custom-navbar .nav li .calltxt {
	border-left: 0;
}
.slide-text {
	margin-top: 80px;
}
#home {
	min-height: 500px;
}
.bformBox {
	margin-top: 15px;
}
.videobox {
	margin-top: 40px;
}
.circleList li {
	margin-top: 30px;
}
.vehiclesList ul li h3, .vehiclesList ul li .subtitle, .vehiclesList ul li .carPrice {
	text-align: center;
}
.vehiclesList ul li .subtitle:after {
	left: 50%;
	margin-left: -20px;
}
.pageTitle {
	padding-top: 90px;
}
.margin-left80 {
	margin-left: 0;
}
#about .about-desc {
	margin-bottom: 32px;
}
#address .address-phone {
	margin-top: 22px;
	margin-bottom: 22px;
}
#team .team-thumb {
	margin-bottom: 30px;
}
.is-sticky .custom-navbar .nav li a {
	line-height: 30px;
}
#service .service-thumb {
}
#counter .counter-number {
	font-size: 48px;
}
.parallax-section, #about, #packages {
	padding: 40px 15px;
}
.videowraper, .howitwrap {
	padding: 50px 15px;
}
.howlist li .iconcircle {
	margin-bottom: 50px;
}
}
 @media (max-width: 580px) {
h1 {
	font-size: 29px
}
h2 {
	font-size: 24px;
	line-height: 42px;
}
h3 {
	font-size: 12px;
	letter-spacing: 2px;
}
}
 @media (max-width: 350px) {
#about .team-wrapper .team-desc {
	padding-top: 14em;
}
}

/* Car Rental Home Refresh */
.car-hero {
	background: linear-gradient(rgba(12, 22, 48, 0.75), rgba(12, 22, 48, 0.75)), url(../images/home-bg.jpg) no-repeat center;
	background-size: cover;
	padding: 90px 0 70px;
}
.car-search-box {
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	background: var(--white);
	padding: 24px 26px;
	margin-top: -100px;
	position: relative;
	z-index: 2;
	overflow: visible;
}
.home-search-form {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
	gap: 12px;
}
.home-search-form__field {
	flex: 1 1 0;
	min-width: 0;
}
.home-search-form__field--pickup,
.home-search-form__field--dropoff {
	flex: 1.15 1 0;
}
.home-search-form__field--date {
	flex: 0.95 1 0;
}
.home-search-form__field--type {
	flex: 0.8 1 0;
}
.home-search-form__field label {
	color: #333;
	text-align: left;
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 6px;
	white-space: nowrap;
}
.home-search-form__control,
.home-search-form .form-control {
	height: 46px;
	border-radius: 10px;
	font-size: 14px;
}
.home-search-form__submit {
	flex: 0 0 auto;
}
.home-search-form__btn {
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 12px;
	background: var(--primary-one);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.home-search-form__btn i {
	font-size: 16px;
	line-height: 1;
	position: static;
	width: auto;
	height: auto;
	border-radius: 0;
	background: transparent;
	transform: none;
}
.home-search-form__btn:hover {
	background: #d6451f;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(237, 81, 37, 0.28);
}
.home-search-form__btn:before {
	display: none;
}
@media (max-width: 1199px) {
	.home-search-form {
		flex-wrap: wrap;
	}
	.home-search-form__field,
	.home-search-form__field--pickup,
	.home-search-form__field--dropoff,
	.home-search-form__field--date,
	.home-search-form__field--type {
		flex: 1 1 calc(50% - 6px);
		min-width: calc(50% - 6px);
	}
	.home-search-form__submit {
		flex: 0 0 100%;
		display: flex;
		justify-content: flex-end;
	}
}
@media (max-width: 575px) {
	.home-search-form__field,
	.home-search-form__field--pickup,
	.home-search-form__field--dropoff,
	.home-search-form__field--date,
	.home-search-form__field--type {
		flex: 1 1 100%;
		min-width: 100%;
	}
	.car-search-box {
		padding: 18px 16px;
		margin: 0 20px;
		margin-top: 30px;
	}
}
.car-icon-grid .col-lg-3,
.car-icon-grid .col-lg-4,
.car-make-grid .col-lg-2 {
	margin-bottom: 24px;
}
.car-icon-card {
	background: #fff;
	border-radius: 15px;
	padding: 25px 20px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
	display:block;
	border: 1px solid #eee;
}
.car-icon-card:hover {
	background: var(--secondary-color);
}

.car-icon-card h4 {
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 10px;
	font-weight: 700;
	color: var(--dark-bg);
}
.car-icon-card p{margin-bottom: 0;}

.car-icon-card .icon {
	width:100px;
	height:100px;
	border-radius: 50%;
	background: #fff;
	color: var(--primary-one);
	margin: 0 auto 16px;
	line-height: 100px;
	font-size: 28px;
}
.car-modern-card {
	background: var(--white);
	border: 1px solid #eceff3;
	border-radius: 22px;
	overflow: hidden;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	transition: all 0.35s ease;
	position: relative;
	cursor: pointer;
	z-index: 1;
}
.car-modern-card img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	-webkit-transition: -webkit-transform 0.5s ease;
	transition: transform 0.5s ease;
	display: block;
}
.car-modern-content {
	padding: 24px;
	position: relative;
	background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}
.car-modern-content h4 {
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 14px;
	font-weight: 700;
	color: var(--dark-bg);
}
.car-specs {
	margin-bottom: 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid #ebeef3;
	display:flex;
	gap: 12px;
	justify-content: space-between;
}
.car-spec-item {
	gap: 10px;
	background: #fff;
	color: #6f7782;
	font-size: 14px;
	font-weight: 500;
	    text-align: center;
}
.car-spec-item img {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	    object-fit: contain;
		margin-bottom: 10px;
}
.car-spec-text {
	line-height: 1.3;
}
.price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.price-row span {
	font-size: 24px;
	font-weight: 700;
	color: var(--black);
	line-height: 1;
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
}
.price-row span small {
	font-size: 14px;
	font-weight: 500;
	color: #7d8590;
}
.car-price-action {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 14px;
}
.car-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
}
.car-price__amount {
	font-family: var(--font-heading);
	font-size: 26px;
	font-weight: 700;
	color: var(--primary-text-color);
	line-height: 1;
}
.car-price__unit {
	font-size: 14px;
	font-weight: 500;
	color: #7d8590;
}
.car-rent-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 12px 20px;
	border-radius: 50px;
	background: var(--primary-one);
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.3;
	box-shadow: 0 8px 20px rgba(237, 81, 37, 0.25);
	transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.car-modern-card:hover .car-rent-btn {
	background: var(--dark-bg);
	box-shadow: 0 10px 24px rgba(45, 46, 47, 0.2);
}
.car-modern-card:hover {
	border-color: rgba(248, 185, 58, 0.45);
}
.car-modern-card:hover img {
	-webkit-transform: scale(1.06);
	transform: scale(1.06);
}
.make-card {
	background: #fff;
	border: 1px solid #eef0f5;
	border-radius: 12px;
	text-align: center;
	padding: 20px 10px;
	height: 100%;
	transition: all 0.3s ease;
}
.make-card:hover {
	border-color: var(--secondary-color);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}
.make-card img {
	height: 38px;
	width: auto;
	margin-bottom: 12px;
}
.make-card h5 {
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: 700;
}
.make-card p {
	margin: 0;
	font-size: 14px;
	color: #777;
}
#blog .subposts .date {
	position: static;
	margin-top: 12px;
	border-radius: 6px;
	padding: 8px 14px;
}
@media (max-width: 767px) {
	.car-modern-card img {
		height: 210px;
	}
	.car-spec-item img{height: 32px;}
	.car-modern-content {
		padding: 20px;
	}
	.car-modern-content h4 {
		font-size: 18px;
	}
	.car-specs {
		grid-template-columns: 1fr;
	}
	.car-price__amount {
		font-size: 24px;
	}
	#team .thumb-image {
		height: 345px;
	}
	#team .team-thumb h4 {
		font-size: 24px;
	}
	#team .team-thumb h5 {
		font-size: 16px;
	}
	#team .team-exp-badge {
		margin-top: 8px;
	}
	.dash-welcome-card {
		padding: 22px;
	}
	.dash-welcome-text h2 {
		font-size: 22px;
	}
	.dash-bookings-card {
		padding: 20px;
	}
	.booking-car-cell {
		min-width: 180px;
	}
	.wt-card-right {
		font-size: 34px;
	}
	.header-wrap .header-nav-actions {
		padding-top: 12px;
	}
	.header-wrap .user-name,
	.header-wrap .lang-label {
		display: none;
	}
	.header-wrap .user-toggle,
	.header-wrap .lang-toggle {
		padding: 6px;
	}
	.header-wrap .navbar .dropdown-menu.header-dropdown,
	.header-wrap .navbar .dropdown-menu.header-dropdown.notify-menu {
		min-width: 280px;
	}
	.booking-steps{flex-direction:column; align-items:flex-start;}
	.booking-step{min-width:100%;}
	.checkout-card{padding:22px;}
	.checkout-actions .btn{min-width:100%; justify-content:center;}
	.booking-detail-grid{grid-template-columns:1fr;}
	.booking-detail-top h2{font-size:24px;}
}

/* Vendor Dashboard */
.vendor-page {
	background: #eef1f6;
}
.vendor-container-fluid {
	padding-left: 30px;
	padding-right: 30px;
}
@media (max-width: 767px) {
	.vendor-container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}
}
.vendor-pageheader {
	position: relative;
	padding:20px 0;
	background: linear-gradient(135deg, #f8f9fb 0%, #eef2f7 100%);
	margin: 0;
	border-radius: 0;
}
.vendor-pageheader::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 56px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-one), var(--secondary-color));
	border-radius: 3px 3px 0 0;
}
.vendor-pageheader h1 {
	text-align: center;
	font-size: 32px;
	color: var(--dark-bg);
	margin-bottom: 0;
	font-weight: var(--font-bold);
}
.vendor-pageheader p {
	text-align: center;
	margin-bottom: 0;
	color: #6f7782;
	font-size: 15px;
	margin-top: 8px;
}
.vendor-page .vendor-panel {
	background: #fff;
	border: 1px solid #e8ecf1;
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}
.vendor-page .vendor-panel h3 {
	color: var(--dark-bg);
}
.vendor-page .vendor-panel .authorDetail p {
	color: #6f7782;
}
.vendor-page .vendor-panel .authorDetail p i {
	color: var(--primary-one);
}
.vendor-page .vendor-panel .editDetails {
	border-top-color: #eef1f5;
}
.vendor-page .vendor-panel .editDetails ul li a {
	color: #4b5563;
}
.vendor-page .vendor-panel .editDetails ul li a i {
	color: var(--primary-one);
}
.vendor-page .vendor-panel .editDetails ul li a:hover,
.vendor-page .vendor-panel .editDetails ul li a.active {
	background: rgba(237, 81, 37, 0.08);
	color: var(--primary-one);
}
.vendor-page .vendor-panel .editDetails ul li a.active i {
	color: var(--primary-one);
}
.vendor-page .vendor-panel .profile-radius {
	border-color: rgba(237, 81, 37, 0.3);
	background: #fafbfc;
}
.vendor-page .vendor-welcome-card {
	background: #fff;
	border: 1px solid #e8ecf1;
	border-left: 4px solid var(--primary-one);
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}
.vendor-page .vendor-welcome-card .dash-welcome-text h2 {
	color: var(--dark-bg);
}
.vendor-page .vendor-welcome-card .dash-welcome-text p {
	color: #6f7782;
}
.vendor-page .vendor-welcome-card .dash-welcome-text strong {
	color: var(--primary-one);
}
.vendor-page .dash-bookings-card,
.vendor-page .vendor-page-card {
	border-color: #e8ecf1;
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}
.vendor-page .account-main {
	border-bottom-color: var(--primary-one);
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}
.vendor-icon-btn {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e0e4ea;
	border-radius: 10px;
	background: #fff;
	color: #6b7280;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.2s ease;
	padding: 0;
}
.vendor-icon-btn:hover {
	border-color: var(--primary-one);
	color: var(--primary-one);
	background: rgba(237, 81, 37, 0.06);
}
.vendor-icon-btn-danger:hover {
	border-color: #dc3545;
	color: #dc3545;
	background: rgba(220, 53, 69, 0.06);
}
.vendor-icon-btn-view:hover {
	border-color: #3b82f6;
	color: #3b82f6;
	background: rgba(59, 130, 246, 0.06);
}
.vendor-action-btns {
	display: inline-flex;
	gap: 6px;
	align-items: center;
	flex-wrap: wrap;
}
.vendor-tag {
	background: rgba(237, 81, 37, 0.18);
	color: #ff8a65;
}
.vendor-menu .vendor-menu-label {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #aab0b8;
	font-weight: 700;
	padding: 14px 18px 6px;
	margin-top: 4px;
}
.vendor-menu a.danger-link {
	color: #ff6b6b !important;
}
.vendor-menu a.danger-link:hover {
	background: rgba(255, 107, 107, 0.12) !important;
	color: #ff8787 !important;
}
.vendor-kyc-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 16px 20px;
	border-radius: 14px;
	margin-bottom: 24px;
	border: 1px solid rgba(237, 150, 37, 0.35);
	background: linear-gradient(135deg, rgba(237, 150, 37, 0.12), rgba(237, 81, 37, 0.08));
}
.vendor-kyc-banner .btn,
.vendor-page .dash-welcome-card .btn,
.vendor-page .sortby .btn {
	flex-shrink: 0;
	align-self: center;
}
.vendor-page .btn.w-100 {
	justify-content: center;
}
.vendor-profile-image-preview {
	width: 140px;
	height: 140px;
	border-radius: 16px;
	overflow: hidden;
	border: 3px solid rgba(237, 81, 37, 0.25);
	background: #f8f9fb;
	margin: 0 auto;
}
.vendor-profile-image-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.vendor-profile-image-preview-round {
	border-radius: 50%;
}
.vendor-image-upload-box {
	border: 2px dashed #d5d9e0;
	border-radius: 14px;
	padding: 28px 24px;
	text-align: center;
	background: #fafbfc;
	transition: border-color 0.2s ease;
	position: relative;
}
.vendor-image-upload-box:hover {
	border-color: var(--primary-one);
}
.vendor-image-upload-box i {
	font-size: 32px;
	color: var(--primary-one);
	margin-bottom: 10px;
	display: block;
}
.vendor-image-upload-box strong {
	display: block;
	font-size: 15px;
	color: var(--dark-bg);
	margin-bottom: 6px;
}
.vendor-image-upload-box p {
	font-size: 13px;
	color: #888;
	margin-bottom: 14px;
}
.vendor-image-input {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
	overflow: hidden;
}
.vendor-desc-textarea {
	min-height: 180px;
	resize: vertical;
	line-height: 1.6;
}
.vendor-kyc-banner.verified {
	border-color: rgba(10, 197, 26, 0.35);
	background: linear-gradient(135deg, rgba(10, 197, 26, 0.1), rgba(10, 197, 26, 0.05));
}
.vendor-kyc-banner p {
	margin: 0;
	font-size: 14px;
	color: #555;
}
.vendor-kyc-banner strong {
	color: var(--dark-bg);
}
.vendor-page-card {
	background: #fff;
	border: 1px solid #eceff3;
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
	margin-bottom: 24px;
}
.vendor-page-card h3 {
	font-size: 22px;
	margin-bottom: 6px;
	font-weight: var(--font-bold);
	color: var(--dark-bg);
}
.vendor-fleet-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}
.vendor-fleet-card {
	border: 1px solid #eceff3;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vendor-fleet-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.1);
}
.vendor-fleet-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}
.vendor-fleet-card-body {
	padding: 18px;
}
.vendor-fleet-card-body h4 {
	font-size: 17px;
	margin-bottom: 8px;
	font-weight: 700;
}
.vendor-fleet-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 12px;
	color: #7d8590;
	margin-bottom: 12px;
}
.vendor-fleet-meta span i {
	color: var(--primary-one);
	margin-right: 4px;
}
.vendor-fleet-price {
	font-size: 20px;
	font-weight: 800;
	color: var(--primary-one);
}
.vendor-fleet-price small {
	font-size: 13px;
	font-weight: 500;
	color: #888;
}
.vendor-page .vendor-panel .editDetails ul li a.danger-link {
	color: #dc3545 !important;
}
.vendor-page .vendor-panel .editDetails ul li a.danger-link i {
	color: #dc3545;
}
.vendor-page .vendor-panel .editDetails ul li a.danger-link:hover {
	background: rgba(220, 53, 69, 0.08) !important;
	color: #dc3545 !important;
}
.vendor-fleet-actions {
	display: flex;
	gap: 8px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #f1f3f6;
}
.vendor-driver-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px;
	border: 1px solid #eceff3;
	border-radius: 14px;
	margin-bottom: 14px;
	background: #fafbfc;
}
.vendor-driver-card img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(237, 81, 37, 0.2);
}
.vendor-driver-info h5 {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
}
.vendor-driver-info p {
	margin: 0;
	font-size: 13px;
	color: #777;
}
.vendor-review-item {
	padding: 20px 0;
	border-bottom: 1px solid #f1f3f6;
}
.vendor-review-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.vendor-review-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}
.vendor-review-user {
	display: flex;
	align-items: center;
	gap: 12px;
}
.vendor-review-user img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
}
.vendor-stars {
	color: var(--secondary-color);
	font-size: 13px;
}
.vendor-stars i {
	margin-right: 2px;
}
.vendor-wallet-hero {
	background: linear-gradient(135deg, #1c1c1c 0%, #2d2e2f 100%);
	border-radius: 18px;
	padding: 32px;
	color: #fff;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}
.vendor-wallet-hero h2 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 8px;
}
.vendor-wallet-balance {
	font-size: 42px;
	font-weight: 800;
	color: var(--secondary-color);
	line-height: 1;
}
.vendor-wallet-stats {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}
.vendor-wallet-stat span {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.vendor-wallet-stat strong {
	font-size: 20px;
	color: #fff;
}
.kyc-steps {
	display: flex;
	gap: 0;
	margin-bottom: 32px;
	flex-wrap: wrap;
}
.kyc-step {
	flex: 1;
	min-width: 140px;
	text-align: center;
	position: relative;
	padding: 0 12px 20px;
}
.kyc-step::after {
	content: "";
	position: absolute;
	top: 20px;
	left: calc(50% + 24px);
	width: calc(100% - 48px);
	height: 2px;
	background: #e5e7eb;
}
.kyc-step:last-child::after {
	display: none;
}
.kyc-step.done::after {
	background: var(--primary-one);
}
.kyc-step-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e5e7eb;
	color: #888;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
}
.kyc-step.done .kyc-step-icon {
	background: var(--primary-one);
	color: #fff;
}
.kyc-step.active .kyc-step-icon {
	background: var(--secondary-color);
	color: #fff;
	box-shadow: 0 0 0 4px rgba(237, 150, 37, 0.25);
}
.kyc-step span {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #888;
}
.kyc-step.done span,
.kyc-step.active span {
	color: var(--dark-bg);
}
.kyc-upload-box {
	border: 2px dashed #d5d9e0;
	border-radius: 14px;
	padding: 32px;
	text-align: center;
	background: #fafbfc;
	transition: border-color 0.2s ease;
}
.kyc-upload-box:hover {
	border-color: var(--primary-one);
}
.kyc-upload-box i {
	font-size: 36px;
	color: var(--primary-one);
	margin-bottom: 12px;
}
.vendor-2fa-option {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 20px;
	border: 1px solid #eceff3;
	border-radius: 14px;
	margin-bottom: 14px;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.vendor-2fa-option:hover,
.vendor-2fa-option.active {
	border-color: var(--primary-one);
	box-shadow: 0 0 0 3px rgba(237, 81, 37, 0.1);
}
.vendor-2fa-option .fa-icon-wrap {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(237, 81, 37, 0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-one);
	font-size: 20px;
	flex-shrink: 0;
}
.vendor-delete-zone {
	border: 2px solid rgba(220, 53, 69, 0.3);
	border-radius: 16px;
	padding: 28px;
	background: rgba(220, 53, 69, 0.04);
}
.vendor-delete-zone h4 {
	color: #dc3545;
	margin-bottom: 10px;
}
.vendor-delete-zone p {
	color: #666;
	font-size: 14px;
	margin-bottom: 20px;
}
.status-pending {
	background: rgba(237, 150, 37, 0.14);
	color: var(--secondary-color);
}
.status-cancelled {
	background: rgba(220, 53, 69, 0.12);
	color: #dc3545;
}
.status-available {
	background: rgba(10, 197, 26, 0.12);
	color: var(--success-color);
}
.status-rented {
	background: rgba(237, 81, 37, 0.12);
	color: var(--primary-one);
}
.status-maintenance {
	background: rgba(108, 117, 125, 0.15);
	color: #6c757d;
}
@media (max-width: 767px) {
	.vendor-pageheader {
		padding: 70px 0;
		margin: 0 15px;
		border-radius: 14px;
	}
	.vendor-pageheader h1 {
		font-size: 26px;
	}
	.vendor-wallet-hero {
		padding: 24px;
	}
	.vendor-wallet-balance {
		font-size: 32px;
	}
	.kyc-step::after {
		display: none;
	}
	.pageheader{padding: 30px 0;}
	.pageheader h1{font-size: 26px;}
	.innerpagewrap{padding: 30px 0;}
}

/* =======================
   Blog — Modern Listing & Detail
======================= */
.blog-page {
	padding-bottom: 20px;
}
.pageheader .toptag {
	text-align: center;
	color: var(--secondary-color);
	font-size: 14px;
	font-weight: var(--font-bold);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
}

.blog-section-head {
	margin-bottom: 28px;
}
.blog-section-head h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: var(--font-bold);
	color: var(--primary-text-color);
	margin-bottom: 6px;
}
.blog-section-head p {
	color: #6b7280;
	margin: 0;
	font-size: 15px;
}

/* Blog card */
.blog-card {
	background: var(--white);
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid #ececec;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 45px rgba(237, 81, 37, 0.14);
	border-color: rgba(237, 81, 37, 0.35);
}
.blog-card__media {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}
.blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__media img {
	transform: scale(1.06);
}
.blog-card__category {
	position: absolute;
	left: 16px;
	top: 16px;
	background: var(--primary-one);
	color: var(--white);
	font-size: 12px;
	font-weight: var(--font-semi);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 6px 14px;
	border-radius: 50px;
	z-index: 2;
}
.blog-card__body {
	padding: 24px 26px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	font-size: 13px;
	color: #6b7280;
	margin-bottom: 14px;
}
.blog-card__meta i {
	color: var(--primary-one);
	margin-right: 5px;
}
.blog-card__title {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: var(--font-bold);
	line-height: 1.35;
	margin-bottom: 12px;
}
.blog-card__title a {
	color: var(--primary-text-color);
	transition: color 0.25s ease;
}
.blog-card__title a:hover {
	color: var(--primary-one);
}
.blog-card__excerpt {
	font-size: 15px;
	line-height: 1.65;
	color: #5f6368;
	margin-bottom: 18px;
	flex: 1;
}
.blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: var(--font-semi);
	color: var(--primary-one);
	margin-top: auto;
}
.blog-card__link i {
	font-size: 12px;
	transition: transform 0.25s ease;
}
.blog-card__link:hover {
	color: var(--secondary-color);
}
.blog-card__link:hover i {
	transform: translateX(4px);
}

/* Featured card on listing */
.blog-featured-wrap .blog-card--featured {
	flex-direction: row;
	min-height: 340px;
}
.blog-featured-wrap .blog-card--featured .blog-card__media {
	flex: 0 0 52%;
	aspect-ratio: auto;
	min-height: 340px;
}
.blog-featured-wrap .blog-card--featured .blog-card__body {
	padding: 36px 40px;
	justify-content: center;
}
.blog-featured-wrap .blog-card--featured .blog-card__title {
	font-size: 30px;
}
.blog-featured-wrap .blog-card--featured .blog-card__excerpt {
	font-size: 16px;
}

/* Empty state */
.blog-empty {
	text-align: center;
	padding: 70px 30px;
	background: var(--soft-bg);
	border-radius: 22px;
	border: 1px dashed #ddd;
}
.blog-empty__icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--primary-five-light);
	color: var(--primary-one);
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.blog-empty h3 {
	font-family: var(--font-heading);
	margin-bottom: 10px;
}
.blog-empty p {
	color: #6b7280;
	margin-bottom: 24px;
}

/* Article hero */
.blog-article-hero {
	position: relative;
	min-height:600px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
}
.blog-article-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 100%);
}
.blog-article-hero__content {
	position: relative;
	z-index: 2;
	padding: 50px 15px 55px;
	color: var(--white);
}
.blog-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 18px;
	opacity: 0.9;
}
.blog-breadcrumb a {
	color: var(--white);
}
.blog-breadcrumb a:hover {
	color: var(--secondary-color);
}
.blog-breadcrumb span:last-child {
	opacity: 0.75;
}
.blog-article-hero__category {
	display: inline-block;
	background: var(--primary-one);
	color: var(--white);
	font-size: 12px;
	font-weight: var(--font-semi);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 16px;
}
.blog-article-hero h1 {
	font-family: var(--font-heading);
	font-size: clamp(28px, 4vw, 44px);
	font-weight: var(--font-bold);
	line-height: 1.2;
	margin-bottom: 18px;
	color: var(--white);
	max-width: 820px;
}
.blog-article-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	font-size: 14px;
	opacity: 0.92;
}
.blog-article-hero__meta i {
	margin-right: 6px;
	color: var(--secondary-color);
}

/* Article body */
.blog-article-page {
	padding-bottom: 20px;
}
.blog-article {
	background: var(--white);
	border-radius: 22px;
	padding: 36px 40px;
	border: 1px solid #ececec;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
.blog-article__lead {
	font-size: 20px;
	line-height: 1.7;
	color: #374151;
	font-weight: var(--font-med);
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid #eee;
}
.blog-article__content {
	font-size: 16px;
	line-height: 1.85;
	color: #4b5563;
}
.blog-article__content p {
	margin-bottom: 1.25em;
}
.blog-article__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid #eee;
}

/* Sidebar */
.blog-sidebar {
	position: sticky;
	top: 100px;
}
.blog-sidebar__card {
	background: var(--white);
	border-radius: 18px;
	padding: 24px;
	border: 1px solid #ececec;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
	margin-bottom: 24px;
}
.blog-sidebar__title {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: var(--font-bold);
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--primary-five-light);
}
.blog-sidebar__cta {
	text-align: center;
	background: linear-gradient(145deg, var(--primary-five-light) 0%, #fff 100%);
	border-color: rgba(237, 81, 37, 0.15);
}
.blog-sidebar__cta-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: var(--primary-one);
	color: var(--white);
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.blog-sidebar__cta h4 {
	font-family: var(--font-heading);
	font-size: 18px;
	margin-bottom: 10px;
}
.blog-sidebar__cta p {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 18px;
	line-height: 1.6;
}
.blog-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-sidebar__list li + li {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #f0f0f0;
}
.blog-sidebar__post {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}
.blog-sidebar__post:hover strong {
	color: var(--primary-one);
}
.blog-sidebar__thumb {
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	border-radius: 12px;
	overflow: hidden;
}
.blog-sidebar__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-sidebar__post-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.blog-sidebar__post-text strong {
	font-size: 14px;
	font-weight: var(--font-semi);
	color: var(--primary-text-color);
	line-height: 1.4;
	transition: color 0.25s ease;
}
.blog-sidebar__post-text small {
	font-size: 12px;
	color: #9ca3af;
}

@media (max-width: 991px) {
	.blog-featured-wrap .blog-card--featured {
		flex-direction: column;
		min-height: auto;
	}
	.blog-featured-wrap .blog-card--featured .blog-card__media {
		flex: none;
		min-height: 240px;
		aspect-ratio: 16 / 10;
	}
	.blog-featured-wrap .blog-card--featured .blog-card__body {
		padding: 24px 26px 28px;
	}
	.blog-featured-wrap .blog-card--featured .blog-card__title {
		font-size: 22px;
	}
	.blog-article {
		padding: 28px 24px;
	}
	.blog-sidebar {
		position: static;
	}
	.blog-article-hero {
		min-height: 320px;
	}
}

@media (max-width: 575px) {
	.blog-article__lead {
		font-size: 17px;
	}
	.blog-article-hero__content {
		padding-bottom: 40px;
	}
}

/* =======================
   Car Listing Filters
======================= */
.car-filters .filterbox {
	padding: 0;
}
.car-filters__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 22px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--primary-five-light);
}
.car-filters__head h5 {
	margin: 0;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--dark-bg);
}
.car-filters__head h5 i {
	color: var(--primary-one);
	font-size: 16px;
}
.car-filters__reset {
	font-size: 13px;
	font-weight: 600;
	color: var(--primary-one);
	text-decoration: none;
	white-space: nowrap;
}
.car-filters__reset:hover {
	color: var(--dark-bg);
}
.car-filter-group {
	margin-bottom: 22px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
}
.car-filter-group:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}
.car-filter-group__title {
	display: block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #6f7782;
	margin-bottom: 12px;
}
.car-filter-options {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.car-filter-option {
	display: block;
	margin: 0;
	cursor: pointer;
}
.car-filter-option__input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}
.car-filter-option__content {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.car-filter-option__check {
	width: 20px;
	height: 20px;
	border: 2px solid #cfd6df;
	border-radius: 6px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	transition: background 0.2s ease, border-color 0.2s ease;
}
.car-filter-option__check::after {
	content: '';
	width: 9px;
	height: 5px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg) scale(0);
	margin-top: -2px;
	transition: transform 0.15s ease;
}
.car-filter-option__text {
	flex: 1;
	font-size: 14px;
	font-weight: 500;
	color: var(--primary-text-color);
	line-height: 1.3;
}
.car-filter-option__count {
	font-size: 12px;
	font-weight: 600;
	color: #8b949e;
	background: #f3f5f7;
	border-radius: 50px;
	padding: 3px 10px;
	min-width: 28px;
	text-align: center;
	flex-shrink: 0;
}
.car-filter-option__input:checked + .car-filter-option__content {
	border-color: rgba(237, 81, 37, 0.45);
	background: var(--primary-five-light);
	box-shadow: 0 4px 14px rgba(237, 81, 37, 0.08);
}
.car-filter-option__input:checked + .car-filter-option__content .car-filter-option__check {
	background: var(--primary-one);
	border-color: var(--primary-one);
}
.car-filter-option__input:checked + .car-filter-option__content .car-filter-option__check::after {
	transform: rotate(-45deg) scale(1);
}
.car-filter-option__input:checked + .car-filter-option__content .car-filter-option__text {
	font-weight: 600;
	color: var(--dark-bg);
}
.car-filter-option__input:checked + .car-filter-option__content .car-filter-option__count {
	background: #fff;
	color: var(--primary-one);
}
.car-filter-option__input:focus-visible + .car-filter-option__content {
	outline: 2px solid rgba(237, 81, 37, 0.45);
	outline-offset: 2px;
}
.car-filter-group .form-select,
.car-filter-group .form-control {
	border-radius: 10px;
	border-color: #e3e8ef;
	font-size: 14px;
	padding: 10px 14px;
}
.car-filter-group .form-select:focus,
.car-filter-group .form-control:focus {
	border-color: rgba(237, 81, 37, 0.45);
	box-shadow: 0 0 0 3px rgba(237, 81, 37, 0.1);
}

/* City autocomplete */
.car-city-autocomplete {
	position: relative;
}
.car-city-autocomplete__field {
	position: relative;
}
.car-city-autocomplete__clear {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	border: none;
	border-radius: 50%;
	background: #f3f5f7;
	color: #6f7782;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}
.car-city-autocomplete__clear:hover {
	background: var(--primary-five-light);
	color: var(--primary-one);
}
.car-city-autocomplete__field .form-control {
	padding-right: 42px;
}
.car-city-autocomplete__list {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 6px);
	z-index: 30;
	background: #fff;
	border: 1px solid #e8ecf1;
	border-radius: 12px;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
	max-height: 260px;
	overflow-y: auto;
}
.car-city-autocomplete__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 11px 14px;
	border: none;
	background: transparent;
	text-align: left;
	cursor: pointer;
	transition: background 0.2s ease;
}
.car-city-autocomplete__item:hover,
.car-city-autocomplete__item:focus {
	background: var(--primary-five-light);
	outline: none;
}
.car-city-autocomplete__item + .car-city-autocomplete__item {
	border-top: 1px solid #f2f4f7;
}
.car-city-autocomplete__name {
	font-size: 14px;
	font-weight: 500;
	color: var(--primary-text-color);
	line-height: 1.35;
}
.car-city-autocomplete__meta {
	font-size: 12px;
	color: #8b949e;
	white-space: nowrap;
	flex-shrink: 0;
}
.car-city-autocomplete__empty {
	padding: 12px 14px;
	font-size: 13px;
	color: #8b949e;
}

/* Car list AJAX loader */
.car-list-panel {
	position: relative;
	min-height: 320px;
}
.car-list-panel.is-loading .car-list-results {
	opacity: 0.45;
	pointer-events: none;
	transition: opacity 0.2s ease;
}
.car-list-loader {
	position: absolute;
	inset: 0;
	z-index: 20;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 80px;
	background: rgba(255, 255, 255, 0.72);
	border-radius: 12px;
}
.car-list-loader__inner {
	text-align: center;
}
.car-list-loader__spinner {
	width: 44px;
	height: 44px;
	margin: 0 auto 12px;
	border: 3px solid #e8ecf1;
	border-top-color: var(--primary-one);
	border-radius: 50%;
	animation: car-list-spin 0.75s linear infinite;
}
.car-list-loader p {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-text-color);
}
@keyframes car-list-spin {
	to { transform: rotate(360deg); }
}

/* Price range slider */
.car-price-slider {
	padding-top: 4px;
}
.car-price-slider__values {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}
.car-price-slider__value {
	font-size: 14px;
	color: #6f7782;
}
.car-price-slider__value strong {
	font-size: 18px;
	font-weight: 700;
	color: var(--dark-bg);
}
.car-price-slider__track {
	position: relative;
	height: 6px;
	border-radius: 999px;
	background: #e8ecf1;
	margin-bottom: 8px;
}
.car-price-slider__progress {
	position: absolute;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--primary-one), var(--secondary-color));
	left: 0;
	right: 0;
}
.car-price-slider__inputs {
	position: relative;
	height: 0;
}
.car-price-slider__inputs input[type="range"] {
	position: absolute;
	width: 100%;
	top: -14px;
	height: 6px;
	background: none;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
}
.car-price-slider__inputs input[type="range"]::-webkit-slider-thumb {
	pointer-events: auto;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--primary-one);
	box-shadow: 0 2px 8px rgba(237, 81, 37, 0.25);
	cursor: pointer;
}
.car-price-slider__inputs input[type="range"]::-moz-range-thumb {
	pointer-events: auto;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--primary-one);
	box-shadow: 0 2px 8px rgba(237, 81, 37, 0.25);
	cursor: pointer;
}

.car-filter-active-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	margin-bottom: 18px;
	border-radius: 50px;
	background: var(--primary-five-light);
	color: var(--primary-one);
	font-size: 13px;
	font-weight: 600;
}
.car-filters__submit {
	margin-top: 8px;
	padding-left: 26px !important;
	padding-right: 26px !important;
	justify-content: center;
}
.car-list-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
	border: 1px solid #eceff3;
	border-radius: 14px;
}
.car-list-toolbar__meta {
	display: block;
	font-size: 13px;
	color: #6f7782;
	font-weight: 500;
	margin-top: 4px;
}
.car-sort-form {
	min-width: 210px;
}
.car-sort-form .form-select {
	border-radius: 10px;
	border-color: #e3e8ef;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 14px;
}
.car-list-empty {
	text-align: center;
	padding: 60px 30px;
	background: #fff;
	border-radius: 18px;
	border: 1px dashed #ddd;
}
.car-list-empty i {
	font-size: 42px;
	color: var(--primary-one);
	margin-bottom: 16px;
}
.car-list-empty h4 {
	font-family: var(--font-heading);
	margin-bottom: 10px;
}
.car-list-empty p {
	color: #6f7782;
	margin-bottom: 20px;
}
.filtersidebar.car-filters {
	padding: 24px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}
.car-filters-column {
	min-width: 0;
}
.car-listing-layout {
	position: relative;
}
.car-filters-mobile-bar {
	margin-bottom: 16px;
}
.car-filters-mobile-toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 14px 18px;
	border: 1px solid rgba(237, 81, 37, 0.22);
	border-radius: 14px;
	background: linear-gradient(180deg, #fff9f5 0%, #ffffff 100%);
	color: var(--dark-bg);
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 8px 22px rgba(237, 81, 37, 0.1);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.car-filters-mobile-toggle:hover,
.car-filters-mobile-toggle:focus {
	border-color: rgba(237, 81, 37, 0.45);
	box-shadow: 0 10px 26px rgba(237, 81, 37, 0.16);
	outline: none;
}
.car-filters-mobile-toggle:active {
	transform: translateY(1px);
}
.car-filters-mobile-toggle__icon {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: var(--primary-one);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	flex-shrink: 0;
}
.car-filters-mobile-toggle__text {
	flex: 1;
	text-align: left;
}
.car-filters-mobile-toggle__badge {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--primary-one);
	background: rgba(237, 81, 37, 0.12);
	border-radius: 999px;
	padding: 4px 10px;
}
.car-filters-drawer {
	width: min(92vw, 380px);
	border-right: 1px solid #eef1f5;
	box-shadow: 8px 0 40px rgba(15, 23, 42, 0.14);
}
.car-filters-drawer__header {
	padding: 16px 18px;
	border-bottom: 1px solid #eef1f5;
	background: linear-gradient(180deg, #fff9f5 0%, #ffffff 100%);
	display: flex;
	align-items: center;
	gap: 10px;
}
.car-filters-drawer__header .btn-close {
	margin: 0 0 0 auto;
	flex-shrink: 0;
}
.car-filters-drawer__header .offcanvas-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--dark-bg);
}
.car-filters-drawer__header .offcanvas-title i {
	color: var(--primary-one);
}
.car-filters-drawer__reset {
	margin-left: auto;
	white-space: nowrap;
}
.car-filters-drawer__body {
	padding: 0;
	overflow-y: auto;
}
.car-filters-drawer__body .filtersidebar.car-filters {
	margin-bottom: 0;
	padding: 18px 18px 24px;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.car-filters-drawer__footer {
	padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid #eef1f5;
	background: #fff;
	box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.06);
}
.car-filters-drawer__apply {
	min-height: 48px;
	border-radius: 12px !important;
	font-weight: 700;
	padding-left: 20px !important;
	padding-right: 20px !important;
}
@media (min-width: 992px) {
	.car-filters-drawer.offcanvas-lg {
		position: static;
		transform: none !important;
		visibility: visible !important;
		background: transparent;
		border: none;
		box-shadow: none;
		width: auto;
		z-index: auto;
	}
	.car-filters-drawer.offcanvas-lg .offcanvas-body {
		overflow: visible;
	}
}
@media (max-width: 991px) {
	.car-filters-column {
		position: absolute;
		width: 0 !important;
		height: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
		overflow: visible;
		border: none !important;
		flex: 0 0 0 !important;
		max-width: 0 !important;
	}
	.car-listing-layout > .col-lg-9 {
		width: 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.car-list-toolbar {
		flex-direction: column;
		align-items: stretch;
	}
	.car-sort-form {
		width: 100%;
		min-width: 0;
	}
}

