/* Reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Segoe UI', sans-serif;
	line-height: 1.6;
	scroll-behavior: smooth;
	color: rgb(203, 213, 225);
	background: rgb(15, 23, 42);
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgb(15, 23, 42);
	border-bottom: 1px solid rgb(30, 41, 59);
	z-index: 999;
	padding: 1rem 0;
	backdrop-filter: blur(8px);
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 768px) {
	.site-header-container{
		margin: 0 auto;
		width: 100%;
	}
}


.logo {
	font-weight: bold;
	font-size: 1.5rem;
}

.logo img {
	height: 40px;
	width: auto;
	display: block;
}

.site-nav a {
	margin-left: 1.5rem;
	font-weight: 500;
}

.site-nav a:hover {
	color: rgb(243, 253, 255);
}

/* Sections */
.section {
	padding: 100px 4rem 0;
}

.full-height {
	min-height: calc(100vh - 100px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.full-height .card,
.section-about .card{
	background-color: rgb(30, 41, 59);
	color: rgb(255, 255, 255);
	border-color: rgb(51, 65, 85);
}

.full-height .btn-primary{
	font-size: 1.2rem;
}

h1, h2 {
	margin-bottom: 1rem;
	font-size: 4rem;
	font-weight: 700;
	color: rgb(255, 255, 255);
}

h1 span{
	color:rgb(96, 165, 250);
}

ul {
	list-style: disc;
	padding-left: 1.5rem;
}

@media (max-width: 768px) {
	.site-nav a {
		margin-left: 0.5rem;
		font-size: 0.9rem;
	}

	.logo {
		font-size: 1.2rem;
	}
}



.card-body-head{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.8rem;
}
.circles{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap:1rem;
}
.card-body-head .script{
	color: rgb(148, 163, 184);
}



.section-about {
	padding: 1rem 4rem;
}
.section-about .container{
	width: 100%;
}
@media (max-width: 768px) {
	.section-about {
		padding: 4rem 0.5rem 0;
	}
}
.section-about .container.container-features{
	max-width: 1600px;
}

#features, #demo{
	height: 100px;
}
@media (max-width: 768px) {
	#features, #demo{
		height: 0;
	}
}

#features, #contact{
	height: 100px;
}
@media (max-width: 768px) {
	#features, #contact{
		height: 0;
	}
}

.section-about h2{
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 0;
}
.section-about .subheader {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 3rem;
}
.section-about .subheader2{
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}
.section-about .subheader span{
	color: rgb(96, 165, 250);
}

.section-about .subheader a {
	color: rgb(96, 165, 250);
	text-decoration: none;
	transition: color 0.2s ease;
}

.section-about .subheader a:hover {
	color: rgb(59, 130, 246);
	text-decoration: underline;
}

.circle-wrapper {
	width: 64px;
	height: 64px;
	border: 2px solid rgba(59, 130, 246, 0);
	background-color: rgba(59, 130, 246, 0.2);
	border-radius: 50%;
	position: relative;
	display: inline-block;
}

.circle-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-size: 14px;
	line-height: 1.2;
}
.section-about h3{
	font-size: 1.5rem;
	margin: 1.5rem 0 1rem;
	text-align: center;
	color: #fff;
	font-weight: 600;
}
.section-about p{
	font-size: 1.1rem;
	margin: 1rem 0;
	text-align: center;
}

.section-about .card-body-head{
	display: flex;
	flex-direction: row;
	justify-content: left;
	gap: 2rem;
	align-items: normal;
}
.section-about .card-body-head-pic-holder{
	position: relative;
	height: 48px;
	width: 48px;
	background-color: rgba(59, 130, 246, 0.2);
	border-radius: 0.6rem;
}
.section-about .card-body-head-pic{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	display: block;
}

.section-about .card-body-head h3{
	margin: 0;
	text-align: left;
}
.section-about .card{
	height: 100%;
}