/* ── Taxi Hub – Book a Ride ── */

.thub-2268 {
	max-width: 960px;
	margin: 0 auto;
	padding: 20px 16px;
}

.thub-2268-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/* ── Tile ── */

.thub-2268-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px 20px 22px;
	border-radius: 14px;
	background: linear-gradient(145deg, #0d0dbd 0%, #08086e 100%);
	color: #fff;
	text-decoration: none;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 8px 30px rgba(11, 11, 168, 0.25);
}

.thub-2268-tile::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
	pointer-events: none;
}

.thub-2268-tile::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.thub-2268-tile:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(11, 11, 168, 0.4);
	text-decoration: none;
	color: #fff;
}

.thub-2268-tile:hover::after {
	opacity: 1;
}

/* ── Icon ── */

.thub-2268-icon-wrap {
	width: 65%;
	max-width: 180px;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.9);
	filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
	transition: transform 0.3s ease;
}

.thub-2268-tile:hover .thub-2268-icon-wrap {
	transform: scale(1.05);
}

.thub-2268-icon-wrap svg {
	width: 100%;
	height: auto;
}

.thub-2268-icon-wrap img {
	width: 100%;
	height: auto;
	display: block;
}

/* ── Typography ── */

.thub-2268-title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 5px;
	letter-spacing: 0.02em;
	color: #fff;
}

.thub-2268-desc {
	font-size: 12px;
	margin: 0 0 10px;
	opacity: 0.7;
	line-height: 1.4;
	color: #fff;
}

/* ── Arrow ── */

.thub-2268-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	transition: background 0.3s ease, transform 0.3s ease;
}

.thub-2268-tile:hover .thub-2268-arrow {
	background: rgba(255, 255, 255, 0.3);
	transform: translateX(4px);
}

/* ── Responsive ── */

@media (max-width: 600px) {
	.thub-2268-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.thub-2268-tile {
		padding: 32px 20px 28px;
	}

	.thub-2268-icon-wrap {
		width: 85%;
		max-width: 200px;
	}

	.thub-2268-title {
		font-size: 18px;
	}
}
