.example-section {
	max-width: 1200px;
	margin: auto;
	padding: 60px 20px;
	text-align: center;
}

.example-section h2 {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 10px;
}

.example-section p {
	font-size: 1rem;
	color: #777;
	margin-bottom: 40px;
}

.card-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}

.example-card {
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	max-width: 320px;
	transition: transform 0.3s ease;
}

.example-card:hover {
	transform: translateY(-10px);
}

.example-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.example-card .card-content {
	padding: 20px;
}

.example-card h3 {
	font-size: 1.2rem;
	color: #222;
	margin-bottom: 10px;
}

.example-card p {
	font-size: 0.95rem;
	color: #555;
}

.example-card .view-btn {
	margin-top: 15px;
	display: inline-block;
	padding: 10px 18px;
	background: linear-gradient(135deg, hsl(23, 95%, 45%), #7928ca);
	color: #fff;
	border-radius: 25px;
	text-decoration: none;
	transition: background 0.3s ease;
}



@media (max-width: 768px) {
	.example-card {
		max-width: 100%;
	}
}

.nav-item.active,
.nav-item.active i,
.nav-item.active span {
	color: #f16727 !important;
}
