body {
	font-family: 'Book Antiqua', sans-serif;
	background: linear-gradient(to bottom, #4b0082, #8a2be2);
	color: white;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

header {
	text-align: center;
	padding: 20px 0;
	background-image: url('../img/designvideocolorslongblueconsg.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	border-bottom: 2px solid #6a0dad;
}

header h1 {
	font-size: 3em;
	color: #ffffff;
	text-shadow: 0 0 5px #000;
}

.intro-text {
	text-align: center;
	padding: 40px 20px;
	background-image: url('../img/designvideocolorslongblueflipcutx.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.services {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	padding: 40px 20px;
	background-image: url('../img/backgroundspacecolorscnew.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.service {
	background: rgba(255, 255, 255, 0.01);
	backdrop-filter: blur(20px);
	border-radius: 10px;
	margin: 20px;
	padding: 20px;
	text-align: center;
	width: 250px;
	transition: transform 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.servicef {
	background: rgba(255, 255, 255, 0.01);
	backdrop-filter: blur(40px);
	border-radius: 10px;
	margin: 10px;
	padding: 10px;
	text-align: center;
	transition: transform 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service:hover {
	transform: scale(1.05);
}

.service img {
	width: 80px;
	height: 80px;
	margin-bottom: 15px;
}

.contact-form {
	text-align: center;
	background-image: url('../img/backgroundllflip.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	padding: 40px 20px;

}

.contact-form input,
.contact-form select,
.contact-form textarea {
	display: block;
	margin: 10px auto;
	padding: 10px;
	width: 80%;
	max-width: 500px;
	border: none;
	border-radius: 5px;
	box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
}

.contact-form button {
	background: #722693bf;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.contact-form button:hover {
	background: #3700b3;
}

footer {
	text-align: center;
	padding: 20px 0;
	background: #3700b3;
	background-image: url('../img/backgroundnnshortpp.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

footer a {
	color: #e0e0e0;
	margin: 0 10px;
	display: inline-block;
	vertical-align: middle;
}

footer a img {
	display: block;
	margin: 0;
	padding: 0;
	width: 30px;
	/* Adjust the size as needed */
	height: auto;
}

footer p {
	margin: 5px 0;
	color: #e0e0e0;
}

.neomorphic {
	border-radius: 15px;
	box-shadow: 5px 5px 10px #2a2a2a, -5px -5px 10px #4a4a4a;
}

.magic-effect {
	animation: magic 2s infinite alternate;
}

@keyframes magic {
	0% {
		text-shadow: 0 0 5px #f0f, 0 0 10px #f0f, 0 0 15px #f0f;
	}

	100% {
		text-shadow: 0 0 10px #0ff, 0 0 15px #0ff, 0 0 20px #0ff;
	}
}