

.kiu-countdown-wrapper {
	padding: 2rem 0;
}

.kiu-countdown {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.kiu-countdown .time-box {
	background: #1f1f1f;
	border: 2px solid #ff4081;
	padding: 1.2rem;
	border-radius: 15px;
	width: 100px;
	text-align: center;
	box-shadow: 0 0 20px rgba(255, 64, 129, 0.3);
}

.kiu-countdown .time {
	font-size: 2.5rem;
	font-weight: bold;
	color: #fff;
	display: block;
}

.kiu-countdown .label {
	color: #ccc;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: block;
}

@media (max-width: 576px) {
	.kiu-countdown {
		gap: 1rem;
	}

	.kiu-countdown .time-box {
		width: 80px;
		padding: 1rem;
	}

	.kiu-countdown .time {
		font-size: 2rem;
	}
}



/*landing page count time*/
.countdown-box {
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	animation: glow-border 2s infinite alternate;
}

.countdown-item {
	display: flex;
	align-items: center;
	gap: 4px;
}

.count-value {
	font-weight: bold;
	min-width: 20px;
	display: inline-block;
	text-align: center;
}

@keyframes glow-border {
	0% {
		box-shadow: 0 0 5px #ff0066;
	}
	100% {
		box-shadow: 0 0 15px #ff0066;
	}
}

/*photogalley*/




/* whatsapp KASONGO MAKENDE
-------------------------------------------- */

.whatsapp-float {
	position: fixed;
	bottom: 90px; /* place above the ticket button */
	right: 20px;
	width: 56px;
	height: 56px;
	background-color: #25d366;
	color: white;
	border-radius: 50%;
	z-index: 999;
	transition: all 0.3s ease;
	text-decoration: none;
}

.whatsapp-float:hover {
	background-color: #1ebea5;
	transform: scale(1.05);
}