.mainHeading {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#shopsSection {
	background-color: #fff;
	color: black;
	padding-bottom: 16px;
}
/* Add shadows and animations to cards */
.indexCard {
	text-align: center;
	background: #e8e7e7;
	overflow: hidden;
	/* border-radius: 8px; */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;

	/* background: #f4f4f4; */
	padding: 12px;
	border-radius: 10px;
	/* transition: transform 0.3s; */
}
.indexCard img {
	border-radius: 10px;
}
h5 {
	color: #000;
}
.navbar {
	padding: 0 0;
}
#domain {
	font-weight: bolder;
	font-size: 25px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	color: rgb(255, 255, 255);
	font-style: italic;
	/* background-color: #161d1a57; */
	margin-top: 0;
}
#location {
	font-weight: bolder;
	font-size: medium;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	color: rgb(255, 255, 255);
	font-style: italic;
	/* background-color: #161d1a57; */
}
#domain:hover {
	color: rgb(241, 238, 238);
}
.shopsRow {
	--bs-gutter-x: 0.8rem;
}

.indexCard:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Animation for image on hover */
.indexCard img {
	transition: transform 0.3s ease-in-out;
}

.indexCard:hover img {
	transform: scale(1.07);
}

/* Animation for the link */
.shop-link {
	text-decoration: none;
	color: inherit;
}

.shop-link:hover .shops {
	background-color: #4caf4f; /* Darker shade on hover */
	transition: background-color 0.3s ease;
}

/* Subtle entry animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.indexCard {
	animation: fadeInUp 0.5s ease both;
}

.indexpageshop {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
	grid-column-gap: 7px;
	margin-top: 5px;
}
/* .shops {
	background-color: rgb(41, 39, 39);
} */
/* .indexCard:hover {
	top: -5px;
} */
.indexCard img {
	width: 100%;
	object-fit: fill;
	aspect-ratio: 1.23/1;
}
.tooltip-inner {
	background-color: #000 !important; /* Optional: Keep the background black */
	color: #fff !important; /* Change text color to white */
	border-radius: 5px; /* Optional: Add rounded corners */
	font-size: 14px; /* Optional: Adjust font size */
}
