/*
Author: Scotty Brown
Date: February 2026
File Name: styles.css
*/

/* CSS Reset */
body, header, nav, main, footer, img, h1, ul	{
		margin: 0;
		padding: 0;
		border: 0;
}

/* Body */
body	{
		background-color: #fff;
		font-family: Arial, sans-serif;
		color: #111;
}

/* Header */
header	{
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 1% 2%;
		position: sticky;
		top: 0;
		z-index: 1000;
		background: #fff;
		box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

header img	{
		display: block;
		max-height: 90px;
		height: auto;
}

/* Main section container */
main section	{
		max-width: 1100px;
		margin: 2.5rem auto;
		padding: 3rem 2rem;
		border-radius: 20px;
}

/* Navigation */
nav ul	{
		display: flex;
		gap: 2rem;
		list-style: none;
		align-items: center;
}

nav li	{
		font-size: 1.5em;
}

nav li a	{
		display: inline-block;
		color: #0b5ed7;
		padding: 0.5em 1em;
		text-decoration: none;
		border-radius: 999px;
		transition: all 0.25s ease;
}

nav li a:hover	{
		background-color: #0b5ed7;
		color: #fff;
		transform: translateY(-2px);
}

nav li a.active	{
		background-color: #0b5ed7;
		color: #fff;
		font-weight: 700;
}

/* CTA Button */
.cta	{
		display: inline-block;
		background-color: #0b5ed7;
		color: #fff;
		padding: 0.8em 1.6em;
		text-decoration: none;
		border-radius: 999px;
		font-weight: 600;
		margin-top: 1rem;
		transition: all 0.25s ease;
}

.cta:hover	{
		background-color: #084298;
		transform: translateY(-2px);
}

/* Hero */
#hero	{
		margin: 1.5rem auto;
		border: 1px solid rgba(11,94,215,0.12);
		background: rgba(11,94,215,0.06);
}

#hero h1	{
		font-size: 2.75rem;
		line-height: 1.15;
		letter-spacing: -0.5px;
		margin-bottom: 1rem;
		position: relative;
}

#hero h1::after	{
		content: "";
		display: block;
		width: 120px;
		height: 6px;
		background: #0b5ed7;
		border-radius: 999px;
		margin-top: 0.75rem;
}

#hero p	{
		font-size: 1.15rem;
		line-height: 1.7;
		max-width: 680px;
		margin-bottom: 1.25rem;
}

#hero .cta:hover	{
		box-shadow: 0 6px 18px rgba(11,94,215,0.25);
}

/* Section headings */
main h2	{
		font-size: 1.8rem;
		margin-bottom: 1rem;
		position: relative;
		display: inline-block;
}

main h2::after	{
		content: "";
		display: block;
		width: 50%;
		height: 4px;
		background: #0b5ed7;
		margin-top: 6px;
		border-radius: 4px;
}

main p	{
		font-size: 1.05rem;
		line-height: 1.7;
		max-width: 650px;
}

/* Services */
#services-preview	{
		background: rgba(11,94,215,0.06);
		border: 1px solid rgba(0,0,0,0.06);
		box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}

.service-grid	{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
		margin-top: 2rem;
}

.service-card	{
		padding: 1.8rem;
		border-radius: 16px;
		background: #fff;
		border: 1px solid rgba(11,94,215,0.08);
		position: relative;
		transition: all 0.28s ease;
}

.service-card:before	{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 4px;
		background: #0b5ed7;
	}

.service-card:hover	{
		transform: translateY(-8px);
		box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.service-icon	{
		width: 54px;
		height: 54px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		background: rgba(11,94,215,0.12);
		color: #0b5ed7;
		font-size: 1.4rem;
		margin-bottom: 0.9rem;
}

.service-card:hover .service-icon	{
		background: #0b5ed7;
		color: #fff;
}

/* Why */
#why	{
		background: rgba(11,94,215,0.06);
		border: 1px solid rgba(0,0,0,0.06);
		box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}

#why .two-col	{
		display: grid;
		grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
		gap: 2.5rem;
}

.benefits	{
		list-style: none;
		display: grid;
		gap: 0.85rem;
}

.benefits li	{
		background: #fff;
		border-radius: 14px;
		padding: 0.9rem 1rem;
		display: flex;
		gap: 0.75rem;
}

.benefits li::before	{
		content: "✓";
		background: rgba(11,94,215,0.12);
		color: #0b5ed7;
		width: 26px;
		height: 26px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 800;
}

/* Clients */
#clients	{
		background: rgba(11,94,215,0.06);
		border: 1px solid rgba(0,0,0,0.06);
		box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}

.tags	{
		display: flex;
		flex-wrap: wrap;
		gap: 0.6rem;
		margin-top: 1.25rem;
}

.tags span	{
		padding: 0.45rem 0.85rem;
		border-radius: 999px;
		border: 1px solid rgba(11,94,215,0.16);
		background: rgba(11,94,215,0.06);
		color: #0b5ed7;
		font-weight: 600;
}

/* CTA Section */
#cta	{
		background: rgba(11,94,215,0.06);
		border: 1px solid rgba(0,0,0,0.06);
		box-shadow: 0 10px 22px rgba(0,0,0,0.05);
		text-align: left;
}

/* Footer */
footer	{
		margin-top: 2.5rem;
		padding: 2.5rem 2rem;
		background: #0f172a;
		color: #fff;
		text-align: center;
		border-top: 4px solid #0b5ed7;
}

footer p	{
		margin: 0;
		font-size: 0.95rem;
		opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px)	{
		.service-grid	{
				grid-template-columns: 1fr;
		}

		#why .two-col	{
				grid-template-columns: 1fr;
		}
}