* {
	 font-family: "Poppins", sans-serif;
	box-sizing: border-box;
}

body {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	/* font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
	margin: 0;
	padding: 0;
	min-height: 100vh;
}

	body::after {
		content: "";
		background: url(../images/footsteps.png);
		background-repeat: repeat;
		background-attachment: fixed;
		height: 120%;
		opacity: 0.03;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		position: fixed;
		z-index: -1;
	}

.container {
	max-width: 950px;
	background-color: transparent;
	padding: 2rem 2rem;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

.banner {
	text-align: center;
	margin-bottom: 3rem;
	width: 100%;
}

.banner img {
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	max-width: 100%;
}

.banner img:hover {
	transform: translateY(-5px);
}

.section-title {
	text-align: center;
	margin: 0px 0 1.5rem 0;
	font-weight: 800;
	font-size: 2.5rem;
	color: #ffffff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.5px;
}

.section-description {
	text-align: center;
	margin-bottom: 3rem;
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 400;
	opacity: 0.9;
	line-height: 1.6;
}

.graphics-container {
	display: flex;
	justify-content: center;
	flex-direction: row;
	gap: 1rem;
	flex-wrap: wrap;
}

.step-item {
	min-height: 550px;
	border-radius: 25px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	overflow: hidden;
	position: relative;
}

.step-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.step-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.step-container {
	text-align: center;
	margin: 2rem auto;
	padding: 1rem;
}

.step-circle {
	position: relative;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	margin: auto;
	background: linear-gradient(145deg, #f0f0f0, #ffffff);
	box-shadow: 
		inset 0 0 0 1px rgba(255, 255, 255, 0.8),
		0 0 30px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.progress-ring {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.progress-ring__background {
	fill: none;
	stroke: #e8e8e8;
	stroke-width: 16;
	opacity: 0.3;
}

.progress-ring__circle {
	fill: none;
	stroke: url(#gradient);
	stroke-width: 16;
	stroke-linecap: round;
	transform: rotate(-90deg);
	transform-origin: 50% 50%;
	stroke-dasharray: 690;
	stroke-dashoffset: 690;
	transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
	filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
}

.step-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.step-icon img {
	width: 80px;
	height: 80px;
	margin-bottom: 1rem;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.step-count {
	font-size: 2.5rem;
	font-weight: 900;
	color: #333;
	letter-spacing: -1px;
}

.step-count-label {
	font-size: 0.9rem;
	color: #666;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.step-label {
	margin-top: 1.5rem;
	color: #333;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: center;
	letter-spacing: -0.2px;
}

.step-header {
	text-align: center;
	padding: 2rem 1rem 1rem;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	margin: -1rem -1rem 1rem -1rem;
	border-radius: 25px 25px 0 0;
}

.step-header h3 {
	color: #333;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	letter-spacing: -0.3px;
}

.step-header p {
	color: #666;
	font-size: 1rem;
	font-weight: 400;
	margin: 0;
	opacity: 0.8;
}

.step-footer {
	text-align: center;
	padding: 1.5rem;
	color: #666;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.5;
}

.stats-container {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 3rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	width: 100%;
}

.stats-item {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	width: 100%;
	background-color: white;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	padding: 1rem;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.stats-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.stats-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.stats-header {
	text-align: center;
	padding: 2rem 1rem 1rem;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	margin: -1rem -1rem 1rem -1rem;
	border-radius: 25px 25px 0 0;
	font-size: 0.825rem;
}

.stats-header h3 {
	color: #333;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	letter-spacing: -0.3px;
}

.table-responsive {
	margin-top: 4rem;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
}

.table {
	margin: 0;
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
	table-layout: fixed;
}

.table-dark {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.table-dark th {
	border: none;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-size: 0.9rem;
}

.table tbody tr {
	transition: all 0.3s ease;

}

.table tbody tr:hover {
	background-color: rgba(102, 126, 234, 0.05);
	transform: scale(1.02);
}

.table td {
	border-color: rgba(0, 0, 0, 0.05);
	font-weight: 500;
	vertical-align: middle;
	padding: 1rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* İsim sütunu için daha kalın yazı */
.table td:nth-child(2) {
	font-weight: 600;
}

/* Sıra numarası için daha kalın yazı */
.table td:nth-child(1) strong {
	font-weight: 700;
}

.table th:nth-child(1), .table td:nth-child(1) {
	width: 15%;
}

.table th:nth-child(2), .table td:nth-child(2) {
	width: 35%;
}

.table th:nth-child(3), .table td:nth-child(3) {
	width: 25%;
}

.table th:nth-child(4), .table td:nth-child(4) {
	width: 25%;
}

/* Responsive Design */
@media (min-width: 992px) {
	.graphics-container {
		flex-direction: row;
		justify-content: space-between;
	}
	
	.step-item {
		width: 48%;
		flex: 0 0 48%;
	}
	
	.stats-container {
		justify-content: space-between;
	}
	
	.stats-item {
		flex: 0 1 30%;
		max-width: 30%;
	}
}

@media (max-width: 991px) {
	.graphics-container {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}
	
	.step-item {
		min-height: auto;
		width: 100%;
		min-width: 100%;
	
	}
	
	.step-circle {
		width: 280px;
		height: 280px;
	}
	
	.progress-ring {
		width: 280px;
		height: 280px;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.step-count {
		font-size: 2rem;
	}
	
	.container {
		padding: 2rem 2rem;
	}
	
	.stats-container {
		flex-direction: column !important;
		gap: 1.5rem;
		align-items: center;
	}
	
	.stats-item {
		width: 100% !important;
		max-width: 100% !important;
		flex: none !important;
	}
}

@media (max-width: 768px) {
	.step-circle {
		width: 250px;
		height: 250px;
	}
	
	.progress-ring {
		width: 250px;
		height: 250px;
	}
	
	.step-icon img {
		width: 60px;
		height: 60px;
	}
	
	.step-count {
		font-size: 1.8rem;
	}
	
	.section-title {
		font-size: 1.8rem;
	}
	
	.stats-container {
		flex-direction: column !important;
		gap: 1rem;
		justify-content: center;
		align-items: center;
	}
	
	.stats-item {
		width: 100% !important;
		max-width: 100% !important;
		flex: none !important;
	}
	
	.table td, .table th {
		padding: 0.5rem;
		font-size: 0.9rem;
	}
	
	.table th:nth-child(1), .table td:nth-child(1) {
		width: 12%;
	}
	
	.table th:nth-child(2), .table td:nth-child(2) {
		width: 40%;
	}
	
	.table th:nth-child(3), .table td:nth-child(3) {
		width: 25%;
	}
	
	.table th:nth-child(4), .table td:nth-child(4) {
		width: 23%;
	}
}

@media (max-width: 480px) {
	.step-circle {
		width: 220px;
		height: 220px;
	}
	
	.progress-ring {
		width: 220px;
		height: 220px;
	}
	
	.step-icon img {
		width: 70px;
		height: 70px;
	}
	
	.step-count {
		font-size: 1.5rem;
	}
	
	.container {
		padding: 1rem;
	}
}



/* Animasyonlar */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.step-item {
	animation: fadeInUp 0.6s ease-out;
}

.step-item:nth-child(1) {
	animation-delay: 0.1s;
}

.step-item:nth-child(2) {
	animation-delay: 0.2s;
}
