/* ===============================
   SILICON VALLEY INDIA THEME
   REPLACE YOUR EXISTING COLORS
================================== */

.dr1060contactform2 {
	position: relative;
	padding: 120px 20px;
	overflow: hidden;
	font-family: 'Poppins', sans-serif;

	background:
		radial-gradient(circle at top left,
			rgba(34, 211, 238, 0.15),
			transparent 35%),
		radial-gradient(circle at bottom right,
			rgba(59, 130, 246, 0.15),
			transparent 35%),
		linear-gradient(
			180deg,
			#020617 0%,
			#071220 50%,
			#020617 100%);
}

/* FLOATING LIGHTS */

.dr1060contactform2::before,
.dr1060contactform2::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: .35;
	z-index: -1;
	animation: dr1060contactpulse 10s ease-in-out infinite;
}

.dr1060contactform2::before {
	width: 320px;
	height: 320px;
	background: #22D3EE;
	top: -100px;
	left: -100px;
}

.dr1060contactform2::after {
	width: 260px;
	height: 260px;
	background: #3B82F6;
	bottom: -80px;
	right: -80px;
	animation-delay: 4s;
}

@keyframes dr1060contactpulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.08);
	}
}

/* CARD */

.dr1060contactform2 .contact-card {
	position: relative;
	overflow: hidden;

	max-width: 700px;
	margin: auto;
	padding: 65px 48px;
	border-radius: 38px;

	background:
		linear-gradient(
			145deg,
			rgba(255,255,255,.08),
			rgba(255,255,255,.03));

	backdrop-filter: blur(24px);

	border: 1px solid rgba(255,255,255,.10);

	box-shadow:
		0 30px 80px rgba(0,0,0,.55),
		inset 0 1px 0 rgba(255,255,255,.08);

	animation: dr1060fadeup 1s ease both;

	transition:
		transform .4s ease,
		box-shadow .4s ease,
		border-color .4s ease;
}

.dr1060contactform2 .contact-card::before {
	content: "";
	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			135deg,
			rgba(255,255,255,.12),
			transparent 35%);

	pointer-events: none;
}

.dr1060contactform2 .contact-card:hover {
	transform: translateY(-8px);

	box-shadow:
		0 40px 90px rgba(0,0,0,.65),
		0 0 40px rgba(34,211,238,.18);

	border-color:
		rgba(34,211,238,.35);
}

/* HEADER */

.dr1060contactform2 header {
	margin-bottom: 35px;
}

.dr1060contactform2 .contact-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	border-radius: 60px;

	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;

	color: #67E8F9;

	background:
		rgba(34,211,238,.08);

	border:
		1px solid rgba(34,211,238,.25);

	box-shadow:
		0 0 25px rgba(34,211,238,.08);
}

.dr1060contactform2 .contact-title {
	margin-top: 24px;
	font-size: 18px;
	font-weight: 700;

	background:
		linear-gradient(
			90deg,
			#67E8F9,
			#60A5FA);

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1060contactform2 .contact-subtitle-main {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.15;
	margin-top: 12px;
	color: #ffffff;
}

.dr1060contactform2 .contact-subtitle-main::after {
	content: "";
	display: block;
	width: 120px;
	height: 5px;
	margin-top: 18px;
	border-radius: 30px;

	background:
		linear-gradient(
			90deg,
			#22D3EE,
			#3B82F6);
}

/* FORM */

.dr1060contactform2 .field {
	position: relative;
	margin-bottom: 24px;
}

/* INPUTS */

.dr1060contactform2 input,
.dr1060contactform2 textarea,
.dr1060contactform2 select {
	width: 100%;
	padding: 18px;
	border-radius: 18px;

	background:
		linear-gradient(
			145deg,
			rgba(255,255,255,.06),
			rgba(255,255,255,.03));

	border:
		1px solid rgba(255,255,255,.08);

	color: #ffffff;
	font-size: 15px;

	outline: none;

	transition:
		border-color .3s ease,
		box-shadow .3s ease,
		background .3s ease;
}

.dr1060contactform2 input:hover,
.dr1060contactform2 textarea:hover,
.dr1060contactform2 select:hover {
	border-color:
		rgba(34,211,238,.35);
}

.dr1060contactform2 input:focus,
.dr1060contactform2 textarea:focus,
.dr1060contactform2 select:focus {

	border-color: #22D3EE;

	box-shadow:
		0 0 0 3px rgba(34,211,238,.15),
		0 0 24px rgba(34,211,238,.18);

	background:
		rgba(255,255,255,.08);
}

/* SELECT */

.dr1060contactform2 select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	background-image:
		linear-gradient(45deg,
			transparent 50%,
			#22D3EE 50%),
		linear-gradient(135deg,
			#22D3EE 50%,
			transparent 50%);

	background-position:
		calc(100% - 22px) calc(50% - 3px),
		calc(100% - 16px) calc(50% - 3px);

	background-size: 6px 6px;
	background-repeat: no-repeat;
}

.dr1060contactform2 select option {
	background: #071220;
	color: #ffffff;
}

/* LABELS */

.dr1060contactform2 label {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	padding: 0 8px;

	font-size: 13px;
	color: #94a3b8;

	background: #071220;
	border-radius: 10px;

	transition: .25s ease;
	pointer-events: none;
}

.dr1060contactform2 textarea + label {
	top: 22px;
}

.dr1060contactform2 input:focus + label,
.dr1060contactform2 input:not(:placeholder-shown) + label,
.dr1060contactform2 textarea:focus + label,
.dr1060contactform2 textarea:not(:placeholder-shown) + label,
.dr1060contactform2 select:focus + label,
.dr1060contactform2 select:valid + label {

	top: -10px;
	font-size: 11px;
	font-weight: 700;
	color: #22D3EE;
}

/* BUTTON */

.dr1060contactform2 .submit-btn {
	width: 100%;
	padding: 18px;
	border-radius: 18px;
	border: none;

	background:
		linear-gradient(
			135deg,
			#22D3EE,
			#3B82F6);

	color: #ffffff;
	font-size: 16px;
	font-weight: 700;

	cursor: pointer;

	box-shadow:
		0 20px 50px rgba(34,211,238,.35);

	transition:
		transform .3s ease,
		box-shadow .3s ease;
}

.dr1060contactform2 .submit-btn:hover {
	transform: translateY(-4px);

	box-shadow:
		0 30px 70px rgba(34,211,238,.45);
}

/* NOTE */

.dr1060contactform2 .contact-note {
	margin-top: 26px;
	padding: 20px;
	border-radius: 20px;

	background:
		linear-gradient(
			145deg,
			rgba(255,255,255,.05),
			rgba(255,255,255,.02));

	border:
		1px solid rgba(255,255,255,.08);

	text-align: center;
	font-size: 14px;
	color: rgba(255,255,255,.75);
}

.dr1060contactform2 .contact-note a {
	color: #67E8F9;
	text-decoration: none;
	font-weight: 600;
}

.dr1060contactform2 .contact-note a:hover {
	color: #ffffff;
}

/* HONEYPOT */

.dr1060contactform2 .hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
}

/* ANIMATION */

@keyframes dr1060fadeup {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* MOBILE */

@media (max-width:768px){

	.dr1060contactform2{
		padding:80px 16px;
	}

	.dr1060contactform2 .contact-card{
		padding:40px 24px;
		border-radius:28px;
	}

	.dr1060contactform2 .contact-subtitle-main{
		font-size:20px;
	}
}