/* RESET & BASE STYLES */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.5;
	background-color: #fff;
	color: #222;
	-webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
	border: none;
	background: none;
	outline: none;
}

a {
	text-decoration: none;
	color: inherit;
}

button {
	cursor: pointer;
}

/* HEADER */
#main-header {
	background-color: #1e4d91;
	color: white;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 12px 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#main-header.scrolled {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.header-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 1px;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 24px;
}

.nav-links li a {
	color: white;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-links li a:hover {
	color: #c2d9f0;
}

.nav-links li a.active {
	border-bottom: 2px solid #fff;
	padding-bottom: 2px;
	color: #fb2605;
}

/* HERO */
#hero {
	background: linear-gradient(to right, #1e4d91, #163d72);
	color: #fff;
	text-align: center;
	padding: 100px 20px;
}

#hero h1 {
	font-size: 2.8rem;
	margin-bottom: 20px;
	font-weight: bold;
}

#hero p {
	font-size: 1.3rem;
	margin-bottom: 30px;
}

#hero button {
	background-color: #fb2605;
	color: white;
	padding: 12px 24px;
	margin-top: 20px;
	font-size: 1rem;
	border-radius: 6px;
	transition: background 0.3s;
}

#hero button:hover {
	background-color: #d11f00;
}

/* ABOUT */
#about {
	background-color: #f4f4f4;
	padding: 60px 20px;
}

#about .content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
	justify-content: center;
}

#about h2 {
	flex: 1 1 100%;
	text-align: center;
	font-size: 2rem;
	color: #1e4d91;
	margin-bottom: 20px;
}

#about p {
	flex: 1 1 400px;
	font-size: 1.1rem;
	color: #444;
	line-height: 1.6;
}

#about img {
	flex: 1 1 400px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* PROGRAMS & RESOURCES */
#programs,
#resources,
#saved-programs {
	max-width: 800px;
	margin: 40px auto;
	padding: 40px 20px;
	background-color: #fff;
}

#programs h2,
#resources h2,
#saved-programs h2 {
	text-align: center;
	font-size: 2rem;
	color: #1e4d91;
	margin-bottom: 30px;
}

#training-accordion h3,
#resources-accordion h3 {
	background-color: #1e4d91;
	color: white;
	padding: 14px 20px;
	cursor: pointer;
	font-size: 1.1rem;
	margin: 0;
}

#training-accordion div,
#resources-accordion div {
	padding: 20px;
	border: 1px solid #ddd;
	border-top: none;
	background-color: #f9f9f9;
}

.save-program {
	background-color: #fb2605;
	color: #fff;
	padding: 8px 14px;
	border-radius: 4px;
	margin-top: 10px;
}

.save-program:hover {
	background-color: #d11f00;
}

#saved-programs-list {
	list-style: none;
	padding: 0;
}

#saved-programs-list li {
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
	font-weight: 500;
	color: #333;
}

/* JOBS */
#job-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px 20px;
	background-color: #f4f4f4;
}

#job-section h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 2rem;
	color: #333;
}

#job-search {
	text-align: center;
	margin-bottom: 30px;
}

#job-search-input {
	width: 60%;
	padding: 12px;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 6px;
}

.job-board {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.job-card {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	width: 350px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	position: relative;
}

.job-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.job-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 10px;
	color: #1e4d91;
}

.job-company {
	font-weight: 500;
	color: #444;
	margin-bottom: 8px;
}

.job-location {
	font-style: italic;
	color: #777;
	margin-bottom: 15px;
}

.job-description {
	font-size: 0.95rem;
	color: #555;
	margin-bottom: 15px;
	height: 60px;
	overflow: auto;
}

.job-link {
	background: #1e4d91;
	color: white;
	padding: 8px 14px;
	border-radius: 4px;
	font-size: 0.95rem;
	align-self: flex-start;
}

.job-link:hover {
	background: #163d72;
}

.save-job {
	position: absolute;
	bottom: 15px;
	right: 15px;
	background-color: #fb2605;
	color: white;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 0.85rem;
}

.save-job:hover {
	background-color: #d11f00;
}

/* Saved Jobs */
#saved-jobs {
	max-width: 1280px;
	margin: 40px auto;
	padding: 20px;
	background-color: #f4f4f4;
}

#saved-jobs h2 {
	text-align: center;
	color: #1e4d91;
	margin-bottom: 20px;
}

#saved-jobs-list {
	list-style: none;
	padding: 0;
}

#saved-jobs-list li {
	padding: 10px;
	border-bottom: 1px solid #ccc;
}

.remove-job,
.remove-program {
	background-color: #fb2605;
	color: white;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 0.85rem;
	cursor: pointer;
}
/* SUCCESS STORIES */
#success {
	max-width: 900px;
	margin: 60px auto;
	padding: 40px 20px;
	background-color: #f4f4f4;
	text-align: center;
}

.testimonial {
	font-size: 1.1rem;
	color: #333;
	background: #fff;
	border-radius: 8px;
	padding: 30px 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial strong {
	display: block;
	margin-top: 15px;
	color: #1e4d91;
}

.testimonial-img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 20px auto;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* CONTACT FORM */
#contact {
	max-width: 600px;
	margin: 0 auto;
	padding: 60px 20px;
	background-color: #f9f9f9;
}

#contact h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 2rem;
	color: #1e4d91;
}

#contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#contact-form label {
	font-weight: bold;
	color: #333;
}

#contact-form input,
#contact-form textarea {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
	resize: vertical;
}

#contact-form button {
	background-color: #1e4d91;
	color: #fff;
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: bold;
	transition: background 0.3s;
}

#contact-form button:hover {
	background-color: #163d72;
}

/* FOOTER */
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding-top: 80px;
}

footer {
	margin-top: auto;
	background-color: #1e4d91;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	font-size: 0.95rem;
}
