* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

a{
	text-decoration: none;
}

body {
    background-color: #000000cc;
	background-image: linear-gradient(#444 1px, transparent 1px), 
		linear-gradient(90deg, #444 1px, transparent 1px);
    background-size: 15.25px 15.25px;
    animation: fadeIn 1s ease-in-out forwards, fadeGrid 3s alternate;
    font-family: "Poppins", sans-serif;
}

@keyframes fadeGrid {
    0% {
        background-color: #1abc9c;
		background-image: linear-gradient(#444 0px, transparent 0px), 
		linear-gradient(90deg, #444 0px, transparent 0px);
    }
    50% {
        background-color: #000000cc;
		background-image: linear-gradient(#444 1px, transparent 1px), 
		linear-gradient(90deg, #444 1px, transparent 1px);
    }
}

@keyframes fadeIn {
    0% 
    {
        opacity: 0;
    }
    100% 
    {
        opacity: 1;
    }
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.3rem 2rem;
    background-color: rgb(0, 0, 0, 0.2);
    color: #fff;
}

.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    display: none;
}

nav {
    position: relative;
}

.link a {
    position: relative;
    padding-bottom: 0.75rem;
    color: #ffffff;
}

.link a::after {
    content: "";
    position: absolute;
    height: 5px;
    border-radius: 10rem;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #1abc9c;
    transition: all 0.3s ease;
}

.link a:hover::after {
    width: 70%;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.container{
	display: flex;
	align-items:center;
	justify-content: space-evenly;
}

.container3{
	display: flex;
	justify-content: space-between;
}

@keyframes typing {
	0% { width: 0; }
	100% { width: 100%; }
}

@keyframes blink-caret {
	0% { border-color: rgba(255, 166, 0, 0); }
	50% { border-color: transparent; }
}

.typing-animation {
	overflow: hidden;
	border-right: 0.8rem solid rgba(255, 166, 0, 0);
	white-space: nowrap;
	margin: 0 auto;
	animation: typing 3.5s steps(70, end), blink-caret .75s step-end infinite;
}

.container2 h1 {
    color: #ffffff;
    font-size: 5rem;
    text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.container2 h2 {
    color: #ffffff;
    font-size: 3rem;
    text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.container2 a {
    color: #dddddd;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    text-align: center; /* Center-aligns text within the container */
    width: 100%; /* Ensures it takes up the full width of its container */
	max-width: 45rem;
	margin: 0 auto;
}

.featureContainer0 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #3b3b3b;
	border-radius: 10px;
	max-width: 52rem;
	color: white;
	font-weight: bold;
	margin: 0 auto;
	padding: 2rem;
	line-height: 25px;
}

.featureContainer0 p{
	max-inline-size: 35rem;
}

.featureContainer1 {
	margin: auto 0;
}

.image {
    width: 100%;
    height: 100%;
    scale: 100%;
	box-shadow: 0px 60px 50px 6px #0000008c;
}

.image2{
	width: 25%;
	height: 60%;
	scale: 60%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.image3{
	width: 100%;
	height: 100%;
	scale: 100%;
	image-rendering:initial;
	display: flex;
	justify-content: space-around;
	align-items: center;
	box-shadow: 0 0 50px 6px #0000008c;
	margin-top: 2rem;
}

.image4{
	width: 100%;
	height: 100%;
	scale: 65%;
	image-rendering:initial;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.image5{
	width: 100%;
	height: 100%;
	scale: 46%;
	margin-top: -7rem;
	margin-bottom: -7rem;
	image-rendering: optimizeQuality;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.image6{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
}

.gradient-content{
	padding: 2.7rem;
	max-width: 35rem;
	max-height: 37.75rem;
	background: rgba(255, 255, 255, 1);
	border-radius: 0px 10px 10px 0px;
	color: rgb(66, 66, 66);
	box-shadow: 0px 60px 50px 6px #0000008c;
}

.gradient-content2{
	padding: 3rem;
	margin-left: 3rem;
	margin-right: 3rem;
	background: #ffffff;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	box-shadow: 0 0 50px 6px #0000008c;
	max-width: 45rem;
}

.gradient-content3{
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content3 a{
	padding: 0.5rem;
	font-size: 1.2rem;
	color: #000000cc;
}

.content5 a{
	color: #1abc9c;
	font-size: 2.2rem;
	font-weight: bold;
	max-width: 65rem;
	align-items: center;
	display: flex;
	justify-content: space-around;
}

.content5 p{
	color: #1abc9c;
	font-size: 2.2rem;
	font-weight: bold;
	align-items: center;
	display: flex;
	justify-content: space-around;
}

.content6 a{
	color: #008a73;
	font-size: 1.2rem;
	font-weight: bold;
	max-width: 55rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content6 p{
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content9 p{
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: bold;
	max-width: 62rem;
	padding-left: 7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content10 p{
	color: #808080;
	font-size: 1.2rem;
	font-weight: bold;
	display: flex;
	text-align: center;
	justify-content: center;
	width: 100%;
	max-width: 50rem;
	margin: 0 auto;
}

.content10 a{
	color: #7a7a7a;
	font-size: 1.2rem;
	font-weight: bold;
	display: flex;
	text-align: center;
	justify-content: center;
	width: 100%;
	max-width: 50rem;
	margin: 0 auto;
}

.content7{
	background-color: rgb(39, 39, 39, 0);
	border-radius: 15px;
	max-inline-size: 82rem;
	align-items: center;
	justify-content: center;
	padding: 7rem;
	margin: 0 auto;
}

.content8 a{
	color: #a1a1a1;
	font-weight: bold;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.content8 p{
	color: #000000;
	font-size: 1.2rem;
}

.content8a p{
	color: #ff9c9c;
	font-size: 1.19rem;
	font-weight: bold;
}

.content8 b{
	color: #8aa3a1;
	font-size: 1.2rem;
}

.content11 a{
	color: #000000;
	font-weight: bold;
	font-size: 3rem;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.content12 a{
	color: #000000;
	font-weight: bold;
	font-size: 2.2rem;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.btn{
	height: 60px;
	width: 200px;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #ffffff;
	background-color: rgb(27, 27, 27);
	font-size: 1.2rem;
	border-width: 0;
}

.btn:hover{
	height: 60px;
	width: 200px;
	padding: 0.1rem 0.5rem;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.2rem;
	color: #000000;
	background-color: #15719b00;
	border-color: #000000;
	border-width: 0.3rem;
}

.btn2{
	height: 60px;
	width: 200px;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #ffffff;
	background-color: rgb(27, 27, 27);
	font-size: 1.2rem;
	border-width: 0;
}

.btn2:hover{
	height: 60px;
	width: 200px;
	padding: 0.1rem 0.5rem;
	border-radius: 10px;
	transition: all 0.3s ease;
	font-size: 1.2rem;
	color: #000000;
	background-color: #00ffc8;
	border-color: #00ffc8;
	border-width: 0.3rem;
}

.blur{
	max-width: 40rem;
	margin-left: 29rem;
	margin-bottom: -5rem;
	box-shadow: 0 0 400px 60px #1abc9c;
	margin-top: 6rem;
}

.container-background2{
	display: flex;
	align-items:center;
	justify-content: space-evenly;
	background-color: #292929;
}

.box div{
	position: absolute;
	width: 60px;
	height: 60px;
	background-color: transparent;
	border: 6px solid rgba(255,255,255,0.8);
}

.box div:nth-child(1){
	top: 12%;
	left: 42%;
	animation: anime 5s linear infinite;
}

.box div:nth-child(2){
	top: 70%;
	left: 50%;
	animation: anime 2s linear infinite;
}

.box div:nth-child(3){
	top: 17%;
	left: 6%;
	animation: anime 4s linear infinite;
}

.box div:nth-child(4){
	top: 20%;
	left: 60%;
	animation: anime 5s linear infinite;
}

.box div:nth-child(5){
	top: 37%;
	left: 70%;
	animation: anime 1s linear infinite;
}

.box div:nth-child(6){
	top: 80%;
	left: 75%;
	animation: anime 7s linear infinite;
}

.box div:nth-child(7){
	top: 60%;
	left: 80%;
	animation: anime 7s linear infinite;
}

.box div:nth-child(8){
	top: 32%;
	left: 25%;
	animation: anime 2s linear infinite;
}

.box div:nth-child(9){
	top: 90%;
	left: 25%;
	animation: anime 4s linear infinite;
}

.box div:nth-child(10){
	top: 60%;
	left: 8%;
	animation: anime 3s linear infinite;
}

@keyframes anime{
	0%{
		transform: scale(0) translateY(0) rotate(0);
		opacity: 1;
		border: 6px solid #00ffaa;
		background-color: #00ffbf88;
	}	
	50%{
		border: 6px solid #00fff2;
		background-color: #00fff288;
	}
	100%{
		transform: scale(1) translateY(-90px) rotate(560deg);
		opacity: 0;
		background-color: #5a5a5a75;
		border: 6px solid #5a5a5a;
	}
}

#particles-js{
	width: 55%;
	margin-left: 20rem;
	margin-top: -20rem;
	margin-bottom: -3rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        background-color: rgb(0, 0, 0, 0.4);
        position: absolute;
        top: 2.3rem;
        left: -8.4rem;
        overflow: hidden;
        opacity: 0;
        transition: height 0.3s ease, opacity 0.3s ease;
        padding: 1rem 0;
        border-radius: 0px 0px 10px 10px;
        min-width: 12rem;
    }
    .nav-links.active {
        height: auto;
        opacity: 1;
        padding: 1rem 0rem;
    }
    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }
    .nav-links a {
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: background-color 0.3s;
    }
	.link a::after {
		content: "";
		position: absolute;
		height: 5px;
		border-radius: 10rem;
		width: 0;
		bottom: 0;
		left: 0;
		background-color: #00fff2;
		transition: all 0.3s ease;
	}
	.link a:hover::after {
		width: 70%;
		height: 10%;
	}
    .nav-toggle {
        display: block;
    }
    .logo a {
        display: block;
    }
	header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 1.3rem 2rem;
		background-color: rgb(0, 0, 0, 0.4);
		color: #fff;
	}
	.container{
		display: flex;
		align-items:center;
		justify-content: space-evenly;
	}
	.container2 h1 {
		color: #ffffff;
		font-size: 3rem;
		justify-content: center;
		display: flex;
		margin-top: 12rem;
	}
	.container2 h2 {
		color: #ffffff;
		font-size: 1.5rem;
		justify-content: center;
		display: flex;
	}
	.container2 a {
		color: #bdbdbd;
		font-weight: bold;
		font-size: 1rem;
		justify-content: center;
		display: flex;
		padding-top: 2rem;
		margin-bottom: -2rem;
	}
	.container3{
		flex-direction: column;
        text-align: center; /* Centers text for smaller screens */
		margin: 0 auto;
	}
	.blur{
		max-width: 40rem;
		margin-left: 0rem;
		margin-top: 10rem;
		box-shadow: 0 0 400px 60px #4f8db6;
		margin-top: 6rem;
	}
	.featureContainer0 {
        flex-direction: column;
        text-align: center; /* Centers text for smaller screens */
        padding: 1rem; /* Adds padding for smaller screens */
    }

    .featureContainer0 p {
        max-inline-size: 100%; /* Ensures text wraps within the container */
    }
	img{
		width: 100%;
    	height: 100%;
	}
	.image {
    	scale: 95%;
    	display: flex;
    	align-items: center;
    }
	.image2 {
        width: 100%;
        height: auto;
        margin-bottom: 0;
    }
	.image5{
		scale: 0%;
	}
	.image3 {
    	scale: 100%;
    	display: flex;
   	 	justify-content: center;
    	align-items: center;
    	image-rendering: optimizeQuality;
		margin-top: 0rem;
    }
	.image6 {
    	scale: 100%;
    	display: flex;
   	 	justify-content: center;
    	align-items: center;
    	image-rendering: optimizeQuality;
		margin-top: 1.5rem;
    }
	.gradient-content{
		scale: 95%;
		padding: 1rem;
		margin-bottom: -26rem;
		min-width: 26rem;
		max-height: 30rem;
		max-width: 26rem;
		min-height: 30rem;
		background: rgba(255, 255, 255, 1);
		border-radius: 10px 10px 10px 10px;
		color: rgb(66, 66, 66);
		box-shadow: 0 0 50px 6px #0000008c;
	}
	.button_content2 {
		margin-top: 3rem;
	}
	.gradient-content2 {
		margin-top: -3rem;
		padding: 1.5rem;
		min-width: 22.8em;
	}
	.gradient-content3 {
		scale: 98%;
		border-radius: 10px;
		margin: 0 auto;
		flex-direction: column;
	}
	.content3 a{
		padding: 0rem;
		font-size: 1rem;
		font-weight: bold;
		color: #000000cc;
	}
	.content5 a{
		color: #a7c6c3;
		font-size: 1.3rem;
		font-weight: bold;
		max-width: 65rem;
		align-items: center;
		display: flex;
		justify-content: space-around;
	}
	.content6 a{
		color: #ffffff;
		font-size: 0.8rem;
		font-weight: bold;
		max-width: 55rem;
		align-items: center;
		justify-content: center;
	}
	.content6 p{
		color: #ffffff;
		font-size: 0.8rem;
		font-weight: bold;
		max-width: 55rem;
		text-align: left;
		justify-content: center;
	}
	.content7{
		background-color: rgb(0, 0, 0, 0.4);
		border-radius: 15px;
		max-width: 22.5rem;
		margin-top: 0rem;
		align-items: center;
		justify-content: center;
		padding: 1.5rem;
	}
	.content10 p{
		border-radius: 15px;
		max-width: 22.5rem;
		margin-top: 0rem;
		align-items: center;
		justify-content: center;
		padding: 1.5rem;
		text-align: left;
	}
	.content10 a{
		font-size: 0.8rem;
		font-weight: bold;
		max-width: 55rem;
		text-align: left;
		justify-content: center;
	}
	.content8 p{
		color: #000000;
		font-size: 1rem;
	}
	.content8 b{
		color: #8aa3a1;
		font-size: 1rem;
	}
	.content8a p{
		color: #ff9c9c;
		font-size: 1rem;
		font-weight: bold;
	}

	.content11 a{
		color: #000000;
		font-weight: bold;
		font-size: 3rem;
		display: flex;
		align-items: center;
		justify-content: space-evenly;
	}
	.container-background2{
		display: flex;
		align-items:center;
		justify-content: space-evenly;
		background-color: #292929;
		margin-top: 20rem;
		padding-top: 2rem;
	}
	.image5{
		width: 100%;
		height: 100%;
		scale: 46%;
		margin-top: -3rem;
		margin-bottom: -3rem;
		image-rendering: optimizeQuality;
		display: flex;
		justify-content: space-around;
		align-items: center;
	}
	#particles-js{
		width: 60%;
		margin-left: 8rem;
		margin-top: -10rem;
		margin-bottom: 0rem;
	}
	hr {
		margin-left: 0rem;
		margin-right: 0rem;
		margin-top: 2rem;
		border: none; /* Remove default border */
		height: 3px;  /* Set the thickness */
		background-color: #868686; /* Set the color */
	}
}
hr {
	margin-left: 0rem;
	margin-right: 0rem;
	border: none; /* Remove default border */
	height: 3px;  /* Set the thickness */
	background-color: #868686; /* Set the color */
}