/* Font Awesome */
@import url("assets/fonts/fontawesome-free-7.1.0-web/css/all.min.css");

/* Font Imports */
@font-face {
	font-family: "Roboto";
	src: url("assets/fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf")
		format("truetype");
	font-weight: 100 900;
	font-style: normal;
}

@font-face {
	font-family: "Roboto";
	src: url("assets/fonts/Roboto/Roboto-Italic-VariableFont_wdth,wght.ttf")
		format("truetype");
	font-weight: 100 900;
	font-style: italic;
}

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

:root {
	--primary-color: #1e73be;
	--secondary-color: #0a4275;
	--accent-color: #f7941d;
	--dark-bg: #222222;
	--darker-bg: #1a1a1a;
	--light-bg: #f8f9fa;
	--lighter-bg: #ffffff;
	--text-dark: #333333;
	--text-light: #666666;
	--text-lighter: #999999;
	--white: #ffffff;
	--border-color: #e5e5e5;
	--success-color: #28a745;
	--error-color: #dc3545;
	--shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
	--shadow-hover: 0 4px 25px rgba(0, 0, 0, 0.15);
}

body {
	font-family:
		"Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu,
		Cantarell, sans-serif;
	line-height: 1.7;
	color: var(--text-dark);
	background-color: var(--white);
	font-size: 16px;
	font-weight: 400;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation Bar */
.navbar {
	background-color: var(--white);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 3px solid var(--primary-color);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 90px;
}

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

.nav-menu {
	display: flex;
	list-style: none;
	gap: 40px;
	align-items: center;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.3s ease;
	padding: 8px 0;
	position: relative;
}

.nav-menu a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
	width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: var(--primary-color);
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: var(--text-dark);
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	background: url("assets/uploads/pexels-photo-442150-442150-1024x683.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: var(--white);
	padding: 120px 20px;
	text-align: center;
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(30, 115, 190, 0.75),
		rgba(10, 66, 117, 0.75)
	);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 25px;
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
	font-size: 1.5rem;
	margin-bottom: 35px;
	font-weight: 300;
	opacity: 0.95;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 15px 40px;
	background-color: var(--accent-color);
	color: var(--white);
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	border: 2px solid var(--accent-color);
	box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
}

.btn:hover {
	background-color: #e88210;
	border-color: #e88210;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(247, 148, 29, 0.4);
}

/* Sections */
section {
	padding: 80px 20px;
}

.intro,
.about-content,
.services-list,
.contact-section,
.news-section {
	background-color: var(--white);
}

.intro h2,
.about-section h2,
.service-item h2 {
	color: var(--text-dark);
	margin-bottom: 25px;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.3;
}

.intro p {
	font-size: 1.15rem;
	color: var(--text-light);
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	line-height: 1.8;
}

/* Features Grid */
.features {
	background-color: var(--light-bg);
	padding: 80px 20px;
}

.features h2 {
	text-align: center;
	color: var(--text-dark);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 50px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 35px;
	margin-top: 40px;
}

@media (min-width: 769px) and (max-width: 1024px) {
	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media (max-width: 600px) {
	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.feature-card {
		padding: 30px 20px;
	}
}

@media (max-width: 480px) {
	.feature-grid {
		grid-template-columns: 1fr;
	}
}

.feature-card {
	background-color: var(--white);
	padding: 40px 30px;
	border-radius: 8px;
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	text-align: center;
	border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	border-top-color: var(--accent-color);
}

.feature-card h3 {
	color: var(--text-dark);
	margin-bottom: 18px;
	font-size: 1.4rem;
	font-weight: 600;
}

.feature-card h3 i {
	margin-right: 10px;
	font-size: 1.5rem;
	color: var(--primary-color);
	display: block;
	margin-bottom: 15px;
}

.feature-card p {
	color: var(--text-light);
	line-height: 1.7;
}

/* Page Header */
.page-header {
	background: linear-gradient(
		135deg,
		rgba(30, 115, 190, 0.95),
		rgba(10, 66, 117, 0.95)
	);
	color: var(--white);
	padding: 80px 20px;
	text-align: center;
	border-bottom: 4px solid var(--accent-color);
}

.page-header h1 {
	font-size: 3rem;
	margin-bottom: 15px;
	font-weight: 700;
}

.page-header p {
	font-size: 1.3rem;
	font-weight: 300;
	opacity: 0.95;
}

/* Services List */
.services-list {
	background-color: var(--light-bg);
}

.service-item {
	margin-bottom: 50px;
	padding: 40px;
	background-color: var(--white);
	border-radius: 8px;
	border-left: 6px solid var(--primary-color);
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.service-item:hover {
	border-left-color: var(--accent-color);
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
	transform: translateX(5px);
}

.service-item h2 {
	font-size: 1.9rem;
	color: var(--text-dark);
	font-weight: 700;
}

.service-item h2 i {
	margin-right: 12px;
	color: var(--primary-color);
}

.service-item p {
	color: var(--text-light);
	margin-bottom: 25px;
	line-height: 1.8;
	font-size: 1.05rem;
}

.service-item ul {
	list-style: none;
	padding-left: 0;
}

.service-item ul li {
	padding: 8px 0;
	color: var(--text-dark);
	position: relative;
	padding-left: 25px;
}

.service-item ul li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
}

/* About Page */
.about-section {
	margin-bottom: 40px;
}

.about-section p {
	color: var(--text-light);
	margin-bottom: 15px;
	line-height: 1.8;
}

.values-section {
	margin: 60px 0;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.value-card {
	background-color: var(--light-bg);
	padding: 30px;
	border-radius: 10px;
	text-align: center;
}

.value-card h3 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.value-card h3 i {
	margin-right: 8px;
	font-size: 1.5rem;
}

.benefits-list {
	list-style: none;
	padding-left: 0;
}

.benefits-list li {
	padding: 15px;
	margin-bottom: 10px;
	background-color: var(--light-bg);
	border-radius: 5px;
	border-left: 4px solid var(--primary-color);
}

.benefits-list strong {
	color: var(--primary-color);
}

/* Contact Page */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-top: 40px;
}

.contact-info h2,
.contact-form-container h2 {
	color: var(--primary-color);
	margin-bottom: 20px;
}

.contact-details {
	margin-top: 30px;
}

.contact-item {
	margin-bottom: 30px;
	padding: 20px;
	background-color: var(--light-bg);
	border-radius: 8px;
}

.contact-item h3 {
	color: var(--primary-color);
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.contact-item h3 i {
	margin-right: 8px;
	width: 20px;
	text-align: center;
}

.contact-item a {
	color: var(--text-dark);
	text-decoration: none;
}

.contact-item a:hover {
	color: var(--primary-color);
}

/* Contact Form */
.contact-form {
	background-color: var(--light-bg);
	padding: 30px;
	border-radius: 10px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--text-dark);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

.contact-form .btn {
	width: 100%;
	background-color: var(--primary-color);
	color: var(--white);
	border: 2px solid var(--primary-color);
	cursor: pointer;
	font-size: 1rem;
}

.contact-form .btn:hover {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}

.form-message {
	margin-top: 15px;
	padding: 10px;
	border-radius: 5px;
	display: none;
}

.form-message.success {
	background-color: #d4edda;
	color: var(--success-color);
	border: 1px solid var(--success-color);
	display: block;
}

.form-message.error {
	background-color: #f8d7da;
	color: var(--error-color);
	border: 1px solid var(--error-color);
	display: block;
}

/* News Page */
.news-filters {
	margin-bottom: 40px;
	text-align: center;
}

.news-filters h2 {
	color: var(--primary-color);
	margin-bottom: 20px;
}

.filter-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 10px 25px;
	background-color: var(--light-bg);
	color: var(--text-dark);
	border: 2px solid var(--border-color);
	border-radius: 25px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
	background-color: var(--primary-color);
	color: var(--white);
	border-color: var(--primary-color);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
}

.news-card {
	background-color: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.news-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.news-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	background-color: var(--light-bg);
}

.news-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.news-source {
	color: var(--primary-color);
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.news-title {
	font-size: 1.3rem;
	color: var(--text-dark);
	margin-bottom: 10px;
	line-height: 1.4;
}

.news-description {
	color: var(--text-light);
	margin-bottom: 15px;
	flex: 1;
}

.news-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
	color: var(--text-light);
	margin-bottom: 15px;
}

.news-link {
	display: inline-block;
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.news-link:hover {
	color: var(--secondary-color);
}

.loading {
	text-align: center;
	padding: 60px 20px;
	font-size: 1.2rem;
	color: var(--text-light);
}

.error-message {
	text-align: center;
	padding: 40px 20px;
	background-color: #fff3cd;
	border: 1px solid #ffc107;
	border-radius: 10px;
	color: #856404;
}

/* Partners Slider Section */
.partners {
	background-color: var(--white);
	padding: 80px 20px;
	overflow: hidden;
}

.partners h2 {
	text-align: center;
	color: var(--text-dark);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 50px;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
	align-items: center;
}

.partner-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background-color: #f2f2f2;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.partner-slide:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-slide a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.partner-logo {
	max-width: 100%;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(0%) drop-shadow(0 0 1px rgba(0, 0, 0, 0.2));
	opacity: 0.95;
	transition: all 0.2s ease;
	display: block;
}

.partner-logo:hover {
	filter: grayscale(0%) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
	opacity: 1;
	transform: scale(1.1);
}

/* CTA Section */
.cta {
	background: linear-gradient(
		135deg,
		rgba(30, 115, 190, 0.95),
		rgba(10, 66, 117, 0.95)
	);
	color: var(--white);
	text-align: center;
	padding: 80px 20px;
	position: relative;
}

.cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(30, 115, 190, 0.9),
		rgba(10, 66, 117, 0.85)
	);
	z-index: 1;
}

.cta .container {
	position: relative;
	z-index: 2;
}

.cta h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.cta p {
	font-size: 1.3rem;
	margin-bottom: 30px;
	font-weight: 300;
}

/* Call to Action Bar */
.cta-bar {
	background-color: var(--accent-color);
	color: var(--white);
	padding: 25px 20px;
	text-align: center;
}

.cta-bar h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
}

.cta-bar a {
	color: var(--white);
	text-decoration: none;
	border-bottom: 2px solid var(--white);
	transition: opacity 0.3s ease;
}

.cta-bar a:hover {
	opacity: 0.8;
}

/* Footer */
footer {
	background-color: var(--dark-bg);
	color: var(--white);
	padding: 40px 20px;
	text-align: center;
	border-top: 3px solid var(--primary-color);
}

footer p {
	margin: 0;
	font-size: 14px;
	opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-container {
		height: 70px;
		padding: 0 20px;
	}

	.logo img {
		height: 50px;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: var(--white);
		width: 100%;
		text-align: center;
		transition: left 0.3s ease;
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
		padding: 30px 0;
		gap: 20px;
	}

	.nav-menu.active {
		left: 0;
	}

	.hero {
		padding: 80px 20px;
	}

	.hero-content h1 {
		font-size: 2.2rem;
	}

	.hero-content p {
		font-size: 1.2rem;
	}

	.page-header h1 {
		font-size: 2rem;
	}

	.page-header p {
		font-size: 1.1rem;
	}

	section {
		padding: 60px 20px;
	}

	.intro h2,
	.about-section h2,
	.features h2 {
		font-size: 1.9rem;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}

	.filter-buttons {
		flex-direction: column;
	}

	.filter-btn {
		width: 100%;
	}

	.cta-bar h3 {
		font-size: 1.1rem;
	}

	.service-item {
		padding: 30px 20px;
	}

	.partners-slider-container {
		padding: 0 50px;
	}

	.partner-slide {
		min-width: calc(50% - 20px);
	}

	.slider-btn {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 1.8rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

	.page-header h1 {
		font-size: 1.6rem;
	}

	.btn {
		padding: 12px 30px;
		font-size: 14px;
	}

	.intro h2,
	.about-section h2 {
		font-size: 1.6rem;
	}

	.cta-bar h3 {
		font-size: 0.95rem;
	}

	.partners h2 {
		font-size: 2rem;
	}

	.partners-slider-container {
		padding: 0 40px;
	}

	.slider-btn {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}
}
