body {
	font-family: 'Poppins', Arial, sans-serif;
	background-color: #fff;
	color: #333;
	
	display: flex; 
	flex-direction: column;
	min-height: 100vh;
}

.navbar {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	background-color: rgba(255, 255, 255, 0.4);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.navbar-brand {
	font-weight: 600;
	color: #ff6c00;
}

.nav-link {
	font-weight: 500;
	color: #333;
}

.nav-link:hover {
	color: #ff6c00;
}

.btn-primary {
	background-color: #ff6c00;
	border: none;
}

.btn-primary:hover {
	background-color: #e65c00;
}

.hero {
	padding-top: 100px;
	background: #fff;
	background-image: url(/assets/images/success-concept2.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 85%;
}

.hero h1 {
	font-size: 4rem;
	font-weight: 700;
	color: #333;
}

.white-stroke {
	text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.gradient-text-black-animated {
	background: linear-gradient(to right, #373737 20%, #41ae37 50%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	background-size: 500% auto;
	animation: gradient 15s ease-in-out infinite alternate;	
}

.hero p {
	font-size: 1.5rem;
	color: #555;
}

.hero img {
	max-width: 100%;
	height: auto;
}

.features {
	padding: 60px 0;
	background: #fff;
	background: radial-gradient(circle, #f3f3f3 0%, #fff 90%);
	border-bottom: 1px #f3f3f3 solid;
	border-top: 1px #f3f3f3 solid;
}

.feature-item {
	text-align: center;
	padding: 20px;
}

.feature-item i {
	font-size: 2rem;
	color: #ff6c00;
	margin-bottom: 15px;
}

.feature-item h3 {
	font-weight: 300;
	text-transform: uppercase;
}

.feature-item-title {
	display: flex;
	flex-direction: column;
}

.whousers {
	padding: 60px 0;
}

.whousers .subtext {
	color: #C4C4C4;
	font-size:1rem;
}

.use-cases {
	padding: 60px 0;
}

.whousers-item {
	text-align: center;
	padding: 20px;
}

.whousers-item i {
	font-size: 2rem;
	color: #41ae37;
	margin-bottom: 15px;
}

.cta {
	padding: 80px 0;
	background-color: #fff;
	text-align: center;
}

footer {
	background-color: #f3f3f3;
	color: #000;
	padding: 20px 0;
	margin-top: auto;
}

.accordion-item p {
	margin-bottom: 0;
	color: #343d89;
}

.green {
	color: #41ae37;
}

.orange {
	color: #ff6c00;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.use-cases ul {
    list-style-type: none;
}

.gradient-underline {
	position: relative;
}

.gradient-underline::before {
	content: "";
	position: absolute;
	top: 100%;
	width: 100%;
	left: 0;
	height: 2px;
	border-radius: 2px;
	margin-top: 5px;
	background: linear-gradient(to right, #f1f1f1, #ff6c00, #f1f1f1);
}


@media only screen and (max-width: 991px) {
	.hero {
		padding: 50px 0;
		position: relative;
	}
	
	.hero::before {
		content: "";
		position: absolute;
		top: 0px;
		left: 0px;
		right: 0px;
		bottom: 0px;
		background-image: inherit;
		background-size: cover;
		background-position: right 10px top 10px;		
		filter: blur(8px);
		z-index: 0;
	}
	.hero h1 {
		font-size:2.6rem;
	}

	.hero p {
		font-size:1.2rem;
	}
	
	.feature-item {
		text-align: left;
		padding: 5px;
	}
	
	.feature-item h3 {
		font-size: 1.2rem;
		margin-bottom:5px;
	}
	
	.feature-item p {
		font-size:1rem;
	}
	
	.feature-item-title {
		flex-direction: row;
		align-items: center;
	}
	
	.feature-item i {
		margin-bottom:0;
		padding-right: 10px
	}
}

h1 {font-size:2.2rem;}
h2 {font-size:2rem;}
h3 {font-size:1.8rem;}
h4 {font-size:1.6rem;}
h5 {font-size:1.5rem;}

body {
	font-size:1.2rem;
}

.cta-btn {
	background: trasnparent;
	border: 2px #ff6c00 solid;
	color: #ff6c00;
}

.cta-btn:hover {
	background: #ff6c00;
	color: #fff;
}

.blog-posts {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    grid-gap: 10px;
}

.blog-post {
	padding: 0;
	cursor: pointer; 
	position: relative;
	background: white;
    border: 1px #e3e3e3 solid;
}

.blog-post h5 {
	text-align: center; 
	margin-top: 20px; 
	margin-bottom:0;
	font-size: 1.4rem;
	word-break: break-word;
	padding: 5px;
	font-weight: bold;
}

.blog-post p {
	padding:5px; 
	padding-bottom: 15px; 
}

.blog-post-image {
	height: 150px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    box-shadow: 0px 2px 5px #e3e3e3;
}

@media only screen and (max-width: 600px) {
	.blog-posts {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media only screen and (max-width: 991px) {
	.blog-posts {
		grid-template-columns: repeat(2, 1fr);
	}
}

.form-floating > label::after {
	background-color: transparent !important;
}