/******
**	./assets/css/utility-bar.css
*/

/* 🚨 SLEEK 20px Uniform Tricolor Utility Bar */
.india-utility-bar {
	/* Uniform 3-color stripes: Navy | Saffron | Green */
	background: 
		linear-gradient(to right, 
			#000080 0%, #000080 33.33%,    /* Navy - 1/3 */
			#FF9933 33.33%, #FF9933 66.66%, /* Saffron - 1/3 */
			#138808 66.66%, #138808 100%    /* Green - 1/3 */
		);
	color: white;
	padding: 0.15rem 0;  /* Ultra compact */
	height: 22px !important;
	font-size: 0.7rem;
	font-weight: 600;
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	
	/* FIXED POSITIONING */
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 1040 !important;
	width: 100% !important;
	line-height: 1.3;
}

/* ✅ VISIBLE INDIAN FLAG - FontAwesome */
.flag-icon {
	font-size: 0.85rem;
	color: #FF9933 !important;
	margin-right: 0.3rem;
	display: inline-flex;
	align-items: center;
}

/* Compact Live Clock */
.live-clock {
	background: rgba(255,255,255,0.9);
	color: #000080;
	padding: 0.1rem 0.5rem;
	border-radius: 10px;
	font-family: 'Courier New', monospace;
	font-size: 0.7rem;
	font-weight: 700;
	min-width: 135px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.2rem;
}

.ist-badge {
	background: #000080;
	color: white;
	padding: 0.05rem 0.25rem;
	border-radius: 6px;
	font-size: 0.6rem;
	font-weight: 700;
	margin-left: 0.15rem;
}

/* Compact Social Icons */
.social-section a {
	color: white !important;
	font-size: 0.8rem;
	padding: 0.2rem 0.4rem;
	margin: 0 0.05rem;
	border-radius: 4px;
	transition: all 0.3s ease;
	text-decoration: none !important;
}

.social-section a:hover {
	color: #FFD43B !important;
	background: rgba(0,0,0,0.3);
	transform: scale(1.15);
}

/* 🚨 LAYOUT FIXES */
body {
	padding-top: 72px !important;  /* 22px utility + 50px header */
}

#header.fixed-top {
	top: 22px !important;
	z-index: 1035 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.india-utility-bar {
		height: 24px !important;
		padding: 0.1rem 0;
		font-size: 0.65rem;
	}
	.live-clock { min-width: 120px; font-size: 0.65rem; }
	body { padding-top: 74px !important; }
}
