* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	font-family: "Poppins", sans-serif;
}

a {
	text-decoration: none;
	display: inline-block;
}

img {
	width: 100%;
	display: block;
}

ul {
	padding: 0;
	margin: 0;
}

p {
	font-size: 16px;
	color: var(--c1);
	padding-top: 10px;
	margin: 0;
	line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
}

:root {
	--c1: #111111;
	/* Black */
	--c2: #ffffff;
	/* White */
	--c3: #D4202E;
	/* Red */
}

.spacer-padding {
	padding: 80px 0;
}

.spacer-margin {
	margin: 80px 0;
}

.spacer-padding-top {
	padding-top: 80px;
}

.spacer-padding-bottom {
	padding-bottom: 80px;
}

.spacer-margin-top {
	margin-top: 80px;
}

.spacer-margin-bottom {
	margin-bottom: 80px;
}

.aic {
	align-items: center;
}

.jcc {
	justify-content: center;
}

.p-rel {
	position: relative;
}

.section-title p {
	padding: 10px 240px 0 240px;
}

.section-title .heading2-label {
	text-transform: uppercase;
}

.dark-bg {
	background-color: var(--c1);
}

ul.other-list {
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-left: 20px;
}

ul.other-list li {
	list-style-type: disc;
}

/* Sidebar hidden by default */
.mobile-sidebar {
	position: fixed;
	top: 0;
	left: -100%;
	width: 86%;
	height: 100vh;
/* 	padding: 20px; */
	background: #fff;
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
	transition: left 0.3s ease;
	z-index: 9999;
	overflow-y: auto; /* Allow vertical scroll */
	overflow-x: hidden; /* Prevent horizontal scroll */
	-webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
	touch-action: pan-y; /* Only allow vertical scrolling */
}

.mobile-sidebar.active {
	left: 0%;
	overflow: hidden;
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #fcfcfc;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	z-index: 9998; /* sidebar se thora kam */
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}


.sidbar-head {
	display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid var(--c1);
}

a.ml {
/*     margin-left: 20px; */
}

.sid-bar-close-icon {
	width: 70%;
	text-align: end;
}

.sid-bar-logo {
    width: 50%;
}

span.close-btn svg {
    width: 14px;
}

span.toggle-icon svg {
    width: 24px;
    height: 24px;
}

.sidebar-content {
    padding: 20px 0px 0 30px;
}

.sidebar-content ul li a {
	font-size: 18px;
	color: var(--c1);
}

/* Submenu hidden by default */
.services-sun-ul {
	display: none;
}

.has-submenu {
	position: relative;
}

.submenu-toggle {
	position: absolute;
	right: 20px;
	top: 0;
	font-size: 16px;
	cursor: pointer;
	color: #333;
}

ul.services-sun-ul li.has-submenu {
    padding: 0;
}

li.has-submenu ul.services-sun-ul li {
    padding: 0;
    margin: 15px 0;
}

li.has-submenu {
    padding: 0 !important;
	margin: 15px 0;
}

li.has-submenu.im {
    margin-bottom: 30px;
}

.submenu-toggle i {
	transition: transform 0.3s ease;
}

.has-submenu.active .submenu-toggle i {
	transform: rotate(180deg);
}

.has-submenu.active>.submenu-toggle i.fa-plus {
	display: none;
}

.has-submenu.active>.submenu-toggle i.fa-minus {
	display: inline-block;
}

/* hide minus by default */
.submenu-toggle i.fa-minus {
	display: none;
}

ul.services-sun-ul li a {
	font-size: 17px;
}

ul.services-sun-ul li a {
	font-size: 17px;
}

.sidebar-content ul li {
	padding: 15px 0;
/* 	border-bottom: 1px solid var(--c3); */
}

ul.services-sun-ul li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

ul.services-sun-ul {
    padding-left: 10px;
}

ul.services-sun-ul.bn {
    padding-left: 20px;
	border-left: 1px solid #000;
}

.side-bar-bottom a {
	width: 100%;
	justify-content: center;
	padding: 20px 10px;
}

.sidebar-content>ul {
	height: 500px;
	overflow: scroll;
}

/* Hearder Styling Start Here */

header.header {
	position: absolute;
	width: 100%;
	z-index: 1;
}

.top-header .container {
	padding: 0 20px;
}

/* .header-social-links > li svg {
    width: 14px;
}

.header-social-links > li a {
    font-size: 12px;
    color: var(--c2);
} */

.submenu-toggle .arrow-icon {
	width: 16px;
	transition: transform 0.3s ease;
}

.has-submenu.active > .submenu-toggle .arrow-icon {
	transform: rotate(90deg);
}



.header-social-links {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	align-items: center;
}

.sign-in svg path,
.mail svg path,
a.phone-ic svg path {
	stroke: var(--c3);
}

.nav-bar ul {
	display: flex;
	gap: 20px;
}

a.phone-ic {
	font-size: 12px;
	color: var(--c2);
	font-weight: 400;
}

a.phone-ic svg {
	width: 13px;
}

.nav-bar-main {
	display: flex;
	justify-content: space-evenly;
	background: var(--c1);
	border-radius: 100px;
	position: relative;
	/* 	overflow: hidden; */
	align-items: center;
}

.contact {
	width: 30%;
	position: relative;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

a.ph-icon {
	position: absolute;
	top: 4px;
	left: -20px;
	background: var(--c1);
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.header-social-links ul,
.con-main {
	display: flex;
	gap: 20px;
	padding: 10px 0;
}

/* .nav-bar-main:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 67.8%;
	height: 100%;
	background: var(--c3);
} */
.nav-bar {
	position: relative;
	width: 70%;
	background: var(--c3);
	height: 50px;
	display: flex;
	align-items: center;
	padding-left: 50px;
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;
}

.nav-bar ul li {
	position: relative;
}

ul.main-services-sub-ul {
	position: absolute;
	top: 20px;
	left: 0px;
	background: white;
	z-index: 9;
	width: 250px;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	visibility: hidden;
	opacity: 0;
	transition: .4s all;
	padding: 10px 15px;
	z-index: 1;
	flex-direction: column;
	gap: 0;
}

ul.sub-services-ul {
    position: absolute;
    top: 0px;
    right: -260px;
    background: white;
    z-index: 9;
    width: 250px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    visibility: hidden;
    opacity: 0;
    transition: .4s all;
    padding: 10px 15px;
    z-index: 1;
    flex-direction: column;
    gap: 0;
}

ul.main-services-sub-ul li {
	padding: 10px 0;
}

ul.main-services-sub-ul li a {
	color: var(--c1);
}

.nav-bar ul li:hover ul.main-services-sub-ul, ul.main-services-sub-ul li:hover ul.sub-services-ul {
	visibility: visible;
	opacity: 1;
	transform: translateY(10px);
}

ul.main-services-sub-ul li a {
	color: var(--c1) !important;
}

ul.main-services-sub-ul li a:hover {
	letter-spacing: .5px;
	color: var(--c3) !important;
}

.nav-bar ul li a {
	color: var(--c2);
	font-size: 14px;
	font-weight: 400;
	font-family: "Poppins", sans-serif;
	transition: all 0.3s ease-in-out;
}

.nav-bar-main .nav-bar ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--c2);
    transition: all 0.5s;
}

.nav-bar-main .nav-bar ul li a:hover:before {
    right: auto;
    left: 0;
    width: 100%;
}

/* .nav-bar ul li a:hover {
	color: var(--c1);
} */

/* .call-icon a {
    background: var(--c1);
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100px;
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	transition: all 0.3s ease-in-out;
}
.call-icon a:hover {
    background: var(--c2);
	box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
} */
.contact a.book-btn {
	color: var(--c2);
	font-size: 13px;
	font-weight: 500;
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.contact a.book-btn:hover {
	background: var(--c2);
	color: var(--c1);
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
}

.header-social-links ul li a svg path {
	transition: all 0.3s ease-in-out;
}

.sign-in a,
.mail a {
	color: var(--c2);
	font-size: 12px;
	font-weight: 400;
	transition: all 0.3s ease-in-out;
}

.sign-in a:hover,
.mail a:hover {
	color: var(--c3);
}

.header-social-links ul li a:hover svg path {
	fill: var(--c3);
}

.bars, .ph-icon {
	display: none;
}

ul.main-services-sub-ul li span {display: block;}

ul.main-services-sub-ul li {
    display: flex;
    align-items: center;
	justify-content: space-between;
}

ul.main-services-sub-ul li span svg {
    width: 16px;
    height: 16px;
}

/* Hearder Styling Start Here */

/* Inner Pages Banner Styling Start Here */
section.inner-banner {
	height: 580px;
	display: flex;
	align-items: center;
	background-color: #000;
	position: relative;
}

section.inner-banner:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #0000007d;
}

.inner-banner-content h1 {
	font-size: 42px;
	font-weight: 700;
	line-height: 52px;
	color: var(--c2);
}

.inner-banner-content span {
	display: block;
	font-size: 24px;
	font-weight: 600;
	color: var(--c3);
	line-height: 32px;
	padding: 10px 0;
}

.inner-banner-content p {
	color: var(--c2);
}

.inner-banner-content {
	padding-top: 80px;
	width: 90%;
}

.section-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
}

.section-image img {
	height: 100%;
	object-fit: cover;
}

/* Inner Pages Banner End Start Here */

/* Homepage Styling Start Here */
.banner-first-slide {
	background-image: url(/wp-content/uploads/2025/12/aerolink-minicab-services.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 700px;
}

.banner-slid-main {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	align-items: center;
}

.banner-slid-main:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00000099;
}

.banner-iten {
	position: relative;
	padding-top: 100px;
}

.banner-content h1 {
	font-size: 48px;
	font-weight: 700;
	color: var(--c2);
	text-align: center;
	line-height: 64px;
}

.banner-content span {
	display: block;
	font-size: 24px;
	font-weight: 600;
	color: var(--c3);
	text-align: center;
	line-height: 64px;
}

.banner-content p {
	font-weight: 400;
	color: var(--c2);
	text-align: center;
}

.banner-button ul {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.btn-fill {
	font-size: 13px;
	font-weight: 500;
	background: var(--c3);
	padding: 12px 28px;
	border-radius: 100px;
	color: var(--c2);
	border: 1px solid var(--c3);
	transition: all 0.3s ease-in-out;
	margin-top: 15px;
}

.btn-unfill {
	font-size: 13px;
	font-weight: 500;
	background: transparent;
	padding: 12px 28px;
	border-radius: 100px;
	color: var(--c2);
	border: 1px solid var(--c3);
	transition: all 0.3s ease-in-out;
	margin-top: 15px;
}

.btn-fill:hover {
	background: transparent;
}

.btn-unfill:hover {
	background: var(--c3);
}

a.btn-fill.color:hover {
    color: var(--black);
}

.heading2-label {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: var(--c3);
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
}

.heading2 {
	font-size: 40px;
	font-weight: 700;
	line-height: 52px;
	color: var(--c1);
}

span.tags {
	font-size: 36px;
	font-weight: 700;
	line-height: 52px;
	color: var(--c3);
	padding-top: 10px;
	display: block;
}

section.cta-sec {
	background: var(--c1);
	position: relative;
}

section.cta-sec:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 45%;
	height: 100%;
	background: var(--c3);
}

.cta-right {
	position: relative;
	padding-left: 50px;
}

.cta-left h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 64px;
	color: var(--c2);
	padding-right: 10px;
}

.sec-cta-button .btn-unfill {
	border-color: var(--c2);
}

.sec-cta-button .btn-unfill:hover {
	background-color: var(--c2);
	color: var(--c1);
}

.sec-cta-button .btn-fill:hover {
	background: transparent;
	color: var(--c2);
}

.sec-cta-button {
	display: flex;
	align-items: flex-end;
	gap: 14px;
}

.look-left ul li,
.look-right ul li {
	font-size: 16px;
	font-weight: 400;
	color: var(--c2);
	display: flex;
	gap: 10px;
	align-items: center;
	padding-top: 14px;
}

.look-ul-main {
	display: flex;
	gap: 60px;
}

.look-left ul li span,
.look-right ul li span {
	width: 36px;
	height: 36px;
}

.cta-right span.heading2-label {
	display: block;
	color: var(--c2);
}

.cta-right a {
	font-size: 40px;
	font-weight: 700;
	line-height: 64px;
	color: var(--c2);
	display: block;
}

.cta-right a span svg {
	width: 28px;
}

.cta-right .btn-fill,
.sec-cta-button .btn-fill,
.cta-right .btn-fill,
.fleet-button .btn-fill {
	font-size: 13px;
	background: var(--c2);
	line-height: unset;
	color: var(--3);
	display: inline-block;
	border-color: var(--c2);
}

.sec-cta-button .btn-fill {
	margin-top: 0;
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
}

.post-content {
	padding: 20px 40px 40px 40px;
}

/* .post-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
} */
.post-content h3 {
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	color: var(--c3);
	padding: 10px 0 14px 0;
}

.post-item {
	border-radius: 14px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	margin-bottom: 35px;
}

a.post-button {
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	padding: 14px 0 0 0;
	color: var(--c1);
	transition: all 0.3s ease-in-out;
}

a.post-button:hover {
	color: var(--c3);
}

a.post-button span svg path {
	stroke: var(--c3);
}

a.post-button span svg {
	width: 14px;
	transition: all 0.3s ease-in-out;
}

a.post-button:hover span svg {
	transform: translate(5px, 0px);
}

.post-button .btn-fill {
	margin-top: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}

.swiper-button-prev,
.swiper-button-next {
	background: var(--c3);
	width: 40px !important;
	height: 40px !important;
	border-radius: 100px;
}

.swiper-button-prev svg,
.swiper-button-next svg {
	width: 18px !important;
	height: auto !important;
}

.gray-sec-bg,
section.our-services,
section.why-choose-us,
section.trusted,
section.travel,
section.popular {
	background-color: #F3F3F3;
}

.post-thumbnail:hover img {
	transform: scale(1.1);
}

.post-thumbnail {
	overflow: hidden;
}

.post-thumbnail img {
	height: 260px;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.post-thumbnail a {
	display: block;
}

.post-item:hover {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.post-button {
	text-align: center;
}

.post-button .btn-fill:hover {
	color: var(--c1);
}

.fleet-item {
	/*     background-color: var(--c3); */
	border-radius: 14px;
	/* 	padding: 40px 20px; */
	padding-top: 50px;
	overflow: hidden;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	position: relative;
}

.fleet-item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60%;
	background: var(--c3);
	z-index: -1;
}

.fleet-detail ul {
	display: flex;
	padding: 5px 0;
	justify-content: space-between;
}

.fleet-detail ul li {
	color: var(--c1);
	font-size: 14px;
	font-weight: 400;
}

.fleet-detail ul li:first-child {
	width: 14px;
}

/* .fleet-image {
    height: 100px;
    display: flex;
    align-items: flex-end;
}

.fleet-image img {
    width: 90%;
	margin: 0 auto;
} */

.fleet-content h3 {
	font-size: 22px;
	font-weight: 500;
	line-height: 28px;
	color: var(--c2);
	text-align: center;
}

.fleet-detail p {
    padding: 0;
    padding-bottom: 14px;
    text-align: center;
    font-size: 13px;
    line-height: 20px;
}

.fleet-content p {
	color: var(--c2);
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.fleet-detail {
    padding: 30px;
    background: var(--c2);
    border-radius: 14px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body.page-template-car-pg .fleet-detail {
    height: unset;
}

.fleet-button {
	text-align: center;
}

.fleet-button .btn-fill {
	border-color: var(--c1);
}

.fleet-button .btn-fill:hover {
	background: var(--c3);
	color: var(--c2);
	border-color: var(--c3);
}

.fleet-content {
	height: 100px;
}

.fleet-content {
    padding: 0 20px;
}

.fleet-detail ul li:nth-child(2) {
	width: 80px;
}

.swiper-button-prev {
	top: 58.4% !important;
	left: -50px !important;
}

.swiper-button-next {
	top: 58.4% !important;
	right: -50px !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: var(--c1);
}

.our-fleet .swiper {
	padding-bottom: 35px;
}

.item-right-padding,
.about-image,
.popular-content,
.why-choose-aerolink-image,
.airports-we-cover-content,
.company-status-image,
.safty-content,
.trusted-image,
.our-story-content {
	padding-right: 30px;
}

.item-left-padding,
.about-content,
.popular-image,
.why-choose-aerolink-content,
.airports-we-cover-image,
.company-status-content,
.safty-image,
.trusted-content,
.our-story-image {
	padding-left: 30px;
}

.about-content>p,
.why-choose-aerolink-content p,
.our-story-content p {
	padding-top: 10px;
}

.ul-row {
	display: flex;
	gap: 20px;
}

.ul-main li span,
.popular-content ul li span,
.why-choose-aerolink-content ul li span {
	color: var(--c3);
	font-weight: 500;
	font-size: 16px !important;
}

.testimonials-pagination,
	.fleet-pagination,
.services-pagination {
    display: none;
}

.ul-main ul {
	padding-top: 20px;
}

.about-image img,
.popular-image img,
.why-choose-aerolink-image img,
.airports-we-cover-image img,
.company-status-image img {
	height: 500px;
	object-fit: cover;
	border-radius: 14px;
}

.about-image.iml img {
	object-position: left;
}

section.testimonials-sec {
	background-image: url(/wp-content/uploads/2025/11/testimonails_section_background_image.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.nav-bar ul li a svg {
    width: 18px;
}

section.testimonials-sec .heading2,
section.testimonials-sec p,
.sec-cta-con .heading2,
.sec-cta-con .heading2-label {
	color: var(--c2);
}

section.testimonials-sec:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.7;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

section.testimonials-sec .container {
	position: relative;
}

.test-wiget {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.test-wiget div {
	width: 15%;
}

.popular-content ul li span,
.why-choose-aerolink-content ul li span {
	padding-top: 10px;
	display: block;
}

section.sec-cta {
	background-image: url(/wp-content/uploads/2025/11/cta_section_background_image-e1764245717644.webp);
	background-size: contain;
	background-position: center;
}

.sec-cta-main-item {
	display: flex;
	gap: 100px;
	align-items: center;
	justify-content: space-between;
}

.page-id-80 .fleet-detail {
	height: 300px;
}

.page-id-76 .fleet-detail {
	height: 340px;
}

.sec-cta-con {
    width: 60%;
}

.tsi-dp-img {
    width: 50px;
	height: 50px;
    border-radius: 100px;
    overflow: hidden;
}

.tsi-dp, .tsi-head {
    display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.tsi-logo {
    width: 50px;
    height: auto;
}

.testimonail-slider-item {
    border: 1px solid #dcd6d1;
    border-radius: 14px;
    background-color: var(--c2);
    box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.1), 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.tsi-dp-img img {
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.tsi-dp-img span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    color: var(--c1);
    
}

.pink {
	background: #ffdde8;
}

.yellow {
	background: #fff7c4;
}

.tsi-comment p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tsi-dp-details h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--c1);
}

.tsi-dp-details p {
    font-size: 14px;
    font-weight: 400;
    color: #a1a1a1;
}

.tsi-reating {
    padding: 20px 0;
}

.tsi-read-more a {
    font-size: 16px;
    font-weight: 600;
    color: var(--c1);
	margin-top: 10px;
}

.tsi-read-more a:hover {
    text-decoration: underline;
}

.testimonials-button-prev, .testimonials-button-next {
    background: #00000063;
    position: absolute;
    top: 43%;
    width: 40px;
    height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 100px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.testimonials-button-prev:hover, .testimonials-button-next:hover {
    background: var(--c1);
}

.testimonials-button-prev {
    left: -10px;
}

.testimonials-button-next {
    right: -10px;
}

.testimonials-button-prev svg, .testimonials-button-next svg {
    color: #fff;
    width: 16px;
    height: auto;
}

.dis-cta-con {
    text-align: center;
}

.dis-cta-btn ul {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dis-cta-con h3, .dis-cta-con h2, .dis-cta-con p {
    color: var(--c2);
}

.dis-cta-con h2 span {
    color: var(--c3);
}

.dis-cta-con h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}

.dis-cta-con h2 {
    font-size: 55px;
    font-weight: 700;
    line-height: 66px;
}

.dis-cta-con p {
    padding-top: 14px;
    font-size: 19px;
    line-height: 29px;
}

/* Homepage Styling End Here */

/* About Us Page Styling Start From Here */
section.our-story,
section.company-status {
	background-color: #F3F3F3;
}

.trusted-image img, .safty-image img, .our-story-image img {
	border-radius: 14px;
	
}

.value-row {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.value-column {
	width: 50%;
}

.value-column:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--c3);
}

.value-column:after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: var(--c3);
}

.bottom-item {
	padding-top: 60px;
}

.value-item h3 {
	font-size: 22px;
	font-weight: 600;
	line-height: 30px;
	padding-bottom: 10px;
	color: var(--c3);
}

section.our-values .section-title p,
section.our-values .section-title .heading2 {
	color: var(--c2);
}

section.our-values .value-item p {
	color: var(--c2);
}

.value-column:last-child {
	padding-left: 10%;
}

.value-column:first-child {
	padding-right: 8%;
	padding-left: 1%;
}

/* About Us Page Styling End Here */

/* Area Coverage Page Styling Start From Here */
section.local-area-we-serve {
	background: var(--c1);
}

section.local-area-we-serve .heading2 {
	color: var(--c2);
}

section.local-area-we-serve .section-title p {
	color: var(--c2);
}

section.local-area-we-serve .section-title {
	padding-bottom: 40px;
}

.area-ul ul li a {
	color: var(--c2);
	font-size: 18px;
	font-weight: 700;
	line-height: 52px;
}

.area-ul ul li {
	list-style-type: disc;
}

.area-ul ul li::marker {
	color: var(--c2);
}

.area-ul {
	position: relative;
}

.row>.col-md-3:not(:last-child) .area-ul:after,
.row>.col-md-4:not(last-child).travel-item {
	content: '';
	position: absolute;
	top: 0;
	right: 20%;
	width: 1px;
	height: 100%;
	background: var(--c3);
}

.airports-we-cover-content p,
.company-status-content p {
	padding-top: 10px;
}

.airports-we-cover-content ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-top: 20px;
	padding-left: 18px;
}

ul.same-ul li p {
	padding-top: 0;
}

ul.same-ul li span {
	padding-top: 20px;
	display: block;
	color: var(--c3);
	font-weight: 500;
}

.airports-we-cover-content ul li {
	list-style-type: disc;
}

.airports-we-cover-content ul li::marker {
	color: var(--c3);
}

.airports-we-cover-content ul li a {
	color: var(--c3);
	font-size: 16px;
	font-weight: 600;
	line-height: 17px;
}

.company-status-content ul li {
	font-size: 16px;
	font-weight: 600;
}

/* Area Coverage Page Styling End Here */

/* Brentwood Minicab Section Start From Here */
body.page-id-20 section.local-area-we-serve {
	background: var(--c2);
}

body.page-id-20 section.local-area-we-serve .heading2 {
	color: var(--c1);
}

body.page-id-20 section.local-area-we-serve .section-title p {
	color: var(--c1);
}

body.page-id-20 .area-ul ul li a {
	color: var(--c1);
}

body.page-id-20 .area-ul ul li::marker {
	color: var(--c1);
}

.travel-item {
	position: relative;
	padding-right: 25%;
	padding-top: 10px;
	padding-bottom: 10px;
}

.travel-item:after {
	content: '';
	position: absolute;
	top: 0;
	right: 11%;
	width: 1px;
	height: 100%;
	background: var(--c3);
}

.travel .row .col-md-4:last-child .travel-item::after {
	display: none;
}

section.plane-sec-cta {
	background: var(--c3);
}

.travel-content h3 {
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
    padding: 14px 0;
}

.top-footer-item.fourth-item .header-social-links {
	justify-content: flex-start;
}

/* Brentwood Minicab Section End Here */

/* Airport Transfer Page Styling Start From here */
.company-status-content ul li a {
	font-size: 16px;
	font-weight: 600;
	color: var(--c1);
}

/* Airport Transfer Page Styling End here */

/* Footer Styling Start From Here */
footer.footer {
	background-color: var(--c1);
}

.top-footer-row {
	display: flex;
	justify-content: space-between;
}

.top-footer-item h5 {
	color: var(--c2);
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 20px;
}

.top-footer-item p {
	color: #b5b5b5;
	padding-bottom: 20px;
	font-size: 14px;
}

.top-footer-item ul li a {
	color: #b5b5b5;
	font-size: 14px;
	transition: all 0.3s ease-in-out;
}

.top-footer-item ul li a:hover {
	color: var(--c3);
}

.first-item,
.fourth-item {
	width: 24%;
}

.second-item,
.third-item {
	width: 10%;
}

.top-footer-item ul {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.top-footer-item.fourth-item ul li a {
	font-weight: 500;
	color: var(--c2);
	transition: all 0.3s ease-in-out;
}

.top-footer-item.fourth-item ul li a:hover {
	color: var(--c3);
}

.header-social-links ul {
	flex-direction: row;
}

.bottom-footer {
	display: flex;
	justify-content: space-between;
	padding-top: 50px;
	border-top: 1px solid #b5b5b5;
	margin-top: 50px;
	align-items: center;
}

.footer-bottom-left-item {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 60%;
}

.footer-logo {
	width: 24.5%;
}

.copyright p {
	color: #b5b5b5;
	font-weight: 500;
	font-size: 14px;
}

.footer-bottom-right-item ul {
	display: flex;
	gap: 20px;
}

.footer-bottom-right-item ul li a {
	color: #b5b5b5;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease-in-out;
}

.footer-bottom-right-item ul li a:hover {
	color: var(--c3);
}

ul.ul-location li a {
	color: var(--c2);
	font-weight: 500;
}

ul.ul-location li a span {
	color: var(--c3);
}

/* Footer Styling End Here */
.safty-content p,
.trusted-content p {
	padding-top: 20px;
}

body.page-id-16 .company-status-content ul {
	gap: 0px;
}

body.page-id-16 .company-status-content ul li p {
	padding-top: 5px;
}

section.cta-sec .cta-right .btn-fill {
	margin-top: 14px;
	font-weight: 500;
}





.vehicle-table-wrapper {
	margin-top: 40px;
	overflow-x: auto;
}

.vehicle-table {
	width: 100%;
	border-collapse: collapse;
	background: #d7262f;
	/* RED body */
	border-radius: 18px;
	overflow: hidden;
	color: #fff;
	font-size: 16px;
}

.vehicle-table thead th {
	background: #000;
	padding: 18px 20px;
	text-align: left;
	font-weight: 600;
	font-size: 17px;
}

.vehicle-table tbody td {
	padding: 20px 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.vehicle-table tbody tr:last-child td {
	border-bottom: none;
}

.vehicle-table tbody td:last-child {
	border-right: none;
}




body.error404 .header-social-links ul li a svg path {
    fill: var(--c3);
}

body.error404 .contact a.book-btn:hover {
    background: var(--c1);
	 color: var(--c2);
}

body.error404 .btn-fill:hover {
	color: var(--c1);
}




/* FAQ Box */
.faq-wrapper {
	background: #ffffff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* FAQ Item */
.faq-item {
	border-bottom: 1px solid #e5e5e5;
	padding: 15px 0;
}

.faq-item:last-child {
	border-bottom: none;
}

/* Question Button */
.faq-question {
	width: 100%;
	background: none;
	border: none;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
	padding: 15px 0;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	outline: none;
}

/* Plus / Minus Icon */
.faq-icon {
	font-size: 26px;
	font-weight: 400;
	color: #d7262f;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.35s ease;
	padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
	padding-bottom: 10px;
	/* optional spacing */
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
	/* plus icon rotate */
}


.about-content .look-left ul li,
.about-content .look-right ul li {
	color: var(--c1);
}

.about-content .look-ul-main {
	padding-top: 20px;
}


.why-choose-aerolink-content ul p {
	padding-top: 5px;
}

section.local-area-we-serve.white-bg {
	background: var(--c2);
}

section.local-area-we-serve.white-bg .heading2,
section.local-area-we-serve.white-bg .section-title p,
section.local-area-we-serve.white-bg .area-ul ul li a,
section.local-area-we-serve.white-bg .area-ul ul li::marker {
	color: var(--c1);
}

.pptc-content-item {
	padding-bottom: 20px;
}

.pptc-content-item h2 {
	font-size: 28px;
	line-height: 36px;
	font-weight: 600;
}

/* Insights Page Styling Start From Here */
body.page-template-insights .post-item {
	margin: 0 0 24px 0;
}

/* Insights Page Styling End Here */

/* Contact Us Page Styling Start From Here */
.contact-us-main {
	display: flex;
	justify-content: space-between;
	padding: 5em 6em 3em 3em;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border-radius: 36px;
	position: relative;
	overflow: hidden;
	align-items: center;
}

.contact-details {
	width: 30%;
	position: relative;
}

.contact-us-main:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 32%;
	height: 100%;
	background-color: var(--c1);
}

.contact-form {
	width: 55%;
}

.contact-details h2 {
	font-size: 48px;
	font-weight: 700;
	padding-right: 50px;
	line-height: 56px;
	color: var(--c2);
}

.contact-details>p {
	padding-top: 20px;
	color: var(--c2);
}

.dsfdgd {
	padding-top: 20px;
}

.form-further p {
	font-weight: 500;
	color: var(--c2);
}

.form-further p a {
	color: var(--c3);
	margin-bottom: 20px;
}

.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):not([type=range]):not([readonly]):focus,
.frm_style_formidable-style.with_frm_style select:focus,
.frm_style_formidable-style.with_frm_style .form-field textarea:focus,
.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=text],
.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=password],
.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=email],
.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=number],
.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=url],
.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=tel],
.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=search],
.frm_form_fields_active_style,
.frm_style_formidable-style.with_frm_style .frm_focus_field .frm-card-element.StripeElement {
	border-color: unset;
	box-shadow: unset;
}

.with_frm_style input[type=text],
.with_frm_style input[type=password],
.with_frm_style input[type=email],
.with_frm_style input[type=number],
.with_frm_style input[type=url],
.with_frm_style input[type=tel],
.with_frm_style input[type=file],
.with_frm_style input[type=search],
.with_frm_style select,
.with_frm_style .frm-card-element.StripeElement {
	padding: 14px 14px;
}

.frm_style_formidable-style.with_frm_style .frm_submit button {
	font-size: 13px;
	font-weight: 500;
	background: var(--c3);
	padding: 12px 28px;
	border-radius: 100px;
	color: var(--c2);
	border: 1px solid var(--c3);
	transition: all 0.3s ease-in-out;
	width: 100%;
	text-transform: uppercase;
}

.frm_style_formidable-style.with_frm_style .frm_submit button:hover {
	background: transparent;
	border-color: var(--c3);
	color: var(--c1);
}

body.error404 .sign-in a,
body.error404 .mail a,
body.error404 a.phone-ic {
	color: var(--c1);
}

/* Contact Us Page Styling End Here */

/* 404 Page Styling Start From Here */
section.not-found-sec {
	height: 46vh;
	display: flex;
	align-items: flex-end;
}

.not-found-main {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.not-found-main p {
	text-align: center;
	padding-top: 5px;
}

.contact-form .frm_style_formidable-style.with_frm_style .form-field {
    width: 100%;
}

/* 404 Page Styling End Here */

/* Join Our Fleet Page Styling Start From Here */
section.requirements-sec .heading2 {
	color: var(--c2);
}

section.requirements-sec .section-title p {
	color: var(--c2);
}

.requirements-item ul li {
	color: var(--c2);
}

.requirements-item ul li span {
	color: var(--c3);
}

.requirements-item ul {
	padding: 20px 0 0 18px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.requirements-item h3 {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
}

.requirements-item ul li {
	list-style-type: disc;
}

.requirements-item ul li::marker {
	color: var(--c3);
}

.requirements-item {
	position: relative;
	padding-left: 80px;
}

.col-md-6:nth-child(2) .requirements-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: var(--c3);
}

.frm_small_text {
	position: relative;
}

.frm_small_text:before {
	content: 'Click or drag files to this area to upload.';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 14px;
	color: #8d8d8d;
}

.frm_small_text p {
	visibility: hidden;
	opacity: 0;
	width: 0;
	height: 0;
	overflow: hidden;
}

.dz-message.needsclick {
	border: 0;
	border-bottom: 1px solid #8d8d8d;
	padding: 0 0 30px 0;
	position: relative;
}

svg.frmsvg.frm-svg-icon {
	position: absolute;
	bottom: 0;
	right: 0;
}

.frm_form_field:not(.frm_compact) .frm_dropzone {
	max-width: 100%;
}

.frm_dropzone .dz-message {
	text-align: left;
}

.with_frm_style input[type=text],
.with_frm_style input[type=password],
.with_frm_style input[type=email],
.with_frm_style input[type=number],
.with_frm_style input[type=url],
.with_frm_style input[type=tel],
.with_frm_style input[type=file],
.with_frm_style input[type=search],
.with_frm_style select,
.with_frm_style .frm-card-element.StripeElement {
	padding: 14px 0;
	color: var(--c1) !important;
}

.with_frm_style input[type=text]::placeholder,
.with_frm_style input[type=password]::placeholder,
.with_frm_style input[type=email]::placeholder,
.with_frm_style input[type=number]::placeholder,
.with_frm_style input[type=url]::placeholder,
.with_frm_style input[type=tel]::placeholder,
.with_frm_style input[type=file]::placeholder,
.with_frm_style input[type=search]::placeholder,
.with_frm_style select,
.with_frm_style .frm-card-element.StripeElement,
textarea#field_9jv0r1::placeholder{
	color: var(--c1);
	font-size: 14px;
	font-weight: 500;
}

textarea#field_9jv0r1 {
    padding: 0;
}

.frm_style_formidable-style.with_frm_style .form-field {
	width: 90%;
}

.frm_form_fields .frm_fields_container {
	justify-items: center;
}

.with_frm_style .frm_dropzone {
	color: var(--c1);
}

.with_frm_style .frm_form_field:not(.frm_compact) .frm_dropzone .frmsvg {
	color: var(--c3);
}

.join-our-fleet-form {
	background: var(--c2);
	padding: 80px;
	border-radius: 14px;
}

section.join-our-fleet.spacer-padding.dark-bg .heading2,
section.join-our-fleet.spacer-padding.dark-bg .section-title p {
	color: var(--c2);
}

.frm_style_formidable-style.with_frm_style .frm_submit button {
	margin-bottom: 0;
}

.with_frm_style .frm_form_fields>fieldset {
	padding: 0;
}

div#frm_field_8_container {
	margin-bottom: 0 !important;
}

ul.services-sun-ul.bn li {
    border-bottom: 0;
    padding-bottom: 0;
}

/* ul.services-sun-ul.bn {
    background: #f1f1f1;
    padding-bottom: 20px;
    margin-top: 10px;
} */

.pptc-content-item ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 18px;
    padding-top: 14px;
}

.pptc-content-item ul li {
    list-style-type: disc;
}

.pptc-content-item p {
    padding-top: 14px;
}

.swiper-pagination-bullet-active,
.fleet-pagination-bullet-active,
.services-pagination-bullet-active {
    	background: var(--c3) !important;
	}

.nav-link:focus-visible {
    outline: 0;
    box-shadow: unset;
}

.form-control {
    border: 0;
    border-bottom: 1px solid var(--c1);
    border-radius: 0;
    padding: 10px 0;
    box-shadow: unset !important;
    border-color: unset !important;
}

input.form-control::placeholder {
    color: var(--c1);
}

.col-lg-12.text-center .btn-fill:hover {
    color: var(--c1);
}

/* Join Our Fleet Page Styling End Here */

/* ............................STYLING END HERE........................... */


/* ====== Responsive Breakpoints (Optimized) ====== */

/* ====== Ultra-Wide & 4K Screens (1921px and above) ====== */
@media (min-width: 1921px) {
	/* Add styles for very large / 4K screens */

}

/* ====== Large Laptops (1366px – 1566px) ====== */
@media (min-width: 1366px) and (max-width: 1566px) {
	/* Add styles for large desktop screens */

}

/* Large Devices (Laptops, Desktops) */
@media (max-width: 1399px) {

	/* Styles for large desktops and laptops */

	.post-content p {
		height: 100px;
	}

	.fleet-item {
		padding-top: 30px;
	}

	.fleet-detail {
		margin-top: 20px;
	}

	.fleet-detail ul li:nth-child(3) svg {
		width: 80px;
	}


}

/* Medium Devices (Tablets Landscape) */
@media (max-width: 1199px) {

	/* Adjust layout for tablets and small laptops */

	.swiper-button-prev {
		left: -24px !important;
	}

	.swiper-button-next {
		right: -24px !important;
	}

	.swiper-button-prev,
	.swiper-button-next {
		width: 30px !important;
		height: 30px !important;
	}

	.swiper-button-prev svg,
	.swiper-button-next svg {
		width: 14px !important;
	}

	.item-right-padding,
	.about-image,
	.popular-content,
	.why-choose-aerolink-image,
	.airports-we-cover-content,
	.company-status-image,
	.safty-content,
	.trusted-image,
	.our-story-content {
		padding-right: 10px;
	}

	.item-left-padding,
	.about-content,
	.popular-image,
	.why-choose-aerolink-content,
	.airports-we-cover-image,
	.company-status-content,
	.safty-image,
	.trusted-content,
	.our-story-image {
		padding-left: 10px;
	}

	p,
	.look-left ul li,
	.look-right ul li,
	.ul-main li span,
	.popular-content ul li span,
	.why-choose-aerolink-content ul li span,
	ul.same-ul li span,
	.company-status-content ul li a,
	.area-ul ul li a,
	.airports-we-cover-content ul li a,
	.company-status-content ul li {
		font-size: 14px;
	}
	
	.area-ul ul li a {
		line-height: 42px;
	}

	.banner-first-slide {
		height: 550px;
	}

	.banner-content h1 {
		font-size: 36px;
		line-height: 42px;
	}

	.heading2,
	.cta-left h2 {
		font-size: 32px;
		line-height: 36px;
	}

	.about-content>p,
	.why-choose-aerolink-content p,
	.our-story-content p,
	span.tags,
	.popular-content ul li span,
	.why-choose-aerolink-content ul li span,
	ul.same-ul li span,
	.safty-content p,
	.trusted-content p,
	.airports-we-cover-content p,
	.company-status-content p {
		padding-top: 10px;
	}

	span.tags {
		font-size: 32px;
		line-height: 36px;
	}

	.about-image img,
	.popular-image img,
	.why-choose-aerolink-image img,
	.airports-we-cover-image img,
	.company-status-image img {
		height: 450px;
	}

	.cta-right a {
		font-size: 28px;
	}

	.cta-right a span svg {
		width: 24px;
	}

	.btn-fill,
	.btn-unfill {
		font-size: 12px;
		padding: 12px 20px;
	}

	.cta-right .btn-fill,
	.sec-cta-button .btn-fill,
	.cta-right .btn-fill,
	.fleet-button .btn-fill {
		font-size: 12px;
	}

	.post-content p {
		height: 120px;
	}

	section.sec-cta {
		background-size: cover;
	}

	.section-title p {
		padding: 0 100px;
	}
	
	.dis-cta-con h3 {
    font-size: 24px;
}

.dis-cta-con h2 {
    font-size: 36px;
}

.dis-cta-con p {
    font-size: 16px;
}
	
	.requirements-item h3 {
		font-size: 18px;
	}


}

/* Small Devices (Tablets Portrait) */
@media (max-width: 991px) {

	.logo {
		width: 180px;
	}

	.nav-bar-main {
		display: none;
	}

	.bars {
		display: block;
		text-align: end;
		margin-top: 14px;
	}
	
	.ph-icon {
		display: block;
	}

	.bars span svg path {
		fill: var(--c2);
	}

	.cta-right a {
		font-size: 22px;
	}

	.look-ul-main {
		gap: 20px;
	}

	.post-content p {
		height: 70px;
	}

	.post-thumbnail img {
		height: 220px;
	}

	.post-content {
		padding: 10px 20px 20px 20px;
	}

	.post-content h3 {
		font-size: 20px;
		line-height: 24px;
	}

	.swiper-button-prev {
		left: -20px !important;
	}

	.swiper-button-next {
		right: -20px !important;
	}

	.fleet-detail ul li:nth-child(3) svg {
		width: 120px;
	}

	.spacer-padding {
		padding: 60px 0;
	}
	
	.spacer-padding-bottom {
    	padding-bottom: 60px;
	}
	
	.spacer-padding-top {
    	padding-top: 60px;
	}

	.heading2,
	.cta-left h2,
	span.tags {
		font-size: 24px;
	}

	.banner-content h1 {
		font-size: 32px;
	}

	.banner-content span, .inner-banner-content span {
		font-size: 18px;
	}

	.fleet-detail {
		padding: 20px;
		margin-top: 0;
	}

	.mob-it {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: baseline;
    gap: 30px;
}

}

/* Extra Small Devices (Large Phones) */
@media (max-width: 767px) {
	/* Stack layout, hide desktop nav, etc. */

}

/* Very Small Devices (Mobile Phones) */
@media (max-width: 575px) {
	.container {
		width: 96%;
	}

	.swiper-button-prev,
	.swiper-button-next,
	.top-header,
	.about-image img,
	.popular-image img,
	.why-choose-aerolink-image img,
	.airports-we-cover-image img,
	.company-status-image img,
	.section-image,
	.our-story-image img,
	.trusted-image img,
	.safty-image img,
	.testimonials-button-prev,
	.testimonials-button-next{
		display: none !important;
	}

	.banner-iten {
		padding-top: 30px;
	}
	
	.inner-banner-content {
		padding-top: 60px;
	}
	
	section.inner-banner {
		height: unset;
		padding: 40px 0;
	}

	.bottom-header {
		padding-top: 10px;
	}

	.item-right-padding,
	.about-image,
	.popular-content,
	.why-choose-aerolink-image,
	.airports-we-cover-content,
	.company-status-image,
	.safty-content,
	.trusted-image,
	.our-story-content {
		padding-right: 0px;
	}

	.item-left-padding,
	.about-content,
	.popular-image,
	.why-choose-aerolink-content,
	.airports-we-cover-image,
	.company-status-content,
	.safty-image,
	.trusted-content,
	.our-story-image {
		padding-left: 0px;
	}

	.spacer-padding {
		padding: 40px 0;
	}
	
	.spacer-padding-bottom {
    	padding-bottom: 40px;
	}
	
	.spacer-padding-top {
    	padding-top: 40px;
	}

	.section-title p {
		padding: 0;
	}

	.cta-left {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	section.cta-sec:before,
	.value-column:before,
	.value-column:after,
	.travel-item:after,
	.row>.col-md-3:not(:last-child) .area-ul:after,
	.row>.col-md-4:not(last-child).travel-item {
		content: none;
	}

	.cta-right {
		padding-left: 0;
		text-align: center;
		padding-top: 20px;
	}

	.look-ul-main {
		gap: 0;
		flex-direction: column;
	}

	.look-left ul li,
	.look-right ul li,
	.ul-row,
	.sec-cta-main-item,
	.bottom-footer,
	.footer-bottom-left-item {
		display: flex;
		gap: 0;
		flex-direction: column;
	}

	.cta-right a span svg {
		width: 18px;
	}

	.our-fleet .swiper {
		padding-bottom: 24px;
	}

	.sec-cta-con {
		text-align: center;
	}
	
	.top-footer-row {
		flex-direction: column;
		gap: 30px;
	}
	
	.first-item, .fourth-item,
	.second-item, .third-item,
	.footer-bottom-left-item,
	.value-column {
		width: 100%;
		text-align: center;
	}
	
	.top-footer-item.fourth-item .header-social-links {
    	justify-content: center;
	}
	.footer-logo {
    	width: 80%;
		padding-bottom: 20px;
	}
	.footer-bottom-right-item ul {
		justify-content: center;
	}
	.flex.h-full.w-full.flex-col.items-center.justify-center.p-10.false {}.flex.h-full.w-full.flex-col.items-center.justify-center.p-10.false {
    	padding: 0 !important;
	}
	.inner-banner-content h1 {
    font-size: 28px;
		line-height: 38px;
	}
	.value-row {
    flex-direction: column;
    align-items: center;
}
	.value-column:first-child, .value-column:last-child {
    padding: 0;
}
	.bottom-item {
    padding-top: 20px;
}
	section.our-values .section-title {
    padding-bottom: 10px;
}
	
	.value-item h3, ul.same-ul li span, main li span {
		font-size: 18px;
		font-weight: 600;
	}
	section.trusted.spacer-padding {
    padding-bottom: 0;
}
	.travel-item {
		padding-right: 0;
	}
	.travel-content h3 {
    font-size: 18px;
    line-height: 36px;
}
	.travel-icon, .travel-content {
    text-align: center;
}
	ul.other-list {
    padding-top: 10px;
		gap: 10px;
	}
	.sec-cta-button .btn-fill {
    margin-top: 30px;
}
	.faq-wrapper {
    	padding: 0 20px;
	}
	.faq-question {
		font-size: 16px;
		padding: 5px 0;
	}
	
	.cta-left h2 {
		text-align: center;
		padding-right: 0;
	}
	.area-ul {
    	padding-left: 24px;
	}
	.logo {
        width: 100%;
    }
	.heading2-label, .section-title p {
		font-size: 12px;
	}
	.pptc-content-item h2 {
		font-size: 18px;
	}
	.contact-us-main {
		flex-direction: column;
	}
	.contact-details, .contact-form {
		width: 100%;
	}
	.contact-us-main:before {
		width: 100%;
    	height: 52%;
	}
	.contact-details {
    	margin-bottom: 30px;
	}
	.contact-details h2 {
    	font-size: 32px;
    	padding-right: 0px;
		line-height: 36px;
	}
	.contact-us-main {
		padding: 2em 2em 1em 2em;
	}
	section.inner-banner:after {
    	content: none;
	}
	.cta-left .heading2-label {
    	text-align: center;
	}
	.pptc-content-item h2 {
		line-height: 20px;
	}
	
	.post-content p {
		height: unset;
	}
	
	.testimonials-pagination,
	.fleet-pagination,
	.services-pagination {
		display: block;
    	text-align: center;
    	padding-top: 10px;
	}
	
	.fleet-item, .post-item {
		box-shadow: none;
		border: 1px solid #dcd6d1;
		margin-bottom: 0px;
	}
	
	.our-fleet .swiper {
        padding-bottom: 0px;
    }
	
	.post-item {
    	height: 440px;
	}
	
	.vehicle-table thead th {
		padding: 10px 5px;
		font-size: 8px;
		text-align: center;
	}
	
	.vehicle-table tbody td {
		padding: 5px 5px;
		font-size: 10px;
		text-align: center;
	}
	
	.vehicle-table-wrapper {
		margin-top: 0px;
	}
	
	.dis-cta-con h3 {
    font-size: 16px;
    line-height: 28px;
}

.dis-cta-con h2 {
    font-size: 28px;
    line-height: 38px;
}

.dis-cta-con p {
    padding-top: 10px;
    line-height: 24px;
    font-size: 14px;
}
	
	.col-md-6:nth-child(2) .requirements-item::before {
    content: none;
}

.requirements-item {
    padding-left: 20px;
}

.join-our-fleet-form {
    padding: 10px 10px 20px 10px;
}
	
	.frm_upload_text button, .frm_compact_text button {
    text-align: left;
}
	
	.frm_small_text:before {
    font-size: 12px;
}
	
	button, select, .frm_upload_text button, .frm_compact_text button, .with_frm_style input[type=text], .with_frm_style input[type=password], .with_frm_style input[type=email], .with_frm_style input[type=number], .with_frm_style input[type=url], .with_frm_style input[type=tel], .with_frm_style input[type=file], .with_frm_style input[type=search], .with_frm_style select, .with_frm_style .frm-card-element.StripeElement {
    font-size: 12px !important;
}	
	
}

/* Extra Small (Tiny phones like iPhone SE) */
@media (max-width: 374px) {
	/* Fine-tune typography and spacing */
}

.account-tabs .nav-link {
	color: var(--c1);
	font-weight: 600;
	width: 100%;
	border: 1px solid var(--c3);
	border-radius: 5px;
	padding: 20px 0px;
}

.account-tabs .nav-link.active {
	background: var(--c3);
	color: #fff;
	border-color: var(--c3);
	border-radius: 5px;
}

.account-tab-content {
	background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 40px !important;
    border-radius: 14px;
}

/* Table */
.booking-table thead {
	background: #000;
	color: #fff;
}

.booking-table tbody tr:hover {
	background: #f8f9fa;
}

/* Booking Cards */
.booking-card {
	border: 1px solid #ddd;
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 6px;
	background: #fff;
	position: relative;
}

.booking-card.current {
	border-left: 5px solid #dc3545;
}

.booking-card.previous {
	border-left: 5px solid #000;
}

.booking-card h6 {
	margin-bottom: 10px;
	font-weight: 700;
}

.status {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 4px;
	color: #fff;
}

.status.active {
	background: #dc3545;
}

.status.completed {
	background: #000;
}


.nav-tabs {
    flex-direction: column;
    border: 0;
	gap: 14px;
}

.account-tabs .nav-link:hover {
    border-color: #d4202e;
}

div#passwordTab form button {
    background: #d4202e;
    transition: all .5s;
    border: 0;
    padding: 20px 0px;
}

div#passwordTab form button:hover {
    background: #000;
}


.user-details-card {
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
}

.detail-row {
	display: flex;
	justify-content: space-between;
	padding: 12px 15px;
	border-bottom: 1px solid #eee;
}

.detail-row:last-child {
	border-bottom: none;
}

.detail-row .label {
	font-weight: 600;
	color: #000;
}

.detail-row .value {
	color: #d4202e;
	font-weight: 500;
}

.booking-card p {
    margin-bottom: 10px;
}

@media (max-width: 425px) {
    .bottom-content > div {
        gap: 10px;
        padding-left: 30px;
        padding-right: 18px;
    }

    .bottom-content label {
        font-size: 14px;
    }

    .card-images img {
        width: 75%;
        margin-top: 20px;
    }
	
	.requirements-item.mm h3 {
    margin-top: 20px;
}
}


.first-f-title {
    text-align: center !important;
}

.first-f-title h2 {
    padding: 0 !important;
}