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

/* =========================
   BASE
   ========================= */
body {
	font-family: "Segoe UI", Tahoma, sans-serif;
	color: #1f2d3d;

	/* Background image */
	background: url("images/Test.png") no-repeat center top;
	background-size: cover;
}

/* Layout container */
.container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

/* =========================
   TOP NAVBAR
   ========================= */
.topbar {
	background: linear-gradient(90deg, #1f4f8f, #4a86c5);
	padding: 18px 0;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 26px;
	font-weight: 600;
	color: white;
}

.logo .ai {
	font-weight: 800;
	margin-right: 6px;
}

.logo .brand {
	font-weight: 400;
	opacity: 0.95;
}

.menu a {
	color: white;
	text-decoration: none;
	margin-left: 28px;
	font-size: 16px;
	opacity: 0.9;
}

.menu a:hover {
	opacity: 1;
}

.signup {
	border: 1px solid white;
	padding: 8px 16px;
	border-radius: 6px;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
	position: relative;      /* add */
	padding: 100px 0 80px;
	min-height: 520px;       /* add: gives room to place button */
}

.hero-content {
	max-width: 600px;

	/* Controls spacing between text and button */
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
}

.hero h1 {
	font-size: 52px;
	line-height: 1.2;
	color: #ffffff;
	font-weight: 600;
}

.hero h1 em {
	font-style: italic;
	font-weight: 400;
	opacity: 0.9;
}

.subtext {
	font-size: 20px;
	color: #e7eef7;
	line-height: 1.5;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(90deg, #2d66c3, #1e4fa3);
	color: white;
	padding: 14px 26px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	box-shadow: 0 6px 14px rgba(0,0,0,0.2);
	position: absolute;
	left: 150px;   /* move LEFT/RIGHT */
	top: 225px;    /* move UP/DOWN */
	margin: 0;

}

.cta-button:hover {
	opacity: 0.9;
}

/* =========================
   FEATURES
   ========================= */
.features {
	margin-top: 60px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feature {
	text-align: center;
	padding: 36px 28px;
	text-decoration: none;
	color: inherit;
	border-right: 1px solid #e4e7eb;
}

.feature:last-child {
	border-right: none;
}

.feature:hover {
	background: #f8fafc;
}

.icon {
	font-size: 34px;
	margin-bottom: 14px;
}

.feature h3 {
	color: #2d5fa8;
	font-size: 20px;
	margin-bottom: 8px;
}

.feature p {
	font-size: 15px;
	color: #5a6a7a;
}

/* =========================
   TAGLINE
   ========================= */
.tagline {
	text-align: center;
	padding: 40px 0 70px;
	color: #4c6c9e;
	font-size: 20px;
	font-style: italic;
}
