body {
	background-color: #2eb1d7;
	color: #ffffff;
}

.navbar {
	background-color: #ffffff;
}

.navbar-brand img {
	height: 40px;
}

.form-container {
	background-color: #ffffff;
	padding: 30px;
	border-radius: 10px;
	color: #000000;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.form-control {
	border-radius: 5px;
	margin-bottom: 15px;
}

.btn-custom {
	background-color: #f5a623;
	color: #fff;
	font-weight: bold;
	width: 100%;
	border-radius: 5px;
}

.btn-custom:hover {
	background-color: #e6991d;
}

.privacy-text {
	font-size: 0.875rem;
	margin-top: 10px;
	text-align: center;
}

h1 {
	font-weight: bold;
}

.highlight {
	color: #403c35;
}

@media (max-width: 767.98px) {
	h1 {
		font-size: 1.8rem;
	}
}


.contact-sidebar {
	position: fixed;
	right: 15px;
	bottom: 100px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 999;
}

.sidebar-icon {
	width: 50px;
	height: 50px;
	background-color: #25d366;
	color: white;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, background-color 0.3s ease;
	text-decoration: none;
}

.call-icon {
	background-color: #007bff;
}

.sidebar-icon:hover {
	transform: scale(1.1);
}



.testimonials-section .card:hover {
  transform: scale(1.02);
  transition: 0.3s ease;
}

