.dr1021contactformhome {
	background: linear-gradient(to bottom, #e0f7fa, #ffffff);
	font-family: 'Noto Sans Telugu', 'Segoe UI', sans-serif;
}

/* Section Styling */
.creative-contact-section {
	padding: 60px 20px;
	color: #004d40;
}

/* Flex Layout */
.creative-contact-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: auto;
	align-items: flex-start;
	justify-content: center;
}

/* Contact Form */
.creative-contact-form {
	flex: 1 1 420px;
	background: #ffffff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 150, 136, 0.08);
	border-top: 5px solid #26a69a;
	transition: box-shadow 0.3s ease;
}

.creative-contact-form:hover {
	box-shadow: 0 16px 40px rgba(0, 150, 136, 0.15);
}

.creative-contact-form h2 {
	font-size: 26px;
	text-align: center;
	color: #00796b;
	margin-bottom: 24px;
	font-weight: bold;
}

/* Form Inputs */
.form-group {
	margin-bottom: 20px;
}

.form-group label {
	font-weight: 600;
	display: block;
	margin-bottom: 6px;
	color: #004d40;
}

.form-group input, .form-group textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1.5px solid #b2dfdb;
	border-radius: 10px;
	background: #f1fdfc;
	font-size: 15px;
	color: #004d40;
	transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
	border-color: #26a69a;
	background: #fff;
	outline: none;
	box-shadow: 0 0 8px rgba(38, 166, 154, 0.2);
}

textarea {
	resize: vertical;
	min-height: 120px;
}

/* Submit Button */
.submit-btn {
	width: 100%;
	padding: 14px;
	font-size: 16px;
	font-weight: bold;
	background: linear-gradient(to right, #26a69a, #00796b);
	color: #fff;
	border: none;
	border-radius: 10px;
	box-shadow: 0 8px 18px rgba(38, 166, 154, 0.3);
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
	transform: translateY(-2px);
	background: linear-gradient(to right, #00796b, #004d40);
}

/* Contact Info */
.creative-contact-info {
	flex: 1 1 300px;
	background: #f0fdfa;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 150, 136, 0.08);
	border-left: 5px solid #26a69a;
}

.creative-contact-info h3 {
	font-size: 22px;
	color: #00796b;
	margin-bottom: 16px;
	border-bottom: 2px solid #b2dfdb;
	padding-bottom: 6px;
}

.creative-contact-info p {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 12px;
}

.creative-contact-info a {
	color: #00796b;
	text-decoration: none;
	border-bottom: 1px dashed #00796b;
}

.creative-contact-info a:hover {
	color: #004d40;
	border-bottom: 1px solid #004d40;
}

/* Responsive */
@media ( max-width : 768px) {
	.creative-contact-flex {
		flex-direction: column;
		padding: 0 10px;
		gap: 24px;
	}
	.creative-contact-form, .creative-contact-info {
		width: 100%;
		padding: 20px;
	}
	.creative-contact-form h2 {
		font-size: 22px;
	}
	.submit-btn {
		font-size: 15px;
		padding: 12px;
	}
	.form-group input, .form-group textarea {
		font-size: 14px;
		padding: 12px;
	}
}