
body{
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	background: #808080;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin:0;
	font-weight: 700;
}

img{
	max-width: 100%;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#particles-js canvas{
	display: block;
}

.comming-soon{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	min-height: 100%;
	background: #808080;
	padding: 40px 0;
	display: flex;
	align-items: center;
}

.coming-soon-box{
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 3;
}

.logo{
	text-align: center;
	display: block;
	margin: 0 auto;
	animation: rotate 10s linear infinite;
	transform-origin: center center;
}

.logo-text{
	display: block;
	margin: 20px auto 0;
	max-width: 100%;
	height: auto;
}

.logo img{
	display: block;
	margin: 0 auto;
}

.logo h1{
	color: #fff;
	font-size: 52px;
	font-weight: 600;
}

.logo p{
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 300;
}

@keyframes rotate{
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(360deg);
	}
}

.coming-text{
	padding: 40px 0;
}

.coming-text h2{
	font-size: 100px;
	color: #fff;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
}

.typewriter-text{
	display: inline-block;
}

.typewriter-text .letter{
	display: inline-block;
	opacity: 0;
	animation: typewriterLoop 5s ease-in-out infinite;
}

.typewriter-text .letter.space{
	width: 0.3em;
}

.typewriter-text .letter:nth-child(1){ animation-delay: 0.1s; }
.typewriter-text .letter:nth-child(2){ animation-delay: 0.2s; }
.typewriter-text .letter:nth-child(3){ animation-delay: 0.3s; }
.typewriter-text .letter:nth-child(4){ animation-delay: 0.4s; }
.typewriter-text .letter:nth-child(5){ animation-delay: 0.5s; }
.typewriter-text .letter:nth-child(6){ animation-delay: 0.6s; }
.typewriter-text .letter:nth-child(7){ animation-delay: 0.7s; }
.typewriter-text .letter:nth-child(8){ animation-delay: 0.8s; }
.typewriter-text .letter:nth-child(9){ animation-delay: 0.9s; }
.typewriter-text .letter:nth-child(10){ animation-delay: 1.0s; }
.typewriter-text .letter:nth-child(11){ animation-delay: 1.1s; }
.typewriter-text .letter:nth-child(12){ animation-delay: 1.2s; }
.typewriter-text .letter:nth-child(13){ animation-delay: 1.3s; }
.typewriter-text .letter:nth-child(14){ animation-delay: 1.4s; }
.typewriter-text .letter:nth-child(15){ animation-delay: 1.5s; }

@keyframes typewriterLoop{
	0%{
		opacity: 0;
		transform: translateY(10px);
	}
	5%{
		opacity: 1;
		transform: translateY(0);
	}
	70%{
		opacity: 1;
		transform: translateY(0);
	}
	75%{
		opacity: 0;
		transform: translateY(10px);
	}
	100%{
		opacity: 0;
		transform: translateY(10px);
	}
}

.social-link{
	text-align: center;
}

.social-link a{
	display: inline-block;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid #fff;
	color: #fff;
	font-size: 18px;
	padding-top: 8px;
	margin: 0 4px;
	transition: all 0.4s linear;
}

.social-link a:hover{
	background: #fff;
	color: #3dab87;
}

.newsletter{
	max-width: 746px;
	margin: 40px auto 0;
}

.newsletter p{
	color: #fff;
	font-size: 16px;
	line-height: 1.5em;
	letter-spacing: 0.02em;
}

.newsletter-form{
	background: rgba(255,255,255,0.1);
}

.new-text{
	height: 50px;
	border: none;
	display: inline-block;
	width: 72%;
	background: none;
	box-shadow: none;
	outline: 0;
	padding: 0 20px;
	font-size: 16px;
	color: #fff;
}

.new-text::-webkit-input-placeholder {
	color: #fff;
}

.new-text::-moz-placeholder {
	color: #fff;
}

.new-text:-ms-input-placeholder{
	color: #fff;
}

.new-text:-moz-placeholder {
	color: #fff;
}

.new-btn{
	height: 50px;
	border: none;
	display: inline-block;
	margin-left: -5px;
	width: 28%;
	background: rgba(255,255,255,0.3);
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-weight: 600;
	outline: 0;
	transition: all 0.3s linear;
}

.new-btn .fa{
	margin-right: 10px;
}

.new-btn:hover{
	background: rgba(255,255,255,0.5);
}

.newsletter-form{
	margin-top: 30px;
}

/****************************************
		Responsive Media Query
****************************************/

@media only screen and (max-width:981px){
	.coming-text{
		padding: 30px 0;
	}
	
	.coming-text h2{
		font-size: 56px;
	}
	.social-link a{
		width: 36px;
		height: 36px;
		padding-top: 6px;
		font-size: 16px;
	}
}

@media only screen and (max-width:568px){
	.logo-text{
		max-width: 70%;
		margin-top: 15px;
	}
	
	.new-text{
		display: block;
		width: 100%;
		background: rgba(255,255,255,0.1);
		margin-bottom: 20px;
	}
	
	.newsletter-form{
		background: none;
	}
	
	.new-btn{
		width: 160px;
	}
	
	.comming-soon {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		min-height: 100%;
		background: #808080;
	}
}

@media only screen and (max-width:480px){
	.logo-text{
		max-width: 60%;
		margin-top: 10px;
	}
	
	.logo h1{
		font-size: 30px;
	}
	
	.logo p{
		font-size: 10px;
	}
	
	.coming-text{
		padding: 20px 0 30px;
	}
	
	.newsletter p{
		font-size: 12px;
	}
	
	.coming-text h2 {
		font-size: 32px;
	}
	
	.new-text{
		height: 40px;
	}
	
	.new-btn{
		height: 40px;
	}
}

@media only screen and (max-width:360px){
	.logo-text{
		max-width: 50%;
		margin-top: 10px;
	}
}

/* --- Background Video at Bottom Layer --- */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; /* Bottom-most layer */
}

/* --- Particles Layer --- */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Above video, below content */
}

/* --- Main Content on Top Layer --- */
.comming-soon, 
.coming-soon-box, 
.logo, 
.logo-text, 
.coming-text {
    position: relative;
    z-index: 10; /* Top-most */
}

/* Optional: Keep your typewriter or fade animation consistent */
.typewriter-text .letter {
    display: inline-block;
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* #bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: -1;
}
.bg-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.bg-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25); 
    z-index: -1;
} */
