/* Contact Section Styling */
.contact-section {
	padding: 80px 20px;
	background: url('images/header-image.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
  }
  
  .contact-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.85);
	z-index: 0;
  }
  
  .contact-container {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	animation: fadeIn 1s ease;
  }
  
  @keyframes fadeIn {
	0% { opacity: 0; transform: translateY(20px); }
	100% { opacity: 1; transform: translateY(0); }
  }
  
  .contact-info {
	flex: 1 1 300px;
  }
  
  .contact-form {
	flex: 1 1 400px;
  }
  
  .contact-form form {
	display: flex;
	flex-direction: column;
  }
  
  .contact-form .form-group {
	margin-bottom: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
  }
  
  .contact-form button {
	padding: 12px;
	background-color: #009ca6;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
  }
  
  .contact-form button:hover {
	background-color: #007e89;
  }
  