/* ==========================CERTIFICATIONS========================== */
.certifications {
	width: 100%;
	margin: 60px auto 0;
	padding: 0 20px;
	box-sizing: border-box;
	background-color: #fff;
}

.certifications-button-wrapper {
	text-align: center;
	margin: 40px 0;
}

.certifications-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background-color: #FFD700;
	color: #333;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	border-radius: 30px;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
	cursor: default; /* غیرفعال کردن کلیک */
}

.certifications-button:hover {
	background-color: #ffcc00;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.certifications-button svg {
	width: 24px;
	height: 24px;
	stroke: #333;
}

.certifications-button span {
	font-size: 18px;
	font-weight: bold;
}

.certifications-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.certification-item {
	position: relative;
	background-color: #fff;
	border: 1px solid #FFD700; /* بوردر نازک طلایی */
	border-radius: 12px;
	box-shadow: 0px 0px 11px 6px rgba(219,213,8,0.71);
-webkit-box-shadow: 0px 0px 11px 6px rgba(219,213,8,0.71);
-moz-box-shadow: 0px 0px 11px 6px rgba(219,213,8,0.71);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.5s ease;
}

.certification-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 25px rgba(255, 215, 0, 0.5); /* سایه طلایی قوی‌تر در هاور */
}

.certification-image {
	width: 100%;
	height: 200px;
	object-fit: contain;
	padding: 20px;
	background-color: #f9f9f9;
	transition: transform 0.3s ease;
}

.certification-item:hover .certification-image {
	transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
	.certifications {
		margin: 40px auto 0;
		padding: 0 15px;
	}
	.certifications-button {
		padding: 10px 20px;
		font-size: 16px;
	}
	.certifications-button svg {
		width: 20px;
		height: 20px;
	}
	.certifications-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 20px;
	}
	.certification-image {
		height: 150px;
	}
}

@media (max-width: 480px) {
	.certifications {
		margin: 30px auto 0;
	}
	.certifications-button {
		padding: 8px 16px;
		font-size: 14px;
	}
	.certifications-button svg {
		width: 18px;
		height: 18px;
	}
	.certifications-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.certification-image {
		height: 120px;
	}
}