:root {
	--primary-color: #327ab9;
	--primary-dark: #1c5486;
	--primary-light: #4d69b4;
}

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

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	z-index: 1000;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.4rem;
	font-weight: 700;
	color: #2c3e50;
	text-decoration: none;
}

.header-logo {
	width: 200px;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-light) 100%);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../pexels-photo-30730270.jpeg') center/cover;
	opacity: 0.1;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	color: white;
	text-align: center;
}

.hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero .subtitle {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.btn-hero-primary {
	background: white;
	color: var(--primary-color);
	padding: 1rem 2rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border: none;
	display: inline-block;
}

.btn-hero-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	color: var(--primary-dark);
}

.btn-hero-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	padding: 1rem 2rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-hero-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
	color: white;
}

/* Floating Elements */
.floating-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.shape {
	position: absolute;
	opacity: 0.1;
	animation: float 20s infinite linear;
}

.shape:nth-child(1) {
	width: 80px;
	height: 80px;
	background: white;
	border-radius: 50%;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.shape:nth-child(2) {
	width: 60px;
	height: 60px;
	background: white;
	border-radius: 30%;
	top: 60%;
	right: 15%;
	animation-delay: 7s;
}

.shape:nth-child(3) {
	width: 40px;
	height: 40px;
	background: white;
	border-radius: 20%;
	top: 40%;
	left: 80%;
	animation-delay: 14s;
}

@keyframes float {
	0% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(180deg); }
	100% { transform: translateY(0) rotate(360deg); }
}

/* About Section */
.about {
	padding: 5rem 0;
	background: white;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.about-text .subtitle {
	font-size: 1.2rem;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.about-text p {
	color: #7f8c8d;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-top: 2rem;
}

.about-feature {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.about-feature i {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.about-feature span {
	color: #2c3e50;
	font-weight: 600;
}

.about-image {
	position: relative;
}

.about-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: var(--primary-color);
	color: white;
	padding: 1.5rem 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(61, 89, 164, 0.3);
}

.about-badge h4 {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 700;
}

.about-badge p {
	margin: 0;
	opacity: 0.9;
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	.about-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.about-image {
		order: -1;
	}

	.about-features {
		grid-template-columns: 1fr;
	}

	.about-text h2 {
		font-size: 2rem;
	}
}
.features {
	padding: 5rem 0;
	background: #f8f9fa;
}

.section-title h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 1rem;
}

.section-title p {
	font-size: 1.1rem;
	color: #7f8c8d;
}

.feature-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	font-size: 2rem;
	color: white;
	transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
	transform: rotateY(180deg);
}

.feature-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.feature-card p {
	color: #7f8c8d;
	line-height: 1.7;
}

/* Stats Section */
.stats {
	padding: 5rem 0;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	color: white;
}

.stat-item {
	text-align: center;
}

.stat-item h3 {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.stat-item p {
	font-size: 1.1rem;
	opacity: 0.9;
}

/* Contact Section */
.contact {
	padding: 5rem 0;
	background: #f8f9fa;
}

.contact-info {
	text-align: center;
}

.contact-info h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 1rem;
}

.contact-info .lead {
	font-size: 1.1rem;
	color: #7f8c8d;
	margin-bottom: 3rem;
}

.contact-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-card:hover::before {
	transform: scaleX(1);
}

.contact-card i {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	font-size: 2rem;
	color: white;
	transition: all 0.3s ease;
}

.contact-card:hover i {
	transform: rotateY(180deg);
}

.contact-card h4 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.contact-card p {
	color: #7f8c8d;
	line-height: 1.7;
	margin-bottom: 0.5rem;
}

.contact-card p:last-child {
	margin-bottom: 0;
}

.contact-card a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

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

.contact-card small {
	color: #95a5a6;
	font-size: 0.9rem;
}

/* Footer */
.footer {
	background: #2c3e50;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-logo {
	width: 150px;
	object-fit: contain;
}

.footer-text h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.footer-text p {
	opacity: 0.8;
	margin: 0;
}

.footer-bottom {
	border-top: 1px solid #34495e;
	padding-top: 2rem;
	margin-top: 2rem;
	color: #95a5a6;
	text-align: center;
}

.footer-links {
	margin-bottom: 1rem;
}

.footer-links a {
	color: #95a5a6;
	text-decoration: none;
	margin: 0 1rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--primary-light);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-on-scroll {
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}