:root {

	--primary: #c62828;

	--primary-dark: var(--primary);

	--logo-secondary: #243c96;

	--brand-yellow: #F4A300;

	--warning: #F4A300;

	--brand-yellow-dark: #D98F00;

	--white: #ffffff;

	--mobile-callbar-height: 38px;

	--mobile-header-offset: 96px;

}

body {

	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	line-height: 1.6;

}

html {

	scroll-behavior: smooth;

	overflow-x: hidden;

}

.bg-navy {

	background-color: var(--primary-dark) !important;

}

.bg-brand-accent {

	background-color: var(--primary) !important;

}

.text-brand-accent {

	color: var(--primary) !important;

}

.text-brand-dark {

	color: var(--primary-dark) !important;

}

.quote-color {

	background: #F4A300;

	border: none;

}

.quote-color:hover {

	background: #D98F00;

}



.mobile-top-call-bar {

	background: var(--primary);

	padding: 8px 12px;

	text-align: left;

}

.mobile-top-call-link {

	display: inline-flex;

	align-items: center;

	gap: 8px;

	color: #ffffff;

	font-size: 0.95rem;

	font-weight: 700;

	text-decoration: none;

	line-height: 1;

}

.mobile-top-call-link:hover {

	color: #ffffff;

	opacity: 0.9;

}

.header-row {

	padding: 0;

}

.header-top-left,

.header-top-right {

	font-size: 14px;

}

.header-link {

	transition: opacity 0.3s ease;

}

.header-link:hover {

	opacity: 0.85;

}

.social-links a {

	font-size: 16px;

	transition: transform 0.3s ease;

}

.social-links a:hover {

	transform: scale(1.1);

}

.navbar {

	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);

	padding: 14px 0;

}

@media (max-width: 768px) {

	body {

		padding-top: 98px !important;

	}



	.mobile-top-call-bar {

		position: fixed !important;

		top: 0;

		left: 0;

		right: 0;

		z-index: 1060;

	}



	.navbar.sticky-top {

		position: fixed !important;

		top: 42px !important;

		left: 0;

		right: 0;

		width: 100%;

		z-index: 1055;

		background: #ffffff !important;

		box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);

	}



	.navbar.sticky-top .container {

		min-height: 56px;

	}



	.mobile-menu-drawer .offcanvas-header {

		margin: 0 !important;

		padding: 0 18px 12px 18px !important;

		border-bottom: 1px solid #e5e7eb;

		background: #f15e63;

		display: flex;

		align-items: center;

		justify-content: space-between;

	}

	.mobile-menu-drawer {

		position: fixed !important;

		top: 0 !important;

		right: 0 !important;



		width: min(80vw, 260px) !important;

		height: 75vh !important;

		background: #fff !important;

		z-index: 1070 !important;

		box-shadow: 2px 0 18px rgba(15,23,42,0.08);

		transform: translateX(-100%);



		display: flex;

		flex-direction: column;

		margin: 0 !important;

		padding: 0 !important;

		overflow: hidden !important;

	}

	.mobile-menu-drawer.show {

		transform: translateX(0);

		right: 0 !important;





	}

}

.navbar-brand {

	display: inline-flex;

	align-items: center;

	margin-right: 20px;

}

.navbar-brand img {

	width: auto;

	max-width: min(420px, 100%);

	max-height: 90px;

	height: auto;

	object-fit: contain;

	display: block;

}

.navbar-toggler {

	border: none;

	padding: 0;

}

.navbar-toggler .icon-bar {

	display: block;

	width: 25px;

	height: 3px;

	background-color: #333;

	margin: 5px 0;

	border-radius: 2px;

}

.nav-link {

	font-weight: 500;

	padding: 8px 14px !important;

	position: relative;

	color: #111827;

}

.navbar .nav-link.dropdown-toggle::after {

	display: none;

}

.nav-link .bi-chevron-down {

	font-size: 12px;

	margin-left: 4px;

	transition: transform 0.3s ease;

}

.dropdown-toggle[aria-expanded="true"] .bi-chevron-down {

	transform: rotate(180deg);

}

.dropdown-menu {

	border: 0;

	box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);

	margin-top: 8px;

}

.dropdown-item {

	padding: 10px 20px;

	transition: background-color 0.2s ease;

}

.dropdown-item:hover {

	background-color: #f3f4f6;

}

.dropdown-item i {

	color: var(--primary);

	font-size: 16px;

}



@media (min-width: 992px) {

	.navbar .nav-item.dropdown {

		position: relative;

	}



	.navbar .nav-item.dropdown > .dropdown-menu {

		display: block;

		opacity: 0;

		visibility: hidden;

		pointer-events: none;

		transform: translateY(10px);

		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;

		min-width: 240px;

		padding: 8px;

		margin-top: 0;

		border: 1px solid #eef2f7;

		border-radius: 14px;

		background: #ffffff;

		box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);

	}



	.navbar .nav-item.dropdown:hover > .dropdown-menu,

	.navbar .nav-item.dropdown:focus-within > .dropdown-menu {

		opacity: 1;

		visibility: visible;

		pointer-events: auto;

		transform: translateY(0);

	}



	.navbar .nav-item.dropdown:hover > .nav-link .bi-chevron-down,

	.navbar .nav-item.dropdown:focus-within > .nav-link .bi-chevron-down {

		transform: rotate(180deg);

	}



	.navbar .dropdown-menu .dropdown-item {

		border-radius: 10px;

		font-weight: 500;

		padding: 10px 12px;

		display: flex;

		align-items: center;

		gap: 8px;

	}



	.navbar .dropdown-menu .dropdown-item:hover,

	.navbar .dropdown-menu .dropdown-item:focus {

		background: #f8fafc;

		color: #0f172a;

	}

}

.quote-btn {

	background: #F4A300 !important;

	color: #fff !important;

	font-weight: 700;

	font-size: 0.95rem;

	border: none;

	padding: 8px 20px;

	transition: all 0.3s ease;

}

.navbar .quote-btn {

	min-width: 122px;

	height: 40px;

	padding: 0 20px;

	border-radius: 999px !important;

	display: inline-flex;

	align-items: center;

	justify-content: center;

	line-height: 1.2;

	white-space: nowrap;

	text-align: center;

}

.quote-btn:hover {

	background: #D98F00 !important;

	color: #fff;

	transform: translateY(-1px);

	box-shadow: 0 4px 12px rgba(244, 163, 0, 0.3);

}

.mobile-header-top {

	padding: 15px;

}

	.mobile-menu-drawer {

		position: fixed !important;

		top: 0 !important;

		right: 0 !important;

		left: auto !important;

		width: min(86vw, 360px) !important;

		height: 100vh !important;

		background: #ffffff;

		color: #111827;

		border-left: 1px solid #e5e7eb;

		z-index: 1070 !important;

		box-shadow: -2px 0 18px rgba(15,23,42,0.08);

		display: flex;

		flex-direction: column;

		margin: 0 !important;

		padding: 0 !important;

		overflow: hidden !important;

		transform: translateX(100%);

		transition: transform 0.35s cubic-bezier(.4,0,.2,1);

	}

	.mobile-menu-drawer.show {

		transform: translateX(0);

		transition: transform 0.35s cubic-bezier(.4,0,.2,1);

	}

	.offcanvas-backdrop {

		position: fixed;

		top: 0;

		left: 0;

		width: 100vw;

		height: 100vh;

		background: rgba(0,0,0,0.18);

		z-index: 1069 !important;

		opacity: 1;

		transition: opacity 0.3s;

	}

.mobile-menu-drawer .offcanvas-header {

	background: #ffffff;

	border-bottom: 1px solid #e5e7eb;

}

.mobile-menu-drawer .offcanvas-title {

	color: #111827;

	font-weight: 600;

}

.mobile-menu-drawer .btn-close {

	filter: none;

	opacity: 0.75;

}

.mobile-menu-body {

	background: #ffffff;

	display: flex;

	flex-direction: column;

	min-height: 100%;

	padding-bottom: 66px !important;

	overflow-y: auto;

}

.mobile-menu-links {

	padding-top: 8px !important;

}

.mobile-menu-links .mobile-nav-item,

.mobile-menu-links .mobile-dropdown {

	border-bottom: 1px solid #e5e7eb;

}

.mobile-menu-links .mobile-nav-item,

.mobile-menu-links .mobile-dropdown-toggle {

	color: #1f2937;

	background: #ffffff;

	padding-left: 4px;

	padding-right: 4px;

}

.mobile-menu-links .mobile-nav-item:hover,

.mobile-menu-links .mobile-nav-item.active,

.mobile-menu-links .mobile-dropdown-toggle:hover {

	background: #f8fafc;

	color: #111827;

}

.mobile-menu-links .mobile-dropdown-toggle .bi-chevron-down {

	color: #374151;

}

.mobile-menu-links .mobile-dropdown-menu {

	background: #ffffff;

	border: 1px solid #e5e7eb;

	border-radius: 6px;

	margin: 6px 0 10px;

	padding: 6px 0;

}

.mobile-menu-links .mobile-dropdown-item {

	color: #374151;

	padding-left: 14px;

}

.mobile-menu-links .mobile-dropdown-item i {

	color: #374151;

	margin-right: 8px;

}

.mobile-menu-links .quote-btn {

	margin-top: 6px;

	border-radius: 8px !important;

}

.mobile-menu-contact {

	margin-top: 12px;

	border-top: 1px solid #e5e7eb;

	background: #ffffff !important;

}

.mobile-menu-contact .mobile-header-link {

	color: #1f2937 !important;

}

.mobile-header-link i {

	width: 34px;

	height: 34px;

	border-radius: 8px;

	background: var(--primary);

	border: 1px solid var(--primary);

	color: #ffffff;

	display: inline-flex;

	align-items: center;

	justify-content: center;

}

.mobile-social-links {

	gap: 12px;

}

.mobile-social-icon {

	width: 40px;

	height: 40px;

	border: 1px solid var(--primary);

	border-radius: 8px;

	background: var(--primary);

	color: #ffffff !important;

}

.mobile-menu-bottom-bar {

	position: absolute;

	left: 0;

	right: 0;

	bottom: 0;

	height: 52px;

	background: #ffffff;

	border-top: 1px solid #e5e7eb;

	display: flex;

	align-items: center;

	justify-content: space-around;

	font-size: 1.3rem;

}

.mobile-menu-bottom-bar a {

	color: #1f2937 !important;

}

body.mobile-offcanvas-open .pulse-footer {

	display: none !important;

}

.mobile-header-item {

	font-size: 14px;

}

.mobile-social-links a {

	font-size: 18px;

	transition: opacity 0.3s ease;

}

.mobile-social-links {

	display: flex;

	align-items: center;

	gap: 10px;

}

.mobile-social-icon {

	text-decoration: none !important;

	display: inline-flex;

	align-items: center;

	justify-content: center;

	line-height: 1;

}

.mobile-social-links a:hover {

	opacity: 0.8;

}

.mobile-nav-items {

	padding: 0;

}

.mobile-nav-item {

	display: block;

	padding: 12px 20px;

	color: #111827;

	text-decoration: none;

	font-weight: 500;

	border-bottom: 1px solid #e5e7eb;

	transition: background-color 0.2s ease;

}

.mobile-nav-item:hover,

.mobile-nav-item.active {

	background-color: #f3f4f6;

	color: var(--primary);

}

.mobile-dropdown {

	border-bottom: 1px solid #e5e7eb;

}

.mobile-dropdown-toggle {

	display: block;

	padding: 12px 20px;

	color: #111827;

	text-decoration: none;

	font-weight: 500;

	position: relative;

	transition: background-color 0.2s ease;

}

.mobile-dropdown-toggle:hover {

	background-color: #f3f4f6;

}

.mobile-dropdown-toggle .bi-chevron-down {

	float: right;

	font-size: 12px;

	transition: transform 0.3s ease;

}

.mobile-dropdown-menu {

	display: none;

	background-color: #f8fafc;

	padding: 8px 0;

}

.mobile-dropdown-item {

	display: block;

	padding: 10px 20px 10px 35px;

	color: #374151;

	text-decoration: none;

	font-size: 14px;

	transition: background-color 0.2s ease;

}

.mobile-dropdown-item:hover {

	background-color: #e5e7eb;

	color: var(--primary);

}

.mobile-dropdown-item i {

	color: var(--primary);

	margin-right: 8px;

}

.location-card {

	padding: 20px;

	border: 1px solid #e5e7eb;

	border-radius: 8px;

	transition: box-shadow 0.3s ease;

}

.location-card:hover {

	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.hero-slider,

#homeHeroCarousel,

#homeHeroCarousel .carousel-inner,

#homeHeroCarousel .carousel-item {

	height: 480px;

}

.hero-slider-image {

	height: 100%;

	min-height: 0;

	object-fit: cover;

}

.hero-slider-caption {

	left: 12%;

	right: 12%;

	top: 50%;

	bottom: auto;

	transform: translateY(-50%);

	text-align: left;

}

.hero-slider-content {

	max-width: 620px;

	margin: 0;

}





.about-breadcrumb-banner {

	overflow: hidden;

	isolation: isolate;

}



.breadcrumb-blur {

	backdrop-filter: blur(4px);

	background: rgba(0, 0, 0, 0.35);

	z-index: 1;

}



.circles {

	z-index: 1;

	pointer-events: none;

	overflow: hidden;

}



.circles span {

	position: absolute;

	bottom: -40px;

	width: 60px;

	height: 60px;

	border-radius: 50%;

	background: rgba(255, 255, 255, 0.3);

	animation: floatUp 12s linear infinite;

}



.circles span:nth-child(1) {

	left: 13%;

}



.circles span:nth-child(2) {

	left: 25%;

	animation-duration: 8s;

}



.circles span:nth-child(3) {

	left: 40%;

	animation-duration: 18s;

}



.circles span:nth-child(4) {

	left: 60%;

	animation-duration: 7s;

}



.circles span:nth-child(5) {

	left: 75%;

	animation-duration: 11s;

}



.circles span:nth-child(6) {

	left: 90%;

	animation-duration: 19s;

}



@keyframes floatUp {

	from {

		transform: translateY(0);

		opacity: 1;

	}



	to {

		transform: translateY(-320px);

		opacity: 0;

	}

}

.hero-slider-content h1 {

	font-size: clamp(1.6rem, 3.3vw, 3rem);

	font-weight: 800;

	color: #fff;

	margin-bottom: 10px;

}

.hero-slider-content p {

	color: #f8fafc;

	margin-bottom: 18px;

}



.home-intro-section {

	background: #fafafa;

}





.pm-showcase-banner {

	overflow: hidden;

}

.pm-showcase-row {

	height: 400px;

}

.pm-showcase-image-col {

	height: 400px;

	overflow: hidden;

	position: relative;

}

.pm-showcase-image-col::after {

	content: "";

	position: absolute;

	inset: 0;

	background: linear-gradient(90deg, rgba(165,24,31,0.88) 0%, rgba(244,163,0,0.18) 55%, rgba(244,163,0,0.72) 100%);

	pointer-events: none;

}

.pm-showcase-image {

	object-position: center;

	filter: brightness(0.92) contrast(1.04) sepia(0.18) hue-rotate(-10deg) saturate(1.12);

}

.pm-showcase-content-col {

	background: #a5181f;

}

.pm-showcase-content-wrap {

	max-width: 400px;

	margin-top: -40px;

}

.pm-showcase-title {

	font-size: clamp(1.7rem, 2.2vw, 2.6rem);

	line-height: 1.2;

}

.pm-showcase-copy {

	font-size: 1rem;

	line-height: 1.6;

	color: rgba(255, 255, 255, 0.92);

}

.pm-showcase-kicker {

	letter-spacing: 1.5px;

	font-size: 0.82rem;

}

.pm-showcase-btn {

	border-radius: 8px;

}

@media (max-width: 991.98px) {

	.pm-showcase-row,

	.pm-showcase-image-col {

		height: auto;

		min-height: 280px;

	}

	.pm-showcase-title {

		font-size: clamp(1.5rem, 7vw, 2.1rem);

	}

	.pm-showcase-content-wrap {

		margin-top: 0;

		max-width: 100%;

	}

}

.home-intro-title {

	font-weight: 800;

}

.home-intro-text {

	color: #334155;

}

.home-intro-image-wrap {

	border-radius: 14px;

	overflow: hidden;

}

.home-intro-image {

	width: 100%;

	max-height: 420px;

	object-fit: cover;

	object-position: center;

}

.home-intro-reveal {

	opacity: 0;

	transform: translateY(26px) scale(0.98);

	filter: blur(2px);

	transition: opacity 1s ease, transform 1s ease, filter 1s ease;

}

.home-intro-reveal-left {

	transform: translateX(-28px);

}

.home-intro-reveal-right {

	transform: translateX(28px);

}

.home-intro-reveal.is-visible {

	opacity: 1;

	transform: translate(0, 0) scale(1);

	filter: blur(0);

}

.home-intro-image-wrap {

	position: relative;

}

.home-intro-image-wrap::after {

	content: "";

	position: absolute;

	inset: auto -15% -28% auto;

	width: 180px;

	height: 180px;

	background: radial-gradient(circle, rgba(249, 115, 22, 0.24) 0%, rgba(249, 115, 22, 0) 72%);

	pointer-events: none;

	animation: introGlow 1s ease-in-out infinite;

}



section.section-animate {

	opacity: 0;

	transform: translateY(34px);

}

section.section-animate.section-visible {

	animation: sectionReveal 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;

	animation-delay: var(--section-delay, 0ms);

}



.home-metric-card {

	opacity: 0;

	transform: translateY(20px) scale(0.96);

}

.home-metric-card.metric-visible {

	animation: metricReveal 1s ease forwards;

	animation-delay: var(--metric-delay, 0ms);

}



@keyframes sectionReveal {

	0% {

		opacity: 0;

		transform: translateY(34px);

	}

	100% {

		opacity: 1;

		transform: translateY(0);

	}

}



@keyframes metricReveal {

	0% {

		opacity: 0;

		transform: translateY(20px) scale(0.96);

	}

	60% {

		opacity: 1;

		transform: translateY(-4px) scale(1.01);

	}

	100% {

		opacity: 1;

		transform: translateY(0) scale(1);

	}

}



@keyframes introGlow {

	0%,

	100% {

		transform: scale(1);

		opacity: 0.65;

	}

	50% {

		transform: scale(1.15);

		opacity: 0.95;

	}

}

@media (prefers-reduced-motion: reduce) {

	.home-intro-reveal,

	.home-intro-reveal-left,

	.home-intro-reveal-right,

	section.section-animate,

	.home-metric-card {

		opacity: 1;

		transform: none;

		filter: none;

		transition: none;

		animation: none;

	}

	.home-intro-image-wrap::after {

		animation: none;

	}

}

.home-metrics-section {

	background: #fafafa;

	padding-top: 4rem !important;

}

.home-metric-card {

	border: 2px solid var(--primary);

	border-radius: 12px;

	padding: 50px 20px 25px;

	text-align: center;

	background: #fff;

	position: relative;

	margin-top: 35px;

}

.home-metric-icon {

	width: 64px;

	height: 64px;

	border-radius: 50%;

	display: grid;

	place-items: center;

	color: var(--primary);

	background: #fff;

	border: 3px solid var(--primary);

	position: absolute;

	top: -32px;

	left: 50%;

	transform: translateX(-50%);

	font-size: 1.5rem;

}

.home-metric-value {

	font-size: 2rem;

	font-weight: 800;

	color: var(--primary);

	margin-bottom: 8px;

}

.home-metric-label {

	color: #64748b;

	font-size: 0.95rem;

}

.section-services {

	background: #fafafa;

	padding-top: 80px;

	padding-bottom: 80px;

}

.header-section {

	margin-bottom: 34px;

}

.header-section .title {

	position: relative;

	padding-bottom: 14px;

	margin-bottom: 25px;

	font-weight: 700;

	font-size: 32px;

}

.header-section .title:before {

	content: "";

	position: absolute;

	bottom: 0;

	left: 50%;

	transform: translateX(-50%);

	width: 200px;

	height:3px;

	background-color: var(--primary);

	border-radius: 3px;

}

.header-section .description {

	font-size: 14px;

	color: #282828;

}

.single-service {

	position: relative;

	margin-top: 30px;

	background: #fff;

	border-radius: 10px;

	padding: 40px 30px;

	overflow: hidden;

	border: none;

	height: auto;

}

.single-service .content {

	position: relative;

	z-index: 20;

}

.single-service .icon {

	display: inline-block;

	margin-bottom: 26px;

	width: 70px;

	height: 70px;

	background-color: var(--primary);

	border-radius: 5px;

	line-height: 70px;

	text-align: center;

	color: #fff;

	font-size: 30px;

	transition: all .3s;

}

.single-service:hover .icon {

	background-color: #fff;

	color: var(--primary);

}

.single-service .title {

	margin-bottom: 18px;

	font-weight: 700;

	font-size: 23px;

	transition: color .3s;

}



.single-service:hover .title {

	color: #fff;

}



.single-service .description {

	margin-bottom: 20px;

	font-size: 14px;

	transition: color .3s;

}



.single-service:hover .description {

	color: #fff;

}



.single-service .learn-more {

	position: relative;

	font-size: 18px;

	color: #202020;

	text-decoration: none;

	font-weight: 500;

	transition: color .3s;

}



.single-service:hover .learn-more {

	color: #fff;

}



.single-service .learn-more:after {

	content: "";

	position: absolute;

	bottom: 0;

	left: 0;

	right: 0;

	height: 1px;

	background-color: var(--primary);

	transition: background-color .3s;

}



.single-service:hover .learn-more:after {

	background-color: #fff;

}



.single-service .circle-before {

	position: absolute;

	top: 0;

	right: 0;

	transform: translate(40%, -40%);

	width: 150px;

	height: 150px;

	background-color: var(--primary);

	border: 6px solid var(--primary-dark);

	border-radius: 50%;

	opacity: 0.5;

	z-index: 10;

	transition: all .6s;

}



.single-service:hover .circle-before {

	width: 100%;

	height: 100%;

	transform: none;

	border: 0;

	border-radius: 0;

	opacity: 1;

}



/* Why Choose */

.why-choose-section {

	margin: 70px auto;

	padding: 70px 16px 90px;

	overflow: visible;

}



.why-choose-container {

	position: relative;

	margin: 0 auto;

	width: 500px;

	height: 500px;

	border-radius: 50%;

	background-size: cover;

	background-position: center;

	overflow: visible;

}



.why-choose-items {

	position: absolute;

	inset: 0;

	overflow: visible;

}



.why-choose-item {

	position: absolute;

	display: flex;

	align-items: center;

	gap: 16px;

	width: 430px;

	user-select: none;

}



.item-left-top,

.item-left-bottom {

	flex-direction: row-reverse;

}



.item-left-top {

	right: calc(100% - 78px);

	top: 50px;

}



.item-right-top {

	left: calc(100% - 78px);

	top: 50px;

}



.item-left-bottom {

	right: calc(100% - 78px);

	bottom: 50px;

}



.item-right-bottom {

	left: calc(100% - 78px);

	bottom: 50px;

}



.why-choose-item-circle {

	width: 84px;

	height: 84px;

	border-radius: 50%;

	background: #fff;

	display: grid;

	place-items: center;

	box-shadow: 0 8px 24px rgba(2, 6, 23, 0.18);

	flex: 0 0 84px;

}



.why-choose-item-circle i {

	font-size: 2.1rem;

	color: var(--primary);

}



.why-choose-item-text {

	width: calc(100% - 100px);

}



.why-choose-item-text p.fw-bold {

	margin: 0 0 8px 0;

	font-size: 1.375rem;

	line-height: 1.2;

	font-weight: 700;

}



.why-choose-item-text p:not(.fw-bold) {

	margin: 0;

	font-size: 1rem;

	line-height: 1.45;

	color: #373737;

	font-weight: 700;

}



.item-left-top .why-choose-item-text p,

.item-left-bottom .why-choose-item-text p {

	text-align: right;

}



.item-right-top .why-choose-item-text p,

.item-right-bottom .why-choose-item-text p {

	text-align: left;

}



/* Process */

.working-process-section {

	background: #fafafa;

}



.process-main-title,

.process-main-subtitle {

	color: #0f172a;

}



.process-main-description {

	color: #64748b;

}



.process-step-card {

	position: relative;

	text-align: center;

	padding: 30px 15px;

	border-radius: 12px;

	background: #fff;

	border: 1px solid #e2e8f0;

	cursor: pointer;

	transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.process-step-card:hover {

	transform: translateY(-5px);

	box-shadow: 0 8px 20px rgba(198, 40, 40, 0.15);

}



.process-step-icon-circle {

	width: 110px;

	height: 110px;

	border: 3px dashed #cbd5e1;

	border-radius: 50%;

	display: flex;

	align-items: center;

	justify-content: center;

	margin: 0 auto 20px;

	background-color: #fff;

	transition: border-color 0.3s ease;

}



.process-step-card:hover .process-step-icon-circle,

.process-step-card.active .process-step-icon-circle {

	border-color: var(--primary);

}



.process-step-icon-circle i {

	font-size: 2rem;

	color: var(--primary);

}





.testimonial-section {

	background: #fafafa;

}



.testimonial-main-title {

	color: #0f172a;

}



.testimonial-carousel {

	gap: 20px;

	overflow: hidden;

	scroll-behavior: smooth;

}



.testimonial-card {

	min-width: 48%;

	background: #fff;

	border: 1px solid #e5e7eb;

	border-radius: 10px;

	padding: 22px;

	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);

}



.quote-icon {

	color: var(--primary);

	font-size: 22px;

}



.avatar-icon {

	width: 60px;

	height: 60px;

	border-radius: 50%;

	background: var(--primary-dark);

	display: flex;

	align-items: center;

	justify-content: center;

	color: #fff;

	font-size: 30px;

}



.carousel-btn {

	position: absolute;

	top: 50%;

	transform: translateY(-50%);

	border: none;

	background: var(--primary-dark);

	color: #fff;

	width: 44px;

	height: 44px;

	border-radius: 50%;

	z-index: 10;

}



.carousel-btn.prev {

	left: -58px;

}



.carousel-btn.next {

	right: -58px;

}





.gallery-item {

	border-radius: 1rem;

}



.gallery-item:hover img {

	transform: scale(1.1);

	cursor: pointer;

}





.heading-divider {

	width: 90px;

	height: 3px;

	border-radius: 999px;

	background: linear-gradient(90deg, var(--primary-dark), var(--primary));

	margin: 12px auto 0;

}



.theme-btn {

	display: inline-flex;

	gap: 8px;

	align-items: center;

	text-decoration: none;

	font-weight: 700;

	color: var(--primary-dark);

}





.location-card {

	position: relative;

	border-radius: 12px;

	overflow: hidden;

	border: 1px solid #e2e8f0;

	background: #fff;

}



.location-card img {

	width: 100%;

	height: 180px;

	object-fit: cover;

}



.location-info {

	display: flex;

	justify-content: space-between;

	align-items: center;

	padding: 12px;

}



.arrow-btn {

	width: 34px;

	height: 34px;

	border-radius: 50%;

	display: inline-grid;

	place-items: center;

	text-decoration: none;

	color: #fff;

	background: var(--primary-dark);

}



.location-card-modal {

	border: 1px solid #e2e8f0;

	border-radius: 10px;

	background: #f8fafc;

}





.btn-primary {

	background-color: #F4A300 !important;

	border-color: #F4A300 !important;

	color: #fff !important;

}

.btn-primary:hover,

.btn-primary:focus,

.btn-primary:active {

	background-color: #D98F00 !important;

	border-color: #D98F00 !important;

	color: #fff !important;

}

.btn-danger {

	background-color: #F4A300 !important;

	border-color: #F4A300 !important;

	color: #fff !important;

}

.btn-danger:hover,

.btn-danger:focus,

.btn-danger:active {

	background-color: #D98F00 !important;

	border-color: #D98F00 !important;

	color: #fff !important;

}





.foot {

	font-size: 0.96rem;

	background-color: #a5181f !important;

}



.pulse-footer {

	position: fixed;

	right: 18px;

	bottom: 20px;

	display: flex;

	flex-direction: column;

	gap: 10px;

}



.footer-call {

	background: var(--brand-yellow) !important;

	color: #fff !important;

}



.footer-wp {

	background: #22c55e !important;

	color: #fff !important;

}



@keyframes pulse-ring {

	0% {

		transform: scale(1);

		box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.45);

	}

	70% {

		transform: scale(1.03);

		box-shadow: 0 0 0 10px rgba(198, 40, 40, 0);

	}

	100% {

		transform: scale(1);

		box-shadow: 0 0 0 0 rgba(198, 40, 40, 0);

	}

}



.pulse-anim {

	animation: pulse-ring 1s infinite;

}



@keyframes quote-pulse-ring {

	0% {

		box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.45);

	}

	70% {

		box-shadow: 0 0 0 10px rgba(198, 40, 40, 0);

	}

	100% {

		box-shadow: 0 0 0 0 rgba(198, 40, 40, 0);

	}

}



.quote-pulse {

	animation: quote-pulse-ring 1.6s infinite;

}





#qteModal .modal-dialog {

	max-width: 780px;

}



#qteModal .quote-modal-card {

	border-radius: 18px !important;

	overflow: hidden;

	background: #ffffff;

	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);

}



#qteModal .quote-modal-header {

	background:  #c62828;

	padding: 16px 22px;

	border-bottom: 0;

}



#qteModal .modal-title {

	color: #ffffff;

	font-size: 1.2rem;

	letter-spacing: 0.2px;

}



#qteModal .quote-modal-subtitle {

	color: rgba(255, 255, 255, 0.85);

	font-size: 0.84rem;

}



#qteModal .quote-modal-body {

	background: linear-gradient(180deg, #f8fbff 0%, #f3f7ff 100%);

	padding: 22px !important;

}



#qteModal .input-icon i {

	color: #475569;

}



#qteModal .form-control {

	height: 48px;

	border-radius: 12px;

	border: 1px solid #d7e0f1;

	padding-left: 42px;

	background-color: #ffffff;

	box-shadow: none;

}



#qteModal .form-control:focus {

	border-color: #243c96;

	box-shadow: 0 0 0 3px rgba(36, 60, 150, 0.16);

}



#qteModal .form-control::placeholder {

	color: #94a3b8;

}



#qteModal .quote-modal-submit {

	height: 48px;

	border-radius: 12px;

	border: none;

	background: #F4A300;

	color: #ffffff;

	transition: all 0.25s ease;

}



#qteModal .quote-modal-submit:hover {

	background: #D98F00;

	color: #ffffff;

	transform: translateY(-1px);

	box-shadow: 0 10px 18px rgba(244, 163, 0, 0.25);

}



#qteModal #result .alert {

	margin-bottom: 0;

	border-radius: 10px;

}



@media (max-width: 575px) {

	#qteModal .modal-body {

		padding: 14px !important;

	}



	#qteModal .col-6 {

		width: 100%;

	}

}





.quote-form-wrap {

	width: 100%;

	padding: 20px 12px;

}



.quote-form-card {

	background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);

	border-radius: 20px;

	border: 1px solid #eef2f7;

	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);

	max-width: 1240px;

	margin: 10px auto 24px;

	position: relative;

	overflow: hidden;

}



.quote-form-card::before {

	content: "";

	position: absolute;

	inset: 0 0 auto;

	height: 6px;

	background: #c62828;

}



.quote-form-header {

	text-align: center;

	margin-bottom: 20px;

}



.quote-form-badge {

	display: inline-flex;

	align-items: center;

	gap: 8px;

	padding: 6px 12px;

	border-radius: 999px;

	background: #fdecec;

	color: #c62828;

	font-weight: 600;

	font-size: 13px;

}



.quote-form-title {

	font-weight: 800;

	font-size: 26px;

	margin: 10px 0 6px;

	color: #c62828;

}



.quote-form-subtitle {

	color: #64748b;

	margin: 0;

}



.input-icon {

	position: relative;

}



.input-icon i {

	position: absolute;

	left: 14px;

	top: 50%;

	transform: translateY(-50%);

	color: #94a3b8;

	font-size: 16px;

}



.quote-form-card .form-control {

	height: 46px;

	border-radius: 12px;

	border: 1px solid #e2e8f0;

	padding-left: 42px;

	box-shadow: none;

}



.quote-form-card .form-control:focus {

	border-color: #c62828;

	box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.15);

}



.quote-form-card .btn {

	height: 46px;

	border-radius: 12px;

}





@media (max-width: 991px) {

	.navbar {

		padding: 8px 0;

	}



	.navbar .container {

		display: flex;

		align-items: center;

		justify-content: space-between;

		gap: 10px;

	}



	.navbar-brand {

		margin-right: 0;

		padding: 0;

		max-width: 78%;

	}



	.navbar-brand img {

		width: auto;

		height: 44px;

		max-width: 100%;

		object-fit: contain;

	}



	.navbar-toggler {

		flex: 0 0 auto;

		padding: 0;

		margin-left: auto;

	}



	.navbar-toggler:focus {

		box-shadow: none;

	}



	.hero-slider,

	#homeHeroCarousel,

	#homeHeroCarousel .carousel-inner,

	#homeHeroCarousel .carousel-item {

		height: 260px;

	}



	.hero-slider-image {

		height: 100%;

		min-height: 0;

	}



	.hero-slider-caption {

		left: 8%;

		right: 8%;

		top: 50%;

		bottom: auto;

		transform: translateY(-50%);

		text-align: center;

	}



	.why-choose-section {

		padding: 40px 12px;

	}



	.why-choose-container {

		width: 100%;

		height: auto;

		border-radius: 0;

		background: none !important;

	}



	.why-choose-items {

		position: static;

		display: flex;

		flex-direction: column;

		gap: 14px;

		margin-top: 0;

	}



	.why-choose-items::before {

		content: "";

		order: 3;

		width: min(280px, 88vw);

		aspect-ratio: 1 / 1;

		border-radius: 50%;

		background-image: url("../images/services/whychoose.jpg");

		background-size: cover;

		background-position: center;

		align-self: center;

		margin: 6px 0;

	}



	.why-choose-item,

	.item-left-top,

	.item-right-top,

	.item-right-bottom,

	.item-left-bottom {

		position: static;

		width: 100%;

		display: flex;

		flex-direction: row;

		align-items: flex-start;

		gap: 12px;

	}



	.item-left-top {

		order: 1;

	}



	.item-right-top {

		order: 2;

	}



	.item-right-bottom {

		order: 4;

	}



	.item-left-bottom {

		order: 5;

	}



	.why-choose-item-circle {

		width: 60px;

		height: 60px;

		flex: 0 0 60px;

	}



	.why-choose-item-circle i {

		font-size: 1.4rem;

	}



	.why-choose-item-text {

		width: auto;

	}



	.why-choose-item-text p,

	.item-left-top .why-choose-item-text p,

	.item-left-bottom .why-choose-item-text p,

	.item-left-top .why-choose-item-text p.fw-bold,

	.item-left-bottom .why-choose-item-text p.fw-bold {

		text-align: left;

	}



	.testimonial-card {

		min-width: 100%;

	}



	.carousel-btn {

		width: 40px;

		height: 40px;

	}



	.carousel-btn.prev {

		left: 6px;

	}



	.carousel-btn.next {

		right: 6px;

	}

}





.service-hero-badge,

.office-hero-badge,

.car-hero-badge,

.warehouse-hero-badge {

	animation: float 3s ease-in-out infinite;

}



@keyframes float {

	0%, 100% { transform: translateY(0px); }

	50% { transform: translateY(-8px); }

}



.service-feature-highlight,

.office-feature-highlight {

	position: relative;

	overflow: hidden;

}



.service-feature-highlight::before,

.office-feature-highlight::before {

	content: '';

	position: absolute;

	top: 0;

	left: 0;

	right: 0;

	height: 3px;

	background: linear-gradient(90deg, var(--primary), transparent);

}



.service-feature-card,

.office-feature-card,

.car-feature-card,

.warehouse-feature-card {

	transition: all 0.3s ease;

	border: 1px solid rgba(198, 40, 40, 0.08);

}



.service-feature-card:hover,

.office-feature-card:hover,

.car-feature-card:hover {

	transform: translateY(-8px);

	box-shadow: 0 12px 28px rgba(198, 40, 40, 0.15);

	border-color: rgba(198, 40, 40, 0.15);

}



.warehouse-feature-card:hover {

	box-shadow: 0 12px 28px rgba(198, 40, 40, 0.15);

	border-color: rgba(198, 40, 40, 0.15);

}



.service-step-number,

.office-step-number,

.car-step-badge,

.warehouse-step-badge {

	width: 56px;

	height: 56px;

	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);

	border-radius: 50%;

	display: inline-flex;

	align-items: center;

	justify-content: center;

	color: white;

	font-weight: 700;

	font-size: 1.5rem;

	box-shadow: 0 8px 16px rgba(198, 40, 40, 0.2);

}



.car-step-badge,

.warehouse-step-badge {

	width: 48px;

	height: 48px;

	font-size: 1rem;

}



.car-step-badge {

	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);

	box-shadow: 0 6px 12px rgba(239, 68, 68, 0.2);

}



.warehouse-step-badge {

	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);

	box-shadow: 0 6px 12px rgba(239, 68, 68, 0.2);

}



.service-cta-section,

.office-cta-section,

.car-cta-section,

.warehouse-cta-section {

	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

	position: relative;

	overflow: hidden;

}



.service-cta-section::before,

.office-cta-section::before,

.car-cta-section::before,

.warehouse-cta-section::before {

	content: '';

	position: absolute;

	top: -50%;

	right: -10%;

	width: 400px;

	height: 400px;

	background: rgba(198, 40, 40, 0.1);

	border-radius: 50%;

	pointer-events: none;

}



.car-cta-section {

	background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);

}



.car-cta-section::before {

	background: rgba(239, 68, 68, 0.1);

}



.warehouse-cta-section {

	background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);

}



.warehouse-cta-section::before {

	background: rgba(239, 68, 68, 0.1);

}



.service-image-wrap,

.office-image-wrap {

	position: relative;

	border-radius: 16px;

	overflow: hidden;

	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);

}



.service-image-badge,

.office-image-badge {

	position: absolute;

	bottom: 20px;

	right: 20px;

	background: var(--primary);

	color: white;

	padding: 12px 24px;

	border-radius: 999px;

	font-weight: 600;

	font-size: 0.9rem;

	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

}



.car-feature-light-bg {

	background-color: #fef2f2;

}



.warehouse-feature-light-bg {

	background-color: #fef2f2;

}





@media (max-width: 991.98px) {

	html,

	body {

		overflow-x: hidden;

	}



	.about-breadcrumb-banner {

		min-height: 230px !important;

	}



	.hero-banner {

		min-height: 460px !important;

	}



	.navbar-brand {

		max-width: 72vw;

	}



	.navbar-brand img {

		max-height: 90px;

		max-width: 300px;

		width: auto;

		height: auto;

		object-fit: contain;

	}



	#contact-buttons-container {

		right: 12px;

		bottom: 12px;

		gap: 8px;

	}



	#contact-buttons-container .btn {

		width: 54px !important;

		height: 54px !important;

	}



	#contact-buttons-container .btn i {

		font-size: 1.35rem !important;

	}



	img[src*="assets/images/services/"][style*="height: 420px"] {

		height: 280px !important;

	}

}



@media (max-width: 767.98px) {

	.header-section .title {

		font-size: 26px;

	}



	.hero-slider,

	#homeHeroCarousel,

	#homeHeroCarousel .carousel-inner,

	#homeHeroCarousel .carousel-item {

		height: 240px;

	}



	.home-metric-card {

		padding: 46px 14px 20px;

	}



	.home-metric-value {

		font-size: 1.75rem;

	}



	.single-service {

		padding: 36px 22px;

	}



	.section-services {

		padding-top: 60px;

		padding-bottom: 60px;

	}

}



@media (max-width: 575.98px) {

	.about-breadcrumb-banner {

		min-height: 200px !important;

	}



	.hero-banner {

		min-height: 420px !important;

	}



	.hero-slider,

	#homeHeroCarousel,

	#homeHeroCarousel .carousel-inner,

	#homeHeroCarousel .carousel-item {

		height: 210px;

	}



	.hero-slider-caption {

		left: 5%;

		right: 5%;

	}



	.header-section .title {

		font-size: 22px;

	}



	.header-section .title::before {

		width: 140px;

	}



	.home-metric-value {

		font-size: 1.6rem;

	}



	.home-metric-card {

		padding: 44px 12px 18px;

	}



	.single-service {

		padding: 32px 18px;

	}



	.process-step-icon-circle {

		width: 86px;

		height: 86px;

	}



	.process-step-card {

		padding: 24px 12px;

	}



	#scrollTopBtn-container {

		left: 10px;

		bottom: 10px;

	}



	.scroll-top-btn {

		width: 52px;

		height: 52px;

	}



	.scroll-top-btn i {

		font-size: 1.4rem;

	}



	img[src*="assets/images/services/"][style*="height: 420px"] {

		height: 230px !important;

	}

}





.testimonial-carousel {

    gap: 16px;

    overflow: hidden;

    scroll-behavior: smooth;

}



.review-card {

    flex: 0 0 calc((100% - 48px) / 4);

    min-width: calc((100% - 48px) / 4);

    text-align: center;

    padding: 16px 14px 14px;

    background: white;

    border: 1px solid #cfd4e4;

    border-radius: 12px;

    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.14);

}



.review-google {

    font-weight: 1200;

    font-size: 3.15rem;

    line-height: 1;

    margin-bottom: 10px;

    color: #4285f4;

}



.review-google i {

    font-size: 2.5rem;

}



.review-stars {

    font-size: 1.05rem;

    line-height: 1;

    letter-spacing: 1px;

    color: #f4b400;

    margin-bottom: 8px;

}



.review-text {

    margin: 0 0 10px;

    font-size: 0.93rem;

    line-height: 1.55;

    color: #334155;

    min-height: 90px;

}



.review-name {

    margin: 0;

    font-size: 0.83rem;

    font-weight: 700;

    color: #111827;

}



.review-avatar {

    width: 50px;

    height: 50px;

    margin: 0 auto;

    border-radius: 50%;

    display: inline-flex;

    align-items: center;

    justify-content: center;



    font-weight: 700;

    color: #ffffff;

    background: linear-gradient( #c62828);

}



.review-avatar i {

    font-size: 2.05rem;

}



@media (max-width: 1199.98px) {

    .review-card {

        min-width: calc(50% - 8px);

    }

}



@media (max-width: 767.98px) {

    .review-card {

        min-width: 100%;

        padding: 18px 14px 14px;

    }



    .review-text {

        min-height: auto;

    }

}





  .footer-hero-cta {

    background:white;

  }



  .footer-hero-card {

    border-radius: 10px;

    padding: 28px 34px;

    background: #a5181f;

  }



  .footer-hero-title {

    font-size: clamp(1.9rem, 3vw, 3rem);

    line-height: 1.5;

    font-weight: 700;

    max-width: 640px;

  }



  .footer-hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: #fff;

    padding: 13px 24px;

    border-radius: 4px;

    text-decoration: none;

    font-weight: 700;

    font-size: 1.1rem;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);

  }



  .footer-hero-btn:hover {

    color: #fff;

    background: #a5181f;

  }



  .footer-hero-image {

    max-height: 800px;

    /* margin-top: -10px; */

    /* margin-right: 10px; */

    width: 100%  !important;

  }



  @media (min-width: 992px) {

    .footer-hero-image {

      max-height: 1200px;

    }

  }



  @media (max-width: 991.98px) {

    .footer-hero-card {

      padding: 26px 22px;

      text-align: center;

    }



    .footer-hero-title {

      max-width: 100%;

    }



    .footer-hero-image {

      margin-top: 0;

      margin-right: 0;

      max-height: 300px;

    }

  }



  @media (max-width: 575.98px) {

    .footer-hero-card {

      padding: 22px 16px;

      border-radius: 8px;

    }



    .footer-hero-btn {

      width: 100%;

      font-size: 1rem;

      padding: 12px 16px;

    }



    .footer-hero-image {

      max-height: 220px;

    }

  }



  .scroll-top-wrap {

    position: fixed;

    left: 18px;

    bottom: 20px;

    z-index: 9999;

    opacity: 0;

    visibility: hidden;

    transform: translateY(12px);

    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;

}



.scroll-top-wrap.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}



.scroll-top-btn {

    width: 68px;

    height: 68px;

    border: none;

    border-radius: 50%;

    background: #e5cb39!important;

    color: #fff;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 14px 30px rgba(229, 57, 69, 0.28);

    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;

}



.scroll-top-btn i {

    font-size: 2rem;

    line-height: 1;

}



.scroll-top-btn:hover {

    background: #d62d3a;

    transform: translateY(-3px);

    box-shadow: 0 18px 34px rgba(229, 57, 69, 0.34);

}



.scroll-top-btn:focus {

    outline: none;

    box-shadow: 0 0 0 4px rgba(229, 57, 69, 0.2), 0 14px 30px rgba(229, 57, 69, 0.28);

}



@media (max-width: 767.98px) {

    .scroll-top-wrap {

        left: 14px;

        bottom: 14px;

    }



    .scroll-top-btn {

        width: 60px;

        height: 60px;

    }



    .scroll-top-btn i {

        font-size: 1.75rem;

    }

}



	.discover-btn {

		color:black !important;

	}



.top-ticker{

overflow:hidden;

white-space:nowrap;

padding:8px 0;

}



.top-ticker-track{

display:flex;

width:max-content;

animation:topTickerMove 8s linear infinite;

}



.top-ticker-group{

display:flex;

align-items:center;

flex-shrink:0;

}



.top-ticker-item{

display:inline-flex;

align-items:center;

gap:8px;

padding-right:24px;

font-size:14px;

font-weight:600;

}

/* make offcanvas appear above navbar */

.offcanvas {

  z-index: 1200;

}



/* keep navbar lower */

.navbar {

  z-index: 1030;

}



@keyframes topTickerMove{

from{transform:translateX(0)}

to{transform:translateX(-50%)}

}



@media(max-width:991px){



.navbar-toggler{

border:none;

}



.navbar-toggler:focus{

box-shadow:none;

}



.offcanvas{

width:260px;

}



}



@media (max-width: 991px) {



.offcanvas {

    width: 50% !important;

    max-width: 300px;

}



}

@media (max-width:991px){



body{

    padding-top:70px;

}



}



.mobile-top-call-bar{

  padding: 2px;

}


.faq-section {

    background: #f8f9fa;

}



.faq-heading {

    color: rgb(183, 26, 14);

    font-weight: 700;

    font-size: clamp(1.75rem, 3vw, 2.25rem);

    line-height: 1.3;

}



.faq-accordion .accordion-item {

    border: 1px solid #e0e4e8;

    border-radius: 8px;

    margin-bottom: 12px;

    overflow: hidden;

    background: #ffffff;

    transition: box-shadow 0.3s ease;

}



.faq-accordion .accordion-item:hover {

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

}



.faq-accordion .accordion-button {

    color: #2c5aa0;

    font-weight: 500;

    font-size: 1rem;

    padding: 16px 20px;

    background: #ffffff;

    border: none;

    box-shadow: none;

    transition: all 0.3s ease;

}



.faq-accordion .accordion-button:not(.collapsed) {

    color: #2c5aa0;

    background: #f0f4ff;

    box-shadow: none;

}



.faq-accordion .accordion-button:focus {

    border: none;

    box-shadow: none;

}





.faq-accordion .accordion-body {

    padding: 16px 20px 20px;

    color: #4b5563;

    font-size: 0.95rem;

    line-height: 1.7;

}



.faq-accordion .accordion-collapse {

    border-top: 1px solid #e0e4e8;

}



.faq-image-wrapper {

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

}



.faq-illustration {

    max-width: 100%;

    height: auto;

    border-radius: 12px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

}



@media (max-width: 991px) {

    .faq-section .row {

        flex-direction: column-reverse;

    }



    .faq-heading {

        text-align: center;

        margin-top: 20px;

    }



    .faq-image-wrapper {

        padding: 10px;

    }



    .faq-illustration {

        max-width: 90%;

    }

}

.table-size{
	width:56px;
	border-color:var(--primary)!important;
}
.table-top{
	background-color:var(--primary)!important;
}