* {

	margin: 0;

	padding: 0;

	box-sizing: border-box;

}


:root {

	--primary-color: #000;

	--secondary-color: #d62027;

}

body {

	font-family: 'Poppins', sans-serif;

	font-weight: 400;

	color: #000333;

}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {

	font-family: 'Open Sans Condensed';

}

a {

	text-decoration: none;

	-moz-transition: all .3s ease-in-out;

	-webkit-transition: all .3s ease-in-out;

	transition: all .3s ease-in-out;

}



a:hover {

	text-decoration: none;

}


.btn-theme {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
	color: white;
}

.btn-theme:hover {
	background-color: #b81c22;
	border-color: #b81c22;
	color: white;
}

/* Header Styles */
.navbar {
	padding: 5px 0;
	background-color: #fff;
}

.navbar-brand img {
	height: 90px;
}

.navbar .navbar-nav {
	gap: 8px;
}

.navbar .nav-item .nav-link {
	color: #000;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

.navbar .nav-item .nav-link.active,
.navbar .nav-item .nav-link:hover {
	color: #b81c22;
}

.resources-btn {
	padding: 8px 15px;
	border-radius: 5px;
	font-size: 14px;
	margin: 0 16px;
}


.social-icons {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 15px;
}

.social-icons a {
	color: #d62027;
	font-size: 16px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 5px;
}

.social-icons a:hover {
	background-color: #000;
	color: #fff;
}

/* Banner Section */
.banner {
	background-color: var(--primary-color);
	color: white;
	padding: 80px 0 120px;
	position: relative;
	overflow: hidden;
}

.banner-content {
	position: relative;
	z-index: 2;
}

.banner-image {
	position: absolute;
	right: 0;
	top: 0;
	width: 55%;
	height: 100%;
	z-index: 1;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

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

.banner h1 {
	font-family: 'Open Sans Condensed';
	font-size: 52px;
	font-weight: 600;
	margin-bottom: 12px;
	line-height: 1.2;
}

.banner h2 {
	font-family: 'Open Sans Condensed';
	font-size: 37px;
	font-weight: 300;
	margin-bottom: 20px;
	line-height: 1.2;
}

.banner-btns {
	display: flex;
	gap: 12px;
}

.banner .btn {
	padding: 0.5em 1.25em;
	font-size: 16px;
	letter-spacing: 2px;
}

.btn i {
	margin-left: 5px;
}

.section-heading {
	font-size: 44px;
	font-weight: 700;
	color: #000;
}

/* About Section */
.about-section {
	background-color: #fff;
	padding: 60px 0;
	text-align: center;
}

.about-section h2 {
	margin-bottom: 50px;
}


.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon img {
	max-width: 100%;
}

.feature-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #000;
}

/* Services Section */
.services-section {
	padding: 60px 0;
	background-color: #fff;
}


.section-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 40px;
	color: #000;
}

.service-card {
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	margin-bottom: 30px;
	aspect-ratio: 68 / 111;
}

.service-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 80px 35px 20px;
    background: linear-gradient(to top, rgb(0 0 0 / 93%), transparent);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-overlay p:last-child {
	margin-bottom: 0;
}

.service-title {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 10px;
}

.service-title-main {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 10px;
	color: #d62027;
	text-transform: uppercase;
}


.event-arrow-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background-color: var(--secondary-color);
	color: white;
	position: absolute;
	bottom: 0;
	right: 0;
}

.event-arrow-link i {
	transform: rotateZ(-45deg);
	transition: 0.3s all;
}

.event-arrow-link:hover {
	background-color: #b81c22;
}

.event-arrow-link:hover i {
	transform: rotateZ(0);
}

@media screen and (max-width: 1399px) {
	.navbar .navbar-brand img {
		height: 80px;
	}

	.navbar .navbar-nav {
		gap: 0;
	}
}

@media screen and (max-width: 1199px) {
	.social-icons {
		display: none;
	}

	.feature-title {
		font-size: 24px;
	}
}

@media screen and (max-width: 991px) {
	.banner-image {
		left: -120px;
		width: calc(100% + 120px);
		opacity: 0.3;
	}

	.banner-image img {
		object-position: top;
	}

	.banner {
		padding: 50px 0 50px;
	}

	.resources-btn {
		margin: 0;
		width: 100%;
	}

}

@media screen and (min-width:768px) and (max-width: 991px) {
	.feature-title {
		font-size: 30px;
	}
}

@media screen and (max-width: 767px) {
	.banner {
		text-align: center;
	}

	.banner-btns {
		justify-content: center;
		gap: 8px;
		flex-wrap: wrap;
	}

	.banner h1 {
		font-size: 40px;
	}

	.banner h2 {
		font-size: 30px;
	}

	.banner .btn {
		padding: 0.5em 0.75em;
		letter-spacing: 1px;
	}

	.section-heading {
		font-size: 38px;
		font-weight: 700;
		color: #000;
	}
}

@media screen and (min-width: 992px) {
	.about-section .row>[class*="col-"]:not(:last-child) {
		border-right: 1px solid #ddd;
	}
}

.page-banner {
	background-color: var(--primary-color);
	padding: 80px 0;
	position: relative;
}

.page-banner .page-title {
	color: #ffffff;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0;
	text-align: center;
}

/* Contact Page Styles */

.contact-image-section {
	margin-top: -1px;
	position: relative;
}

.contact-banner-image {
	width: 100%;
	overflow: hidden;
}

.contact-banner-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.contact-info-section {
	padding: 60px 0;
	background-color: #f9f9f9;
}

.contact-info-card {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 40px 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	height: 100%;
	text-align: center;
	transition: transform 0.3s ease;
}

.contact-info-card:hover {
	transform: translateY(-5px);
}

.contact-info-card .contact-icon {
	width: 80px;
	height: 80px;
	padding: 5px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	overflow: hidden;
}

.contact-info-card .contact-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.contact-info-card h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #0d47a1;
}

.contact-info-card p {
	margin-bottom: 5px;
	font-size: 16px;
	color: #555;
}

.contact-info-card a {
	color: #f57c00;
	font-weight: 500;
}

.contact-info-card a:hover {
	color: #0d47a1;
}


/* Event Cards Styling - Updated */
.upcoming-events-section {
	padding: 60px 0;
	background-color: #ffffff;
}


.event-card {
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	height: 100%;
	position: relative;
	background-color: #fff;
}

.event-card .event-image {
	position: relative;
	overflow: hidden;
}

.event-card .event-image img {
	width: 100%;
	height: auto;
}

.event-card .event-tag {
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--secondary-color);
	color: #ffffff;
	padding: 6px 12px;
	font-weight: 600;
	font-size: 14px;
	z-index: 2;
}

.event-card .event-body {
	position: absolute;
	height: 100%;
	width: 100%;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 16px;
}

.event-card .event-countdown {
	background-color: var(--secondary-color);
	color: white;
	display: flex;
	justify-content: space-around;
	padding: 10px 0;
}

.event-card .countdown-item {
	text-align: center;
	padding: 0 5px;
}

.event-card .count {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.event-card .label {
	font-size: 12px;
	text-transform: uppercase;
}

.event-card .event-content {
	padding: 20px 20px 50px;
	background-color: #36843e;
	color: white;
	position: relative;
}

.event-card .event-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	color: white;
	text-transform: uppercase;
}

.event-card .event-meta {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 10px;
}

.event-card .event-meta span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	display: flex;
	align-items: center;
	gap: 10px;
}

.event-card .event-meta i {
	color: white;
}

.event-card .event-arrow-link {
	background-color: rgb(67 160 72);
	color: white;
	bottom: 10px;
	right: 10px;
}

.event-card .event-arrow-link:hover {
	background-color: var(--secondary-color);
	color: white;
}

/* Blog Cards Styling - Updated */
.guest-blogs-section {
	padding: 60px 0;
	background-color: #f8f9fa;
}

.blog-card {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.blog-image {
	position: relative;
	aspect-ratio: 183/133;
	overflow: hidden;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
	transform: scale(1.05);
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background-color: rgba(255, 255, 255);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.video-play-button a {
	color: var(--secondary-color);
	font-size: 24px;
}


.blog-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.author-info {
	font-size: 16px;
	font-weight: 600;
	color: #000;
	margin-bottom: 10px;
}

.blog-excerpt {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
	line-height: 1.5;
}

.read-more-btn {
	display: inline-block;
	background-color: var(--secondary-color);
	color: white;
	padding: 8px 16px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.blog-content .read-more-btn {
	margin-top: auto;
	align-self: flex-start;
}

.read-more-btn i {
	margin-left: 5px;
}

.read-more-btn:hover {
	background-color: #2684DB;
	color: white;
}

/* Testimonials Section */
.testimonials-section {
	padding: 60px 0;
	background-color: #ffffff;
}


.testimonial-content {
	position: relative;
}

.quote-icon {
	font-size: 40px;
	color: var(--secondary-color);
	margin-bottom: 15px;
}

.testimonial-content p {
	font-family: 'Open Sans Condensed';
	margin-bottom: 20px;
	font-size: 32px;
	line-height: 1.25;
	color: #555;
}

.testimonial-author h4 {
	font-family: 'Poppins', sans-serif;
	color: #d62027;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
}

.owl-theme .owl-nav {
	margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 5px;
	background-color: #d6d6d6;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background-color: var(--secondary-color);
}

/* About Page */

.about-banner .page-title {
	font-size: 2.5rem;
	margin-bottom: 0;
	color: white;
}

.content-block {
	padding: 0;
	margin-bottom: 0;
}

.content-block .row {
	margin: 0;
}

.content-block .col-md-6 {
	padding: 0;
}

.content-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content-text {
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.green-bg {
	background-color: #36843e;
	color: white;
}

.blue-bg {
	background-color: #0d47a1;
	color: white;
}

.content-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.team-section {
	padding: 60px 0;
	text-align: center;
}

.team-member {
	margin-bottom: 30px;
}

.team-image img {
	width: 150px;
	border-radius: 15px;
	object-fit: cover;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
}

.team-info {
	padding: 15px 0;
}

.team-info h3 {
	color: #0d47a1;
	font-size: 1.2rem;
	margin-bottom: 5px;
}

.team-designation {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 10px;
	line-height: 1.4;
}

/* Footer Styles */
.site-footer {
	background-color: var(--primary-color);
	color: white;
	padding: 60px 0 0;
}

.footer-logo img {
	height: 80px;
	margin-bottom: 20px;
}

.site-footer p {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255);
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    border-bottom: 2.5px solid red;
    /* display: inline-block; */
    padding-bottom: 5px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links li a {
	color: rgba(255, 255, 255);
	font-size: 14px;
	transition: all 0.3s ease;
}

.footer-links li a:hover {
	color: var(--secondary-color);
}

.newsletter-form .form-control {
	background-color: rgba(255, 255, 255, 0.1);
	border: none;
	height: 45px;
	color: #ffffff;
	border-radius: 5px;
	margin-bottom: 15px;
}

.newsletter-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn-theme {
	width: 100%;
	border-radius: 5px;
	padding: 10px 15px;
	font-size: 14px;
	font-weight: 500;
}

.whatsapp-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #fff;
	color: #000 !important;
	padding: 8px;
	border-radius: 8px;
	line-height: 1.15;
}

.whatsapp-link .text-whatsapp {
	color: #4caf50;
}

.whatsapp-link img {
	height: 30px;
}

.whatsapp-link:hover {
	color: var(--secondary-color);
}

.social-icons-large {
	display: flex;
	gap: 15px;
}

.social-icons-large a {
	color: white;
	font-size: 20px;
}

.social-icons-large a:hover {
	color: var(--secondary-color);
}

.footer-bottom {
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 40px;
	background-color: #000;
}

.footer-bottom p {
	margin-bottom: 0;
}

.footer-bottom a {
	color: rgba(255, 255, 255);
	font-size: 14px;
}

.social-icons-footer {
	display: flex;
	gap: 16px;
	justify-content: end;
}

.social-icons-footer a {
	font-size: 24px;
}

.footer-bottom a:hover {
	color: var(--secondary-color);
}

@media (max-width: 991px) {


	.banner-content-inner {
		padding: 50px 0;
	}
}

@media (max-width: 767px) {

	.event-date .day,
	.event-date .month,
	.event-date .separator {
		font-size: 16px;
	}

	.event-title,
	.blog-title {
		font-size: 16px;
	}

	.video-play-button {
		width: 40px;
		height: 40px;
	}

	.blog-category {
		padding: 3px 10px;
		font-size: 12px;
	}

	.footer-bottom .text-end {
		text-align: center !important;
		margin-top: 10px;
	}
}

/* Single Event Page Styles */
.event-content-section {
	padding: 60px 0;
}

.event-main-image {
	margin-bottom: 30px;
	overflow: hidden;
}

.event-main-image img {
	width: 100%;
	height: auto;
}

.event-main-content {
	max-width: 800px;
	margin: 0 auto;
}

.event-main-title {
	font-size: 32px;
	font-weight: 700;
	color: #0d47a1;
	margin-bottom: 20px;
	text-align: center;
}

.event-description {
	margin-bottom: 30px;
	text-align: center;
}

.event-details-box {
	border-radius: 10px;
}

.event-subtitle {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #000;
	text-align: center;
}

.event-info-row {
	margin-bottom: 25px;
}

.event-info-item {
	margin-bottom: 12px;
	text-align: center;
	color: #000;
	font-size: 16px;
}

.event-info-item.event-venue {
	font-size: 24px;
	color: #0d47a1;
}

.event-info-contact {
	margin-top: 5px;
}

.event-info-contact .value a {
	color: var(--primary-color);
}

.event-info-contact .value a:hover {
	text-decoration: underline;
}

.event-register-btn {
	text-align: center;
	margin-top: 30px;
}


@media (max-width: 767px) {
	.event-main-title {
		font-size: 28px;
	}

	.event-subtitle {
		font-size: 22px;
	}

	.event-info-item {
		flex-direction: column;
	}

	.event-info-item .label {
		width: 100%;
		margin-bottom: 5px;
	}
}




/*** 05 May ***/

.aboutpage .content-title {
	font-size: 45px;
}

.aboutpage .green-bg {
	background-color: #3c9f41;
}

.aboutpage .blue-bg {
	background-color: #0d47a1;
}

.team-member {
	padding: 0 25px;
}

.team-info h3 {
	color: #2684db;
	font-size: 28px;
	text-transform: uppercase;
	font-weight: 700;
	margin: 30px 0 15px 0;
}

.team-info p {
	font-size: 15px;
	line-height: 22px;
}

.team-designation {
	color: #0d47a1;
}

.blogpagebg {
	padding: 80px 0;
}

.blog-card {
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	aspect-ratio: inherit;
	height: auto;
	margin: 0;
}

.blog-card .service-image {
	height: auto;
}

.blog-card .service-title {
	font-size: 28px;
	line-height: 32px;
	font-weight: 700;
}

.blog-card .datetext {
	color: #878c9d;
	font-size: 15px;
	text-transform: uppercase;
}

.event-info-contact a {
	color: #0d47a1;
}

.singleblog-left img {
	width: 100%;
}

.singleblog-left h5 {
	color: #777777;
	font-size: 20px;
	font-weight: 600;
	margin: 25px 0 0 0;
}

.singleblog-left h2,
.singleblog-left h2 a {
	font-size: 28px;
	font-weight: 700;
	margin: 25px 0 20px 0;
	color: #2684db;
	text-transform: uppercase;
}

.singleblog-left p {
	text-align: justify;
}

.programlist li::marker {
	color: #1951a6;
}

.programlist li {
	margin: 5px 0;
}

.programfaq {
	margin-top: 40px;
}

.programfaq .accordion-item {
	border: none;
	border-bottom: solid 1px #ccc;
}

.programfaq .accordion-button:not(.collapsed) {
	background-color: #fff;
}

.programfaq .accordion-button {
	padding: 25px 0;
	color: #d62027;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}

.programfaq .accordion-body {
	padding: 20px 0;
}










.featured-vehicles-section {
	background: #fff;
	padding: 60px 0 40px 0;
}

/* .featured-vehicles-section .section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
  } */
.vehicle-card {
	background: #fff;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	overflow: hidden;
	transition: box-shadow 0.2s;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.vehicle-card:hover {
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}

.vehicle-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

.vehicle-specs {
	padding: 18px 16px 12px 16px;
	flex: 1;
}

.vehicle-title {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #1a1a1a;
	text-transform: uppercase;
}

.vehicle-specs ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.97rem;
	color: #555;
}

.vehicle-specs ul li {
	margin-bottom: 5px;
}

/* .btn-theme {
    background: #e63946;
    color: #fff;
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 600;
    border: none;
    transition: background 0.2s;
  } */
/* .btn-theme:hover {
    background: #d62839;
    color: #fff;
  } */
@media (max-width: 991px) {
	.vehicle-image img {
		height: auto;
	}
}

@media (max-width: 575px) {
	.featured-vehicles-section {
		padding: 40px 0 20px 0;
	}

	.vehicle-image img {
		height: auto;
	}
}







/* about section style  */
.our-story-section {
	background: #f8f9fa;
	padding: 60px 0 40px 0;
	border-bottom: 1px solid #eaeaea;
}

.our-story-section .section-heading {
	font-size: 44px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #000;
	text-align: center;
}

.story-headline {
	font-size: 35px;
	font-weight: 600;
	color: #d62027;
	margin-bottom: 15px;
	text-align: left;
}

.story-content {
	font-size: 1.1rem;
	color: #444;
	margin-bottom: 0;
	text-align: left;
	max-width: 800px;
}

.mission-heading {
	font-size: 35px;
	font-weight: 600;
	color: #d62027;
	margin-bottom: 15px;
}

.mission-content {
	font-size: 1rem;
	color: #000;
	margin-bottom: 10px;
}

.values-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.values-list li {
	font-size: 1rem;
	color: #555;
	margin-bottom: 8px;
	padding-left: 28px;
	position: relative;
}

.values-list li:before {
	content: "\f058";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #d62027;
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 1.1em;
}

.advantage-heading {
	font-size: 35px;
	font-weight: 600;
	color: #d62027;
	margin-bottom: 15px;
}

.um-mi-advantage {
	font-size: 30px;
	font-weight: 400;
	color: #d62027;
}

.advantage-list {
	list-style: none;
	padding-left: 0;
}

.advantage-list li {
	font-size: 1rem;
	color: #555;
	margin-bottom: 8px;
	padding-left: 28px;
	position: relative;
}

.advantage-list li:before {
	content: "\f058";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #d62027;
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 1.1em;
}

@media (max-width: 767px) {
	.our-story-section {
		padding: 40px 0 20px 0;
	}

	.story-headline,
	.mission-heading,
	.advantage-heading {
		font-size: 1.1rem;
	}

	.story-content,
	.values-list li,
	.advantage-list li {
		font-size: 0.95rem;
	}

	.story-image-wrapper img,
	.mission-values img,
	.why-choose-us img {
		max-width: 100%;
	}

	.row.align-items-center>div {
		text-align: center !important;
	}

	.row.align-items-center>div:not(:first-child) {
		margin-top: 16px;
	}
}





/* service page style  */
.import-experience-section-alt {
	background: linear-gradient(135deg, #e9f3fb 0%, #f8f9fa 100%);
	padding: 60px 0 40px 0;
}

.import-experience-section-alt .section-heading {
	font-weight: 700;
	font-size: 44px;
	color: #222;
	margin-bottom: 40px;
	letter-spacing: 0.5px;
}

.import-card-alt {
	background: #fff;
	/* border-radius: 18px; */
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
	transition: box-shadow 0.2s;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 32px 20px 24px 20px;
	min-height: 370px;
	position: relative;
	height: 100%;
}

.import-card-alt:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.import-card-icon {
	width: 100%;
	/* height: 90px; */
	/* border-radius: 50%; */
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
	margin-bottom: 18px;
	/* background: #f0f6ff; */
	display: flex;
	align-items: center;
	justify-content: center;
}

.import-card-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* .import-card-body {
	text-align: center;
} */

.import-card-body h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #d62027;
}

.import-card-body p {
	font-size: 1rem;
	color: #444;
	margin-bottom: 12px;
}

.import-card-body ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.import-card-body ul li {
	font-size: 0.97rem;
	color: #000;
	margin-bottom: 7px;
	position: relative;
	padding-left: 18px;
	text-align: left;
}

.import-card-body ul li:before {
	content: "✔";
	color: #d62027;
	font-size: 0.9em;
	position: absolute;
	left: 0;
	top: 0;
}

@media (max-width: 991px) {
	.import-card-alt {
		min-height: 320px;
		padding: 24px 12px 18px 12px;
	}
}

@media (max-width: 767px) {
	.import-experience-section-alt {
		padding: 40px 0 20px 0;
	}

	.import-experience-section-alt .section-heading {
		/* font-size: 1.4rem; */
	}

	.import-card-alt {
		min-height: unset;
		padding: 16px 8px 12px 8px;
	}

	/* .import-card-icon {
      width: 70px;
      height: 70px;
      margin-bottom: 12px;
    } */
}


.import-card-body h4 {
	font-size: 22px;
	font-weight: 600;
	margin-top: 1.2em;
	margin-bottom: 0.6em;
	color: #222;
}

.import-card-body ul {
	padding-left: 1px;
	margin-bottom: 0;
}

.import-card-body ul li {
	margin-bottom: 0.4em;
	font-size: 1rem;
	line-height: 1.5;
}

.import-card-body ul li strong {
	font-weight: 600;
	color: #d62027;
}



/* gallery page style  */
.portfolio-gallery-section {
	background: #f8f9fa;
	padding: 60px 0 40px 0;
}

.gallery-header .section-heading {
	font-size: 44px;
	font-weight: 700;
	margin-bottom: 12px;
}

.gallery-intro {
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 0;
}

.gallery-filters {
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 32px;
}

.filter-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.filter-label {
	font-weight: 600;
	margin-right: 0.5rem;
	white-space: nowrap;
	color: #d62027;
}

.filter-btn {
	padding: 0.4rem 1rem;
	border: none;
	background: #e7e7e7;
	color: #000;
	border-radius: 10px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
	background: #d62027;
	color: #fff;
	border-color: #d62027;
}

.gallery-grid {
	margin-top: 10px;
}

.vehicle-tile {
	background: #fff;
	/* border-radius: 12px; */
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	overflow: hidden;
	margin-bottom: 24px;
	transition: box-shadow 0.2s;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.vehicle-tile:hover {
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}

.vehicle-img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-bottom: 1px solid #eee;
}

.vehicle-info {
	padding: 18px 16px 16px 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* .vehicle-title {
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: #222;
} */

.vehicle-specs {
	list-style: none;
	padding: 0px !important;
	margin: 0px;
	font-size: 0.98rem;
	color: #555;
}
.vehicle-specs-home{
	list-style: none;
	padding: 10px !important;
	margin: 0px;
	font-size: 0.98rem;
	color: #555;
}
.vehicle-specs-home ul{
	padding: 0 !important;
	margin: 0 !important;
}
.vehicle-specs-home li{
	list-style: none;
}

.vehicle-specs li {
	margin-bottom: 2px;
}
.vehicle-specs li:before {
	content: "✔";
    color: #d62027;
    font-size: 0.9em;
	margin-right: 5px;
}
.vehicle-specs-home li:before {
	content: "✔";
    color: #d62027;
    font-size: 0.9em;
	margin-right: 5px;
}

.vehicle-note {
	font-size: 0.95rem;
	color: #d62027;
	margin-bottom: 12px;
}

.vehicle-enquire-btn {
	font-size: 0.98rem;
	padding: 8px 10px;
	border-radius: 10px;
	background: #d62027;
	color: #fff;
	border: none;
	display: inline-block;
	margin-top: auto;
	transition: background 0.2s;
}

.vehicle-enquire-btn:hover {
	background: #b81c22;
	color: #fff;
}

.cta-banner {
	background: #d620271f;
	border-radius: 12px;
	padding: 32px 20px;
	margin-top: 40px;
}

.cta-headline {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: #d62027;
}

.cta-subtext {
	font-size: 1.08rem;
	color: #000;
	margin-bottom: 18px;
}

.cta-btn {
	font-size: 1.05rem;
	padding: 8px 10px;
	border-radius: 10px;
	background: #d62027;
	color: #fff;
	border: none;
	transition: background 0.2s;
}

.cta-btn:hover {
	background: #b81c22;
	color: #fff;
}

@media (max-width: 991px) {
	.vehicle-img {
		height: 140px;
	}
}

@media (max-width: 767px) {
	.portfolio-gallery-section {
		padding: 40px 0 30px 0;
	}

	.gallery-header .section-heading {
		font-size: 1.5rem;
	}

	.cta-banner {
		padding: 24px 10px;
	}
}

@media (max-width: 991px) {
	.gallery-filters {
		flex-direction: column;
		align-items: stretch;
		gap: 1.5rem;
	}

	.filter-group {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0.5rem;
		justify-content: flex-start;
	}
}

@media (max-width: 575px) {
	.filter-group {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.filter-label {
		margin-bottom: 0.3rem;
	}

	.filter-btn {
		width: 100%;
		font-size: 0.95rem;
	}
}




/* contact us style  */
.import-contact-section {
	background: #fff;
	padding: 60px 0 40px 0;
}

.import-headline {
	font-size: 44px;
	font-weight: 700;
	color: #000;
	margin-bottom: 0.5rem;
}

.import-subheadline {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1rem;
}

.import-desc {
	font-size: 1.1rem;
	color: #444;
	margin-bottom: 2rem;
}

.import-contact-details {
	background: #fff;
	border-radius: 0px;
	box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
	padding: 32px 24px;
	margin-bottom: 24px;
	height: 100%;
}

.import-contact-details h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #d62027;
}

.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-list li {
	margin-bottom: 0.75rem;
	font-size: 1rem;
	color: #000;
}

.contact-list a {
	color: #d62027;
	text-decoration: underline;
}

.business-hours {
	list-style: none;
	padding-left: 0;
	margin-top: 0.5rem;
}

.business-hours li {
	font-size: 0.97rem;
	color: #555;
}

.import-contact-form {
	background: #fff;
	border-radius: 0px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	padding: 32px 24px;
}

.import-contact-form h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #d62027;
}

.import-contact-form .form-label {
	font-weight: 500;
	color: #d62027;
}

.import-contact-form .form-control,
.import-contact-form .form-select {
	border-radius: 6px;
	border: 1px solid #d1d5db;
	margin-bottom: 1rem;
}

.import-contact-form .btn-theme {
	background: #d62027;
	color: #fff;
	font-weight: 600;
	border-radius: 6px;
	padding: 0.5rem 1.5rem;
	border: none;
	transition: background 0.2s;
}

.import-contact-form .btn-theme:hover {
	background: #b81c22
;
}

.import-map-section {
	background: #fff;
	border-radius: 0px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	margin-bottom: 24px;
}

.import-map-section h4 {
	font-size: 1.15rem;
	font-weight: 600;
	color: #d62027;
}

.location-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #d62027;
}

@media (max-width: 991px) {

	.import-contact-details,
	.import-contact-form,
	.import-map-section {
		padding: 20px 12px;
	}

	.import-headline {
		font-size: 2rem;
	}

	.import-subheadline {
		font-size: 1.2rem;
	}
}


.footer-address p a {
	color: #ffffff;
	text-decoration: none;
}