/* Box Under Slider */
.box-under-slider {
	width: 100%;
	padding: 60px 20px;
	background-color: #fff;
	box-sizing: border-box;
}

.box-container {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	max-width: 1200px;
	margin: 0 auto;
	gap: 30px;
}

.box-column {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); /* سایه بیشتر */
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #d8d8d8;
}

.box-column:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.box-icon {
	margin-bottom: 20px;
}

.box-icon svg {
	width: 64px;
	height: 64px;
}

.box-title {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin: 0 0 15px 0;
}

.box-description {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin: 0;
	/* محدودیت ۴ خط */
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
	.box-container {
		flex-direction: column;
		gap: 20px;
	}
	.box-column {
		padding: 20px;
	}
	.box-title {
		font-size: 20px;
	}
	.box-description {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.box-under-slider {
		padding: 40px 15px;
	}
	.box-column {
		padding: 15px;
	}
	.box-title {
		font-size: 18px;
	}
	.box-icon svg {
		width: 48px;
		height: 48px;
	}
}