.dr1028contactformhome {
	background: linear-gradient(to bottom, #F4F7FA, #ffffff);
	font-family: 'Noto Sans Telugu', 'Segoe UI', sans-serif;
}

.creative-contact-section {
	padding: 60px 20px;
	color: #2C3E50;
}

.creative-contact-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: auto;
	justify-content: center;
}

.creative-contact-form {
	flex: 1 1 420px;
	background: #ffffff;
	padding: 40px;
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(46, 58, 89, 0.08);
	border-top: 5px solid #6FCF97;
}

.creative-contact-form h2 {
	font-size: 26px;
	text-align: center;
	color: #2E3A59;
	margin-bottom: 8px;
}

.telugu-sub {
	text-align: center;
	font-size: 15px;
	color: #6FCF97;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	font-weight: bold;
	margin-bottom: 6px;
	display: block;
	color: #2C3E50;
}

.form-group input, .form-group textarea {
	width: 100%;
	padding: 14px;
	border: 1.5px solid #cfd8dc;
	border-radius: 10px;
	background: #F4F7FA;
	font-size: 15px;
	color: #2C3E50;
}

.form-group input:focus, .form-group textarea:focus {
	border-color: #6FCF97;
	background: #ffffff;
	outline: none;
	box-shadow: 0 0 8px rgba(111, 207, 151, 0.3);
}

.submit-btn {
	width: 100%;
	padding: 14px;
	font-size: 16px;
	font-weight: bold;
	background: linear-gradient(to right, #6FCF97, #2E3A59);
	color: #fff;
	border: none;
	border-radius: 10px;
	box-shadow: 0 8px 18px rgba(46, 58, 89, 0.2);
	cursor: pointer;
	transition: 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-2px);
	background: linear-gradient(to right, #2E3A59, #6FCF97);
}

.creative-contact-info {
	flex: 1 1 300px;
	background: #F4F7FA;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
	border-left: 5px solid #6FCF97;
}

.creative-contact-info h3 {
	font-size: 22px;
	color: #2E3A59;
	margin-bottom: 16px;
	border-bottom: 2px solid #6FCF97;
	padding-bottom: 6px;
}

.creative-contact-info p, .creative-contact-info a {
	font-size: 15px;
	line-height: 1.6;
	color: #2C3E50;
	text-decoration: none;
}

.creative-contact-info a:hover {
	text-decoration: underline;
	color: #FF7043;
}

@media screen and (max-width: 768px) {
	.creative-contact-form, .creative-contact-info {
		flex: 1 1 100%;
		padding: 20px;
	}
}