:root {
	--primary-color: #bb7b08;
	--primary-dark: #bb7b08;
	--secondary-color: #1A2A2C;
	--secondary-light: #3A4A4B;
	--accent-color: #8B0000;
	--accent-bright: #A11212;
	--light-color: #F8F8F8;
	--light: #FFFFFF;
	--dark-color: #121212;
	--neutral-gray: #666666;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.section {
	padding: 60px 0;
	position: relative;
}

body {
	font-family: 'Poppins', sans-serif;
	background: var(--light-color);
	line-height: 1.7;
	color: var(--neutral-gray);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
	color: var(--light);
}

a, button {
	text-decoration: none;
	cursor: pointer;
}

.section-title {
	font-size: clamp(26px, 4vw, 40px);
	font-weight: 700;
	color: var(--primary-dark);
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.3;
}

.section-subtitle {
	font-size: 18px;
	color: var(--neutral-gray);
	margin-bottom: 40px;
	text-align: center;
	line-height: 1.6;
}

.visible-xs {
	display: none !important;
}

.hidden-xs {
	display: block !important;
}

.btn {
	padding: 10px 15px;
	border-radius: 30px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	transition: var(--transition);
	text-decoration: none;
	align-items: center;
	gap: 0.5rem;
	overflow: hidden;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
	color: #fff;
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
	background: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	color: #fff;
}

.btn-primary:focus {
	outline: 2px solid var(--primary-dark);
	outline-offset: 2px;
	background: var(--primary-dark);
}

.btn-secondary {
	background: transparent;
	color: var(--light);
	border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
	background: var(--primary-color);
	color: var(--dark-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	border: 2px solid var(--primary-color);
}

.btn-secondary:focus {
	outline: 2px solid var(--primary-dark)!important;
	outline-offset: 2px;
	background: var(--primary-dark)!important;
}

.btn i {
	font-size: 0.85rem;
	transition: transform 0.3s ease;
}

.btn:hover i {
	transform: scale(1.1);
}

/* Header */
header {
	background: transparent;
	padding: 1.5rem 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.logo img {
	height: 130px;
	width: auto;
	transition: transform 0.3s ease;
	transform: scale(1.03);
}

@media only screen and (max-width:767px) {
	.logo img {
		height: 70px;
	}
}

.logo img:hover {
	transform: scale(1.03);
}

.navbar {
	padding: 0;
}

.navbar-toggler {
	border: none;
	padding: 0.5rem;
	transition: transform 0.3s ease;
}

.navbar-toggler:hover {
	transform: rotate(90deg);
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 215, 0, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.navbar-nav {
	margin-left: 75px;
}

.nav-link {
	color: var(--light) !important;
	font-size: 0.95rem;
	font-weight: 500;
	padding: 0.75rem 1.25rem !important;
	text-transform: uppercase;
	transition: var(--transition);
	position: relative;
	align-items: center;
}

.nav-link i {
	font-size: 0.85rem;
}

.nav-link:hover {
	color: var(--primary-color) !important;
	background: rgba(255, 215, 0, 0.1);
	border-radius: 25px;
}

.nav-link:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

.navbar-nav .btn {
	margin: 0 0.5rem;
	padding: 0.6rem 1.5rem;
	font-size: 0.9rem;
	border-radius: 30px;
}

/* Dropdown Menu */
.dropdown-menu {
	background: var(--secondary-color);
	border: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	margin-top: 0.5rem;
	padding: 0.5rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	color: var(--light);
	font-family: 'Poppins', sans-serif;
	font-size: 0.9rem;
	padding: 0.75rem 1.5rem;
	transition: var(--transition);
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.dropdown-item i {
	font-size: 0.85rem;
	color: var(--primary-color);
	transition: transform 0.3s ease;
}

.dropdown-item:hover {
	background: var(--primary-dark);
	color: var(--light);
}

.dropdown-item:hover i {
	transform: scale(1.1);
}

.dropdown-item:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* Banner Section */
.banner-section {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	margin-top: -5rem;
	padding-top: 5rem;
}

.banner-section .owl-carousel .item {
	position: relative;
	min-height: 98vh;
	background-size: cover;
	background-position: center;
}

.banner-section .owl-carousel .item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
/*	background: rgba(0, 0, 0, 0.3);*/
/*	background: linear-gradient(to bottom, rgba(26, 42, 44, 0.7), rgba(26, 42, 44, 0.4));*/
}

.banner-content {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 1200px;
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 1.5rem;
}

.banner-text {
	text-align: left;
}

.banner-text h1 {
	font-size: clamp(2.5rem, 4vw, 3.75rem);
	font-weight: 700;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
	animation: fadeInUp 1s ease-out;
}

.banner-text p {
	font-size: 30px;
	margin-bottom: 2rem;
	animation: fadeInUp 1.2s ease-out;
	max-width: 85%;
	color: var(--light);
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(1.5rem); }
	to { opacity: 1; transform: translateY(0); }
}

.quote-form {
	background: linear-gradient(to bottom, rgba(26, 42, 44, 0.7), rgba(26, 42, 44, 0.5));
	padding: 20px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
	from { opacity: 0; transform: translateX(1.5rem); }
	to { opacity: 1; transform: translateX(0); }
}

.quote-form h3 {
	font-size: 1.75rem;
	color: var(--primary-dark);
	margin-bottom: 1.5rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.quote-form h3 i {
	font-size: 1.25rem;
	color: var(--accent-bright);
}

.quote-form .form-control,
.quote-form .form-select {
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	border-radius: 0.5rem;
	border: 1px solid var(--neutral-gray);
	transition: var(--transition);
	background: rgba(255, 255, 255, 0.9);
	height: 38px;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
	border-color: var(--primary-dark);
	box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
	background: #fff;
}

.quote-form textarea.form-control {
	height: 60px;
	resize: vertical;
}

.quote-form button {
	background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
	color: #fff;
	border: none;
	border-radius: 30px;
	font-size: 0.95rem;
	padding: 0.75rem;
	transition: var(--transition);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.quote-form button i {
	font-size: 0.9rem;
}

.quote-form button:hover {
	background: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.quote-form button:focus {
	outline: 2px solid var(--primary-dark);
	outline-offset: 2px;
}

/* Hero Info Section */
.hero-info {
	padding: 4rem 0;
	background: linear-gradient(135deg, var(--light-color) 50%, var(--light) 100%);
	position: relative;
	overflow: hidden;
}

.hero-info img {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-info img:hover {
	transform: scale(1.03);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.hero-info h4 {
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 700;
	color: var(--primary-dark);
	line-height: 1.4;
	margin-bottom: 1.5rem;
	text-align: left;
	animation: fadeInLeft 1s ease-out forwards;
}

.hero-info h4 span {
	color: var(--accent-bright);
	font-style: italic;
}

.hero-info p.lead {
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	color: var(--neutral-gray);
	line-height: 1.8;
	margin-bottom: 1rem;
	text-align: justify;
	animation: fadeInRight 1.2s ease-out forwards;
}

.disc-list {
	counter-reset: step;
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.disc-list li {
	counter-increment: step;
	position: relative;
	width: 8rem;
	height: 8rem;
	text-align: center;
	border-radius: 50%;
	background: #888;
	color: #888;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 1rem auto;
	overflow: visible;
}

/*@media only screen and (max-width:767px){*/
/*	.disc-list li {*/
/*		width: 115px;*/
/*		height: 115px;*/
/*	}*/
/*}*/

.disc-list li:nth-child(1) {
	background: var(--primary-dark);
	color: var(--primary-dark);
}

.disc-list li:nth-child(2) {
	background: var(--accent-bright);
	color: var(--accent-bright);
}

.disc-list li:nth-child(3) {
	background: var(--secondary-light);
	color: var(--secondary-light);
}

.disc-list li:nth-child(4) {
	background: var(--primary-color);
	color: var(--primary-color);
}

.disc-list li span {
	color: var(--light);
	display: block;
	font-weight: bold;
	font-size: 0.8rem;
	max-width: 5rem;
	margin: 0 auto;
}

.disc-list li span::before {
	content: counter(step);
	display: block;
	font-size: 1.65rem;
	margin-bottom: 0.1rem;
	font-weight: 200;
}

.disc-list li .pointer {
	position: absolute;
	right: -1.6rem;
	width: 1rem;
	height: 1rem;
	z-index: 1;
}

.disc-list li .pointer path {
	fill: none;
	stroke-linejoin: round;
	stroke-width: 3px;
	stroke: currentColor;
}

.disc-list li:nth-child(even) .pointer {
	bottom: 20%;
	transform: rotate(22.5deg);
}

.disc-list li:nth-child(odd) .pointer {
	top: 20%;
	transform: rotate(22.5deg);
}

.disc-list li::before,
.disc-path li::after {
	content: '';
	position: absolute;
	border: 0.25rem solid;
	left: -1.5rem;
	right: -1.5rem;
}

.disc-list li:nth-child(even)::before {
	border-top-style: dotted;
	border-left-style: dotted;
	border-radius: 50%/100% 100% 0 0;
	border-bottom-color: transparent;
	top: -1.5rem;
	bottom: 50%;
}

.disc-list li:nth-child(odd)::before {
	border-bottom-style: dotted;
	border-right-style: dotted;
	border-top-color: transparent;
	border-radius: 50%/0 0 100% 100%;
	bottom: -1.5rem;
	top: 50%;
}

.disc-list li:nth-child(odd)::after {
	transform-origin: bottom center;
	transform: rotate(22.5deg);
	border-width: 0.2rem;
	border-style: solid;
	border-color: transparent;
	border-top-color: inherit;
	border-left-color: inherit;
	border-radius: 50%/100% 100% 0 0;
	border-bottom-color: transparent;
	top: -1.5rem;
	bottom: 50%;
}

.disc-list li:nth-child(even)::after {
	transform-origin: top center;
	transform: rotate(22.5deg);
	border-width: 0.2rem;
	border-style: solid;
	border-color: transparent;
	border-bottom-color: inherit;
	border-right-color: inherit;
	border-radius: 50%/0 0 100% 100%;
	bottom: -1.5rem;
	top: 50%;
}

/* Service Info Section */
.service-info {
	background: url('../image/bg_service.jpg') no-repeat center center fixed;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.service-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(26, 42, 44, 0.7), rgba(26, 42, 44, 0.5));
	z-index: 1;
}

.service-info .container {
	position: relative;
	z-index: 2;
}

.areaserv-item {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	padding: 2rem;
	margin-bottom: 1.5rem;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 215, 0, 0.15);
}

.areaserv-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.areaserv-item i {
	margin-bottom: 1.5rem;
	transition: transform 0.3s ease;
	font-family: 'bootstrap-icons' !important;
	font-size: 3rem;
	color: var(--primary-dark);
	display: inline-block;
	line-height: 1;
}

.areaserv-item:hover i {
	transform: scale(1.15);
}

.areaserv-item h3 {
	font-size: 1.65rem;
	font-weight: 700;
	color: var(--primary-dark);
	margin-bottom: 1rem;
	font-family: 'Playfair Display', serif;
}

.areaserv-item p {
	font-size: 0.95rem;
	color: var(--neutral-gray);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.service_btn .btn {
	padding: 0.65rem 1.75rem;
	font-size: 0.85rem;
	border-radius: 25px;
	min-width: 120px;
}

.service_btn .btn-primary {
	background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
	color: #fff;
}

.service_btn .btn-primary:hover {
	background: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service_btn .btn-secondary {
	border: 2px solid var(--primary-color);
	color: var(--primary-dark);
}

.service_btn .btn-secondary:hover {
	background: var(--primary-color);
	color: #fff;
	transform: translateY(-2px);
}

/* Review Section */
.review-info {
	background: url('../image/bg_review.jpg') no-repeat center center fixed;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.review-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(26, 42, 44, 0.7), rgba(26, 42, 44, 0.5));
	z-index: 1;
}

.review-info .container {
	position: relative;
	z-index: 2;
}

.review-card.animate {
	opacity: 1;
	transform: translateY(0);
}

.review-inner {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem;
	background: var(--light);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease;
}

.review-inner:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-image {
	flex-shrink: 0;
}

.review-image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--primary-color);
	transition: transform 0.3s ease;
}

.review-inner:hover .review-image img {
	transform: scale(1.1);
}

.review-content {
	flex-grow: 1;
}

.review-name {
	font-size: 1.65rem;
	font-weight: 700;
	color: var(--primary-dark);
	margin-bottom: 0.25rem;
	font-family: 'Playfair Display', serif;
}

.review-address {
	font-size: 0.9rem;
	color: var(--neutral-gray);
	margin-bottom: 0.5rem;
	font-style: italic;
}

.review-rating {
	margin-bottom: 0.75rem;
}

.review-rating i {
	font-size: 1rem;
	color: var(--primary-color);
	margin: 0 2px;
}

.review-text {
	font-size: 0.95rem;
	color: var(--neutral-gray);
	line-height: 1.6;
	margin: 0;
	padding-left: 1rem;
	border-left: 3px solid var(--primary-color);
}


.text-dark {
	color: var(--primary-dark)!important;
}

.text-dark:hover {
	color: #fff!important;
} 




/* ----------------------------------- */
/* Fleets Section */
/* ----------------------------------- */


.hero-fleets {
	padding: 3.125rem 0;
	background: linear-gradient(135deg, var(--light-color) 0%, var(--light-soft) 100%);
}

.fleet-card img {
	width: 100%;
	object-fit: cover;
}

.fleet-card {
	border: none;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.fleet-card {
	border: none;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.fleet-card:hover {
	transform: translateY(-5px);
}

.fleet-card img {
	width: 100%;
	object-fit: cover;
}

.fleet-card .card-body {
	padding: 1.5rem;
}

.fleet-card h4 {
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0.9375rem;
	color: var(--primary-dark);
}

.fleet_details hr {
	width: 50%;
	height: 4px;
	background: var(--accent-bright);
	border: none;
	margin: 0 auto 0.9375rem;
}

.fleet_info {
	display: flex;
	justify-content: center;
	gap: 53px;
	padding-bottom: 0.5rem;
	margin-bottom: 0.5rem;
}


.gallery_product {
	margin-bottom: 15px;
	
}


.fleet_info p,
.fleet_details p {
	margin: 0;
	font-size: 0.9rem;
}



/*fleet css*/


.card-body {
	color: var(--neutral-gray) !important;
}

.btn-group, .btn-group-vertical {
	position: relative;
	display: block;
	vertical-align: middle;
}

.fleet_name{
	color: var(--primary-color);
}

.btn-group .active{
	background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
	color: var(--light)!important; 
	border-radius: 10px!important;
	border: none;
}

.btn-group .active:hover{
	background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
	color: var(--light)!important; 
	border-radius: 10px!important;
	border: none;
}


.btn-outline-dark {
	--bs-btn-color: var(--primary-dark);
	--bs-btn-border-color: 2px solid var(--primary-dark)!important;
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #212529;
	--bs-btn-hover-border-color: #212529;
	--bs-btn-focus-shadow-rgb: 33, 37, 41;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #212529;
	--bs-btn-active-border-color: #212529;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #212529;
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: #212529;
	--bs-gradient: none;
	border: 2px solid var(--primary-dark)!important;
	border-radius: 10px!important;
} 

.btn-outline-dark:hover {
	border-radius: 10px!important;
	border: 2px solid var(--primary-dark);
	background: none;
	color: var(--primary-dark);
} 
.btn-outline-dark:focus {
	border-radius: 10px!important;
	border: 2px solid var(--primary-dark)!important;
	background: var(--primary-dark)!important;
	color: #212529;
} 

/* Process Section */
.process-section {
	background: var(--light);
}

.process-steps {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding: 0 20px;
}

.process-steps::before {
	content: '';
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--accent-color);
	z-index: 1;
}

.process-step {
	flex: 1;
	text-align: center;
	position: relative;
	z-index: 2;
	padding: 0 15px;
}

.process-step .step-number {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	color: var(--light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	box-shadow: var(--shadow);
	z-index: 999;
}

.process-step .icon-wrapper {
	width: 100px;
	height: 100px;
	background: var(--light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 2px solid var(--primary-color);
}

.process-step:hover .icon-wrapper {
	transform: translateY(-5px);
	background: var(--accent-color);
	border: 2px solid var(--accent-color);
}

.process-step .icon-wrapper i {
	font-size: 2rem;
	color: var(--accent-color);
	transition: var(--transition);
}

.process-step:hover .icon-wrapper i {
	color: var(--light);
}

.process-step h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.process-step p {
	font-size: 0.95rem;
	color: var(--neutral-gray);
	margin-bottom: 0;
}

/* Newsletter Section */
.newsletter-section {
	background: linear-gradient(rgba(26, 42, 44, 0.9), rgba(26, 42, 44, 0.9)), url(../image/bg_review.jpg) no-repeat center center;
	background-size: cover;
	color: var(--light);
	position: relative;
	background-attachment: fixed;
}

.newsletter-content {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.newsletter-content h3 {
	font-size: 2.8rem;
	margin-bottom: 20px;
	color: var(--light);
	font-weight: 700;
}

.newsletter-content p {
	font-size: 1.1rem;
	margin-bottom: 25px;
	opacity: 0.9;
}

.newsletter-content .form-control {
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	border-radius: 0.5rem;
	border: 1px solid var(--neutral-gray);
	transition: var(--transition);
	background: rgba(255, 255, 255, 0.9);
	height: 38px;
	padding: 0 15px;
}

.newsletter-content .form-control:focus {
	border-color: var(--primary-dark);
	box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
	background: #fff;
}

.newsletter-content button {
	background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
	color: var(--dark-color);
	border: none;
	border-radius: 30px;
	font-size: 0.95rem;
	padding: 0.75rem;
	transition: var(--transition);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.newsletter-content button:hover {
	background: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-content button:focus {
	outline: 2px solid var(--primary-dark);
	outline-offset: 2px;
}

/* Footer */
.footer {
	background-color: var(--secondary-color);
	color: var(--light-color);
	padding: 4rem 0 0;
	border-top: 3px solid rgba(255, 255, 255, 0.15);
}

.footer p {
	color: var(--light-color);
	font-size: 1rem;
	line-height: 1.8;
}

.footer-logo img {
	height: 133px;
	margin-bottom: 1.1625rem;
}

.footer-about {
	margin-bottom: 2rem;
}

.footer .title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	text-transform: uppercase;
	color: var(--light-color);
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: rgba(248, 248, 248, 0.8);
	text-decoration: none;
	font-size: 1rem;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--primary-color);
	padding-left: 0.75rem;
}

.footer-contact p {
	font-size: 1rem;
	margin-bottom: 5px;
}

.footer-contact i {
	margin-right: 0.75rem;
	color: var(--primary-color);
	font-size: 1.2rem;
}

.footer-social a {
	color: var(--light-color);
	width: 2.8125rem;
	height: 2.8125rem;
	border-radius: 50%;
	background: rgba(255, 215, 0, 0.15);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.75rem;
	transition: var(--transition);
}

.footer-social a:hover {
	background: var(--primary-dark);
	transform: translateY(-0.5rem);
}

.footer-bottom {
	padding: 1.5625rem 0;
	margin-top: 0.625rem;
	text-align: center;
}

.footer-bottom p {
	margin-bottom: 0;
	font-size: 1rem;
	color: var(--light-color);
}




/* Animations */
.animate-up {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
	to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/*offcanvas menu*/
.offcanvas-end {
	max-width: 100%;
	border-left: 1px solid #e0e0e0;
	background-color: #fff;
}

.offcanvas-header {
	padding: 0.75rem 1rem; 
	border-bottom: 1px solid #e0e0e0;
	background-color: #fff;
}

.offcanvas-header h5 {
	font-size: 1.25rem; 
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
}

.offcanvas-header .btn-close {
	opacity: 0.6;
	transition: opacity 0.2s ease;
}

.offcanvas-header .btn-close:hover {
	opacity: 1;
}

.offcanvas-body {
	padding: 1rem; 
	font-size: 0.9rem;
	color: #333;
}

.offcanvas-body ul[role="navigation"] {
	margin: 0;
}

.offcanvas-body a {
	display: block;
	padding: 0.5rem 0.75rem; 
	color: #333;
	text-decoration: none;
	border-radius: 0.25rem;
	transition: all 0.2s ease;
}

.offcanvas-body a:hover {
	background-color: #f1f1f1;
	transform: scale(1.02); 
}

.offcanvas-body a.active {
	background-color: #e6f0ff;
	color: #005cbf;
	font-weight: 500;
}

.offcanvas-body a i {
	font-size: 0.9rem;
	vertical-align: middle;
	margin-right: 0.5rem;
	color: #555;
}

.offcanvas-body a.active i {
	color: #005cbf;
}

.offcanvas-body hr {
	border-color: #e0e0e0;
	margin: 0.75rem 0;
}

.offcanvas-body h6 {
	font-size: 0.85rem;
	font-weight: 700;
	color: #1a1a1a;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.offcanvas-contact-info li {
	margin-bottom: 0.25rem; 
}

.offcanvas-contact-info a {
	color: #555;
	font-size: 0.85rem;
}

.offcanvas-contact-info a:hover {
	color: #005cbf;
	background-color: transparent;
	transform: none; 
}

.offcanvas-social {
	display: flex;
	gap: 0.75rem; 
}

.offcanvas-social a {
	font-size: 1rem;
	color: #555;
	padding: 0.25rem;
}

.offcanvas-social a:hover {
	color: #005cbf;
	background-color: transparent;
	transform: scale(1.1);
}

.offcanvas-body a:focus {
	outline: 2px solid #005cbf;
	outline-offset: 2px;
	background-color: #f1f1f1;
}



/* Scrollbar CSS */
.scroll-top-wrapper {
	position: fixed;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	text-align: center;
	z-index: 99999999;
	color: #015b90;
	width: 50px;
	height: 48px;
	line-height: 48px;
	right: 30px;
	bottom: 30px;
	padding-top: 2px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	transition: all 0.5s ease-in-out;
}

.scroll-top-wrapper.show {
	border-radius: 50%;
	background: #d4af37;
	visibility: visible;
	cursor: pointer;
	opacity: 1.0;
}

.show {
	display: block !important;
}

.scroll-top-inner i {
	font-size: 40px;
}

/*tap to call css*/
.fab-container {
	position: fixed;
	top: 250px;
	right: 5px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 999;
}

.fab-button {
	background: #bb7b08!important; 
	color: #fff;
	width: 48px;
	height: 48px;
	border: 2px solid #fff; 
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 24px; 
	transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.fab-button:hover {
	background: #b8972e;
	transform: scale(1.1);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.fab-button:active {
	transform: scale(0.95);
}

.fab-button.phone {
	background: #28a745; 
}
.fab-button.phone:hover {
	background: #218838;
}

.fab-button.email {
	background: #007bff; 
}
.fab-button.email:hover {
	background: #0069d9;
}

.fab-button.message {
	background: #17a2b8; 
}
.fab-button.message:hover {
	background: #138496;
}

.fab-button.whatsapp {
	background: #25d366; 
}
.fab-button.whatsapp:hover {
	background: #20b758;
}

.fab-button.telegram {
	background: #0088cc; 
}
.fab-button.telegram:hover {
	background: #0077b3;
}

.boxneww1 {
	padding: 25px 35px 7px;
	border-radius: 10px;
	background: var(--primary-dark);
}