@charset "utf-8";
 .section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}
.section-title h2 {
	font-size: 2.2rem;
	color: #165DFF;
	display: inline-block;
	padding-bottom: 0.5rem;
	position: relative;
}
.section-title h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--secondary-color);
}
.contact-wrapper {
	display: flex;
	flex-wrap: wrap;
	background-color: white;
	border-radius: 2px;
	overflow: hidden;
	box-shadow: var(--shadow);
}
.contact-form {
	flex: 1;
	min-width: 300px;
	padding: 2.5rem;
}
.contact-info {
	flex: 1;
	min-width: 300px;
	padding: 2.5rem;
	background-color: #165DFF;
	color: white;
}
.form-group {
	margin-bottom: 1.5rem;
}
.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--dark-color);
}
.form-control {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 1rem;
	transition: var(--transition);
}
.form-control:focus {
	outline: none;
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}
textarea.form-control {
	min-height: 150px;
	resize: vertical;
}
.btn {
	display: inline-block;
	padding: 0.9rem 2rem;
	background-color:#165dff;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
}
.btn:hover {
	background-color: #2980b9;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.info-item {
	margin-bottom: 2rem;
}
.info-item:last-child {
	margin-bottom: 0;
}
.info-item h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}
.info-item h3 i {
	margin-right: 0.8rem;
	color: var(--secondary-color);
	font-size: 1.5rem;
}
.info-item p {
	color: #ddd;
	font-size: 1rem;
	line-height: 1.7;
}
@media (max-width: 768px) {
	.contact-wrapper {
	flex-direction: column;
}
.contact-form, .contact-info {
	padding: 2rem 1.5rem;
}
.section-title h2 {
	font-size: 1.8rem;
}
} 
/* Animation for form submission*/
	@keyframes fadeIn {
	from {
	opacity: 0;
	transform: translateY(10px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
} .success-message {
	display: none;
	animation: fadeIn 0.5s ease;
	color: var(--success-color);
	margin-top: 1rem;
	padding: 1rem;
	border: 1px solid var(--success-color);
	border-radius: 6px;
	background-color: rgba(40, 167, 69, 0.1);
}