
a{text-decoration: none;}.contact-section {
	background: linear-gradient(135deg, #f8fbff 0%, #f1f6ff 100%);
	padding: 80px 0;
	margin-top: 30px;
	position: relative;
}

.contact-section::before {
	content: '';
	position: absolute;
	top: -3px;
	left: 0;
	width: 100%;
	height: 6px;
	background: linear-gradient(90deg, #4e8cff, #38b36f);
	border-radius: 3px;
}

.contact-info {
	padding: 20px;
}

.contact-info h2 {
	color: #393939;
	margin-bottom: 20px;
	font-weight: 700;
	position: relative;
	padding-bottom: 15px;
}

.contact-info h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 80px;
	height: 3px;
	background: linear-gradient(to right, #4e8cff, #38b36f);
}

.contact-method {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
}

.icon-wrapper {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #4e8cff, #38b36f);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}

.icon-wrapper i {
	color: white;
	font-size: 20px;
}

.contact-method h5 {
	margin-bottom: 5px;
	color: #393939;
}

.contact-method p {
	margin-bottom: 0;
	color: #626262;
}

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

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4e8cff;
	font-size: 18px;
	transition: all 0.3s ease;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	text-decoration: none;
}

.social-icon:hover {
	background: linear-gradient(135deg, #4e8cff, #38b36f);
	color: white;
	transform: translateY(-3px);
}

.contact-form-container {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	position: relative;
	z-index: 1;
}

.contact-form-container h3 {
	margin-bottom: 25px;
	color: #393939;
	text-align: center;
	font-weight: 600;
}

.contact-form .form-control {
	border-radius: 8px;
	padding: 12px 15px;
	border: 1px solid #e1e5eb;
	box-shadow: none;
	transition: all 0.3s ease;
}

.contact-form .form-control:focus {
	border-color: #4e8cff;
	box-shadow: 0 0 0 3px rgba(78, 140, 255, 0.15);
}

.contact-form label {
	font-weight: 600;
	color: #393939;
	font-size: 0.9rem;
	margin-bottom: 6px;
}

.btn-contact {
	padding: 12px 25px;
	background: linear-gradient(135deg, #4e8cff, #38b36f);
	border: none;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: white;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin-top: 15px;
}
.btn-contact:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	background: linear-gradient(135deg, #38b36f, #4e8cff);
}

.form-check-label {
	font-size: 0.85rem;
	color: #626262;
}

@media (max-width: 768px) {
	.contact-section {
		padding: 60px 0;
	}

	.contact-info {
		margin-bottom: 40px;
	}

	.contact-form-container {
		padding: 25px 20px;
	}
}