/* breadcrumbs */

/* Breadcrumb spacing and arrow logic */
.bread-crumb li {
	display: inline-block;
	position: relative;
	padding-right: 25px; /* Space for the arrow */
	margin-right: 10px;
}

/* Only add the arrow if there is another <li> after this one */
.bread-crumb li:not(:last-child):after {
	position: absolute;
	content: "\f105";
	font-family: "FontAwesome";
	font-size: 15px;
	color: #fff;
	top: 1px;
	right: 0px; /* Adjusted to sit between items */
}

/* Remove padding for the last item since it has no arrow */
.bread-crumb li:last-child {
	padding-right: 0;
	margin-right: 0;
}

.logo-box {
	position: relative;
	display: inline-block;
	/* padding: 30px 40px 32px 40px; */
	padding: 20px 40px 20px 40px;
	border-right: 1px solid #e5e5e5;
	background: linear-gradient(to bottom, #000000, #333333);
}

/* Mobile View Centering */
@media (max-width: 768px) {
	.logo-box {
		display: block; /* Changes from inline-block to block to span full width */
		text-align: center; /* Centers the <a> and <img> tags inside */
		border-right: none; /* Removes the side border which looks off-center on mobile */
		padding: 15px 20px; /* Slightly reduced padding for smaller screens */
		margin: 0 auto; /* Ensures the box itself is centered if it has a max-width */
	}

	.logo-box img {
		max-width: 200px; /* Prevents the logo from being too large on small screens */
		height: auto;
		display: inline-block;
	}
}

/* Base container style for the service box */
.single-category-content {
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	background: #ffffff;
	cursor: default;
}

/* Hover Effect: Background & Shadow */
.single-category-content:hover {
	background: #1a1a1a !important; /* Deep charcoal background */
	border-color: #e31e24 !important; /* Brand Red Border */
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(227, 30, 36, 0.2);
}

/* Hover Effect: Icon Glow */
.single-category-content:hover .icon-box i {
	color: #ffffff !important;
	text-shadow: 0 0 10px #e31e24;
	transform: scale(1.1);
}

/* Hover Effect: Text Color */
.single-category-content:hover h3,
.single-category-content:hover p,
.single-category-content:hover li span {
	color: #ffffff !important;
}

/* Hover Effect: Checkmark & Line */
.single-category-content:hover .service-details-list li {
	border-bottom-color: #333 !important;
}

.single-category-content:hover .fa-check {
	color: #ffffff !important;
	filter: drop-shadow(0 0 5px #e31e24);
}

/* Smooth transition for internal elements */
.icon-box i,
h3,
p,
li,
li span,
.fa-check {
	transition: all 0.3s ease;
}

/* products page  */
/* Container for the product image */
.product-img-wrapper {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin: 0;
	background: #ffffff; /* White background for 'contain' logic */
	display: flex;
	align-items: center;
	justify-content: center;

	/* Removed the border as requested */
	/* border: none !important; */

	/* Apply rounded corners only to the bottom two sides */
	border-radius: 30px;
}

/* Ensure the image respects the container's rounded corners */
.uniform-gallery-img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	padding: 15px;
	transition: transform 0.4s ease;
}

/* Hover effect for a premium modification feel */
.item-holder:hover .uniform-gallery-img {
	transform: scale(1.05);
	border-radius: 30px;
}

/* Optional: Add a subtle shadow to make the rounded bottom pop */
.item-holder {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.219);
	border-radius: 30px; /* Matches the image wrapper */
	transition: all 0.3s ease;
}

.item-holder:hover {
	box-shadow: 0 10px 25px rgba(227, 30, 36, 0.15); /* Brand red glow on hover */
}

.product-img-wrapper img {
	border-radius: 40px;
}

/* language selector  */

/* Center the selector horizontally in its container */
.lang-wrapper {
	display: flex;
	justify-content: center; /* Centers the button horizontally */
	align-items: center;
	width: 100%;
	padding: 10px 0px;
}

.selected-lang {
	background: #1a1a1a; /* Matches your premium dark theme */
	color: #ffffff;
	padding: 10px 22px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.selected-lang:hover {
	background: #e31e24; /* Brand Red from your logo */
	box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.selected-lang i.fa-globe {
	font-size: 16px;
	color: #e31e24; /* Red icon by default */
	transition: color 0.3s ease;
}

.selected-lang:hover i.fa-globe {
	color: #ffffff;
}

.arrow-icon {
	font-size: 10px;
	opacity: 0.7;
}

/* Attractive Dropdown Menu */
.lang-options {
	display: none;
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%); /* Keeps dropdown centered to the button */
	background: #ffffff;
	min-width: 150px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	overflow: hidden;
	padding: 8px 0;
	border: 1px solid #f0f0f0;
}

.lang-options li {
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease;
}

.lang-options li:hover {
	background-color: #f8f8f8;
	color: #e31e24;
	padding-left: 25px; /* Subtle slide effect */
}

.flag-icon {
	width: 20px;
	height: auto;
	border-radius: 2px;
}
