:root {
	--primary-color: #0a2c5e;
	--secondary-color: #ffc000;
	--accent-color: #d4af37;
	--light-color: #f8f9fa;
	--dark-color: #343a40;
	--gray-color: #6c757d;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}7

body {
	font-family: 'Open Sans', sans-serif;
	color: var(--dark-color);
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: var(--primary-color);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
	max-width: 1200px;
}

/* Topbar Styles */
.topbar {
	background-color: var(--primary-color);
	color: white;
	padding: 10px 0;
	font-size: 0.9rem;
}

.topbar a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}

.topbar a:hover {
	color: var(--secondary-color);
}

.social-icons a {
	margin-left: 15px;
	font-size: 14px;
}

a.navbar-brand img {
	width: 220px;
}

/* Navbar Styles */
.navbar {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 15px 0;
	transition: all 0.3s ease;
}

.navbar.scrolled {
	padding: 10px 0;
}

.navbar-brand {
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--primary-color) !important;
}

.navbar-brand span {
	color: var(--secondary-color);
}

.navbar-nav .nav-link {
	color: black !important;
	font-weight: 600;
	margin: 0 5px;
	transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: var(--secondary-color) !important;
}

.btn-reserve {
	background-color: var(--secondary-color);
	color: white;
	padding: 10px 25px;
	border-radius: 2px;
	font-weight: 600;
	transition: all 0.3s ease;
	font-size: 15px;
}

.btn-reserve:hover {
	background-color: var(--primary-color);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Banner */
.hero-banner {
	background: url('../images/newbanner.webp') !important;
	background-size: cover !important;
	color: white;
	padding: 80px 0 120px;
	display: flex;
	align-items: center;
	background-repeat: no-repeat !important;
	position: relative;
}

.hero-banner:after {
	content: '';
	background-color: #00000045;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
}

.hero-banner .container {
	position: relative;
	z-index: 2;
}

.hero-content h1 {
	color: white;
	font-size: 45px;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero-content p {
	font-size: 20px;
	font-weight: 600;
}

.premium-form {
	padding: 20px;
	border-radius: 12px;
	background: rgb(10 44 94 / 68%);
	backdrop-filter: blur(4px);
	border: 1px solid #ffc000;
}

.premium-form h2 {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
}

.fo_hed {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

#quoteForm .form-control.pill {
	height: 40px;
	border-radius: 50px;
	border: none;
	padding: 0 22px;
	font-size: 14px;
	margin-bottom: 5px;
}

#quoteForm .form-control.pill:focus {
	box-shadow: none;
}

#quoteForm .btn-reserve {
	width: 100%;
}

#quoteForm textarea.form-control {
	height: 100px;
	border-radius: 10px;
	border: none;
	padding: 10px 22px;
	font-size: 14px;
	margin-bottom: 5px;
}

#quoteForm .message-box {
	border-radius: 22px;
	padding: 18px 22px;
	resize: none;
}

.quote-btn {
	background: #f6a400;
	color: #000;
	font-weight: 600;
	padding: 14px 38px;
	border-radius: 50px;
	border: none;
	font-size: 16px;
	transition: 0.3s ease;
}

.quote-btn span {
	margin-left: 6px;
}

.quote-btn:hover {
	background: #ffb733;
	transform: translateY(-2px);
}


.quote-form {
	background-color: rgba(255, 255, 255, 0.95);
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-form h3 {
	color: var(--primary-color);
	margin-bottom: 20px;
	text-align: center;
}

.form-control {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 12px;
	margin-bottom: 15px;
}

.btn-quote {
	background-color: var(--secondary-color);
	color: white;
	width: 100%;
	padding: 12px;
	border-radius: 4px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-quote:hover {
	background-color: var(--primary-color);
	color: white;
}

section.top-fboxes {
	margin-top: -50px;
}

section.top-fboxes p {
	margin-bottom: 0px;
	font-size: 15px;
}

/* Info Boxes */
.info-box {
	background-color: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: all 0.5s !important;
	margin-bottom: 20px;
	height: 100%;
	bottom: 0;
	position: relative;
}
p.fbox-h {
    font-size: 20px !important;
    color: #0a2c5e;
    font-weight: bold;
    line-height: 24px;
    margin-bottom: 10px !important;
}

.info-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	bottom: 10px;
}

.info-box i {
	color: #ffffff;
	background: var(--secondary-color);
	width: 50px;
	padding: 10px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	font-size: 25px;
	margin: 0 auto 15px;
}

.info-box h4 {
	margin-bottom: 15px;
	font-size: 20px;
}

p.sub-title {
	color: #ffc000;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

section.about-section h2 {
	font-size: 45px;
}

section.about-section ul {
	padding-left: 20px;
	font-size: 15px;
}

/* About Us */
.about-section {
	padding: 80px 0 50px;
	background-color: var(--light-color);
}

.about-img {
	border-radius: 8px;
	overflow: hidden;
	bottom: 0;
	position: relative;
	transition: all 0.5s;
}

.about-img:hover {
	bottom: 10px;
}

.about-img img {
	width: 100%;
	height: auto;
	transition: transform 0.5s ease;
	padding-right: 10px;
}


/* Services */
.services-section {
	padding: 50px 0 50px;
}

section.cta-section a {
	font-size: 15px !important;
}

section.cta-section a {
	font-size: 16px !important;
	padding: 15px 30px;
}

section.cta-section a:hover {
	background: #0a2c5e;
	color: white;
}

.service-content p {
	font-size: 15px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.service-content h4 {
	font-size: 20px;
}

a.sebox-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	color: #ffc000;
	text-decoration: none;
}

a.sebox-btn:hover {
	color: #0a2c5e;
}

.service-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgb(0 0 0 / 15%);
	transition: all 0.3s ease;
	margin-bottom: 30px;
	height: 430px;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
	height: 200px;
	overflow: hidden;
}

.service-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
	transform: scale(1.1);
}

.service-content {
	padding: 25px;
}

/* CTA Section */
.cta-section {
	background: url('../images/cta.webp') !important;
	background-size: cover !important;
	background-position: 50% 70% !important;
	color: white;
	padding: 100px 0;
	text-align: center;
	position: relative;
}

.cta-section:after {
	content: '';
	position: absolute;
	background-color: #00000075;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.cta-section .container {
	position: relative;
	z-index: 2;
}

.cta-section h3 {
	color: white;
	margin-bottom: 20px;
}

.cta-section p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.9;
}

.btn-cta {
	background-color: var(--secondary-color);
	color: white;
	padding: 15px 40px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.btn-cta:hover {
	background-color: white;
	color: var(--primary-color);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

section.fleet-section {
    background: #f8f9fa;
    padding: 50px;
}
.fleet_img img {
    width: 100%;
}
.fleet-slider .slick-track {
    display: flex;
    gap: 15px;
}

/* Why Choose Us */
.why-choose-section {
	padding: 50px 0;
	background-color: var(--light-color);
}

section.why-choose-section h4 {
    font-size: 18px;
}
.why-item p {
    font-size: 15px;
}
.why-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 15%);
    background-color: white;
    padding: 20px 20px 5px;
    border-radius: 10px;
    position: relative;
    transition: all 0.5s !important;
	bottom: 0;
}
.why-item:hover {
	bottom: 10px;
}

.why-icon {
	background-color: var(--secondary-color);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-right: 20px;
	flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
	padding: 50px 0;
}

.card-header {
	background-color: white;
}

.card-header button {
	color: var(--primary-color);
	font-weight: 600;
	text-decoration: none;
	width: 100%;
	text-align: left;
}

.card-header button:hover {
	color: var(--secondary-color);
}
.faq-image img {
    width: 100%;
    height: 490px;
    object-fit: cover;
}

.faq-intro {
  max-width: 700px;
  margin: 0 auto;
}

.faq-image img {
  width: 100%;
  border-radius: 12px;
}

.faq-card {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.faq-card .card-header {
  background: #fff;
  padding: 0;
  border-radius: 10px;
}

.faq-card .btn-link {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.faq-card .btn-link:hover {
  text-decoration: none;
}

.faq-card .icon {
  font-size: 20px;
  margin-right: 10px;
  color: #ffc207;
}

.faq-card .card-body {
  padding: 10px 20px 20px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}
div#faqAccordion button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
div#faqAccordion .btn.focus, div#faqAccordion .btn:focus {
    box-shadow: none !important;
}
.faq-image img {
	position: relative;
	bottom: 0;
	transition: all 0.5s;
}
.faq-image img:hover {
	bottom: 10px;
}

/* Footer */
.footer {
	background-color: var(--primary-color);
	color: white;
	padding: 50px 0 20px;
}

a.footer-logo img {
	width: 220px;
}

.footer h4 {
	color: white;
	margin-bottom: 25px;
	font-size: 1.2rem;
	position: relative;
	padding-bottom: 10px;
}

.footer h4:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: var(--secondary-color);
}

.footer-logo {
	font-weight: 700;
	font-size: 1.8rem;
	color: white;
	margin-bottom: 20px;
	display: inline-block;
}

.footer-logo span {
	color: var(--secondary-color);
}

.footer p {
	opacity: 0.8;
	font-size: 15px;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 15px;
}

.footer-links a:hover {
	color: var(--secondary-color);
	padding-left: 5px;
}

.contact-info p {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.contact-info p,
.contact-info p a {
	font-size: 14px;
	color: white !important;
}

.contact-info i {
	margin-right: 10px;
	color: var(--secondary-color);
	width: 20px;
}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	margin-top: 20px;
	text-align: center;
	opacity: 0.7;
	font-size: 0.9rem;
}

.footer-social a {
	color: white;
	margin-left: 15px;
	font-size: 1.2rem;
	transition: color 0.3s ease;
}

.footer-social a:hover {
	color: var(--secondary-color);
}
.mobile-hform {
    display: none;
}

.page-banner {
    background: url('../images/cta.webp') !important;
    background-size: cover !important;
    background-position: 50% 70% !important;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.page-banner:after {
    content: '';
    position: absolute;
    background-color: #00000075;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.page-banner .container {
	position: relative;
	z-index: 2;
}
.page-banner h1 {
	color: white;
}
.fleet-pagesec .row .col-lg-3 {
    padding: 8px;
}

.contact-section {
   background: #f8f9fa;
}

.contact-info-box i {
   color: #caa74e; /* Gold theme */
   width: 20px;
}

.contact-section .premium-form {
    background: rgb(10 44 94);
}
.contact-section p.fo_hed {
    color: white;
}
.map-box iframe {
   display: block;
}
.con-d-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 15%);
    background-color: white;
    padding: 20px 20px 20px;
    border-radius: 10px;
    gap: 15px;
}
.con-d-box i {
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #ffc000;
    font-size: 20px;
}
.con-d-box p {
    margin-bottom: 0px;
    display: grid;
}
.con-d-box p strong {
    font-size: 20px;
}
.sermid-img img {
    width: 100%;
    border-radius: 10px;
}
section.sermid-sec {
    margin: 50px 0px;
}
section.serr_cta {
    text-align: center;
    background: #dddddd42;
    padding: 50px 0px;
    margin-top: 50px;
}
section.serr_cta a {
    padding: 10px 20px;
    font-size: 16px;
}


/* Mobile Media Query */
@media only screen and (max-width: 767px) {
	h1, h2, h3, h4, h5, h6 {
    font-size: 25px !important;
    line-height: 1.5 !important;
}
.mobile-hform {
    display: block !important;
}
.mobile-hform {
    margin-top: 30px;
}
.mobile-hform .premium-form {
    background: rgb(10 44 94);
}
.mobile-hform .premium-form .fo_hed {
    color: white;
}

	.topbar .col-md-6:first-child span:last-child {
    display: none;
}
.topbar .col-md-6 {
    width: 50%;
}
.navbar .container {
    padding: 0px 10px;
}
.navbar-light .navbar-toggler {
    color: rgb(254 192 0);
    border-color: rgba(0,0,0,.1);
    background: #fec000;
}
ul.navbar-nav.ml-auto {
    text-align: center;
}
section.hero-banner .premium-form {
    display: none;
}
.hero-content p {
    font-size: 17px;
}
.hero-banner {
    padding: 20px 0px;
    height: 350px;
    align-items: flex-start;
}
.hero-content h1 {
    margin-bottom: 0px;
}
.hero-banner:after {
    background-color: #00000036;
}
section.top-fboxes {
    margin-top: 50px;
}
.info-box {
    margin-bottom: 20px;
	height: 280px;
	box-shadow: 0 5px 15px rgb(0 0 0 / 20%);
}
.about-section {
    padding: 50px 0 50px;
}
section.services-section .col-lg-4 {
    margin-bottom: 20px;
}
.service-card {
    height: 100%;
}
section.fleet-section {
    padding: 50px 15px;
}
section.fleet-section .text-right {
    text-align: left !important;
    margin-bottom: 20px;
}
.cta-section {
    padding: 50px 0;
}
.why-item {
    display: block;
}
.why-icon {
    margin-bottom: 20px;
}
section.why-choose-section h4 {
    font-size: 18px !important;
}
.faq-image img {
    height: 100%;
}
.footer.footer .mb-5 {
    margin-bottom: 0px !important;
}
.footer.footer .pl-5 {
    padding-left: 15px !important;
}
.footer h4 {
    font-size: 20px !important;
}
.copyright .mb-3 {
    margin-bottom: 0px !important;
}
.fleet-pagesec .row .col-lg-3 {
    width: 50%;
}
.page-banner {
    padding: 50px 0 !important;
}
section.sermid-sec img {
    margin-bottom: 30px;
}
section.sermid-sec {
    margin-bottom: 20px;
}

}