/* Contact Section */
.contact-section {
	padding: 64px;
	width: 100%;
	height: 90vh;
	padding-top: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	font-family: Arial, sans-serif;
}

.contact-section .heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin-bottom: 32px;
}

.contact-section img {
	background: var(--bblue);
	height: 200px;
	width: 150px;
	object-fit: cover;
	border-radius: 8px;
}

.contact-section h2 {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 2rem;
	color: var(--bblue);
}

.contact-section .text-div {
	width: 100%;
	max-width: 900px;
	text-align: left;
	font-size: 1.1rem;
	color: #555;
	line-height: 1.6;
}

.contact-details {
	margin-top: 16px;
}

.contact-details p {
	margin: 8px 0;
}

.contact-details a {
	color: var(--bblue);
	text-decoration: none;
}

.contact-details a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.contact-section {
		padding: 40px 16px;
	}

	.contact-section .heading {
		flex-direction: column;
		gap: 16px;
	}

	.contact-section img {
		width: 100px;
		height: 100px;
	}
}
