* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
	min-height: 100vh;
}

/* Header */
header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

nav {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: #2563eb;
	text-decoration: none;
	margin-top: 10px;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin-top: -9px;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: #2563eb;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Hero Section */
.hero {
	text-align: center;
	padding: 2rem 0 1rem;
	color: white;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Card Grid */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.card {
	background: white;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #2563eb, #f97316);
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2563eb, #f97316);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	margin-bottom: 1.5rem;
}

.card h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: #333;
}

.card p {
	color: #666;
	margin-bottom: 1rem;
}

.card ul {
	list-style: none;
	margin-left: 0;
}

.card li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 1.5rem;
	color: #555;
}

.card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #f97316;
	font-weight: bold;
}

textarea {
  resize: none;
}

/* Sections */
.section {
	/*padding: 4rem 0;*/
	padding: 2rem 0 0;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	/*margin-bottom: 3rem;*/
	color: white;
	font-weight: 700;
}

/* About Section */
.about-section {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	margin: 0rem 0 3rem;
}
.about-section a {
  color: #bce9ff;
}
.about-section a:hover {
  color: #fff;
}
.about-content {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 3rem;
	align-items: center;
}

.about-text {
	color: white;
}

.about-text h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.about-text p {
	margin-bottom: 1rem;
	opacity: 0.9;
}

.about-image {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.testimonials {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	margin:1rem 0;
}

.testimonial-card {
	background: white;
	border-radius: 15px;
	padding: 2rem;
	margin-bottom: 2rem;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.testimonials .testimonial-card:last-child{
	margin-bottom: 0rem;
}
.testimonial-card::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: #2563eb;
	line-height: 1;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 1rem;
	color: #555;
	padding-left: 2rem;
}

.testimonial-author {
	font-weight: 600;
	color: #333;
	text-align: right;
}

/* Contact Section */
.contact-section {
	background: white;
	border-radius: 20px;
	padding: 3rem;
	margin: 1rem 0 3rem;
	text-align: center;
}

.contact-section h2 {
	color: #333;
	margin-bottom: 1rem;
}

.contact-info {
	/*display: flex;
	gap: 2rem;
	flex-wrap: wrap;*/
	text-align: center;
	margin-top: 20px;
}
.footer-section .contact-info{
	text-align: left;
	margin-top: 0px;
}

.contact-item {
	display: inline-block;
	/*align-items: center;
	gap: 0.5rem;*/
	background: #e1e1e1;
	margin: 0 10px;
	padding: 1rem 1.5rem;
	border-radius: 50px;
	text-decoration: none;
	color: #333;
	transition: background 0.3s ease;
}

.contact-item:hover {
	background: #2563eb;
	color: white;
}
/* Footer */
footer {
	background: #1e3c96;
	color: white;
	padding: 2rem 0 .5rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	margin-bottom: 1rem;
	color: #dde3ff;
}

.footer-section a {
	color: #bce9ff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid #555;
	padding-top: 2rem;
	text-align: center;
	color: #ccc;
}
footer a{
	
}
/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 1rem 2rem;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}

	.nav-links.active {
		display: flex;
	}

	.mobile-menu-btn {
		display: block;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.card-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.about-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.contact-info {
		flex-direction: column;
	}

	.container {
		padding: 0 1rem;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 2rem 0;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.section {
		padding: 2rem 0;
	}

	.card {
		padding: 1.5rem;
	}
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	animation: fadeInUp 0.6s ease forwards;
}

.fade-in-delay {
	opacity: 0;
	animation: fadeInUp 0.6s ease 0.3s forwards;
}