﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background-color: #f8f9fa;
	margin: 0;
	padding: 0;
	color: #333;
	overflow-x: hidden;
}

.container {
	max-width: 100% !important;
	margin: 0 auto !important;
	padding: 0 0px !important;
}

.site-header {
	margin: 0px;
	display: none;
}

.breadcrumb-wrapper,
.page-header {
	display: none;
}

header.hero {
	background: url('https://images.unsplash.com/photo-1526772662000-3f88f10405ff?auto=format&fit=crop&w=1920&q=80') no-repeat center/cover;
	/* background: url("../img/diwali-offers-banner.jpg") no-repeat center;
	background-size: contain; */
	position: relative;
}

.hero-img img{
	width: 100%;
	height: 80vh;
	object-fit: fill;
	margin: 0;
	padding: 0;
}


/* .overlay {
	background: rgba(0, 0, 0, 0.45);
	height: 100%;
	padding: 20px;
} */


.hero-text {
	text-align: center;
	margin-top: 70px;
}

.hero-text h1 {
	font-size: 28px;
	font-weight: 700;
	color: white !important;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}


/* home page header menu  */
.label::after {
	content: '';
}

.services {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -30px;
	background: #f9f9f9;
	display: flex;
	justify-content: space-around;
	flex-wrap: nowrap;
	width: 90%;
	max-width: 70%;
	padding: 10px;
	border-radius: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.service {
	padding: 7px 5px;
	font-weight: 600;
	font-size: 1.0vw;
}

.service a {
	display: flex;
	flex-direction: row;
	/* ✅ default: row (emoji + text beside) */
	align-items: center;
	text-decoration: none;
	color: black;
	font-weight: 600;
	font-size: 1.0vw;
}
.service a:hover {
	 
	text-decoration: none; 
}

.emoji {
	margin-right: 6px;
	/* spacing between emoji and text in desktop */
	font-size: 1.2em;
	/* normal size */
}

.label {
	white-space: nowrap;
}

/* ✅ Mobile view (emoji on top + bigger) */
@media (max-width: 768px) {
	.services {
		padding: 1px;
		width: 90%;
		max-width: 90%;
	}

	.service a {
		flex-direction: column;
		/* stack emoji on top */
		font-size: 14px;
	}

	.emoji {
		margin-right: 0;
		font-size: 26px;
		/* bigger emoji */
		line-height: 1;
	}

	.label {
		font-size: 0;
		/* hide full text */
	}

	/* show short text */
	.label::before {
		content: attr(data-short);
		font-size: 13px;
		/* visible font size */
		font-weight: 600;
		padding: 5px;
		display: inline-block;
		line-height: 1.2;
		color: black;
	}
}