/* --- Announcement Bar --- */
.announcement-bar {
	background-color: #FF4757;
/* Eye-catching color */
	color: white;
	text-align: center;
	padding: 10px;
	font-family: sans-serif;
	position: relative;
}

.announcement-bar a {
	color: white;
	font-weight: bold;
	text-decoration: underline;
	margin-left: 10px;
}

/* --- Global Font Settings --- */
/* Applied only to body/headings to avoid breaking icons on spans/divs */
body, h1, h2, h3, h4, h5, h6, p, a, li, .wp-block-button__link {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

/* --- Button Styles --- */
.shreehi-btn .wp-block-button__link {
	transition: all .3s ease !important;
}

.shreehi-btn .wp-block-button__link:hover {
	background-color: #D97706 !important;
/* Changes to Brown */
	transform: translateY(-2px);
/* Slight lift effect */
	color: #ffffff !important;
}

/* --- Service Card --- */
.service-card {
	background: #ffffff;
/* Changed from var(--white) for safety */
	padding: 2.5rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: transform .3s;
	border-top: 4px solid #D97706;
}

.service-card:hover {
	transform: translateY(-5px);
}

/* --- Hiding Elements --- */
/* Hide post meta, author info, and social sharing */
.entry-header .entry-meta,
.entry-footer,
.sharedaddy,
.sd-social,
.sd-content,
.entry-footer .cat-links,
.entry-footer .tags-links,
.author-bio,
.author-info,
.author-description,
.author.vcard,
.author-box,
#author-box,
.about-author,
.entry-author,
.post-author,
.author-profile {
	display: none !important;
}

/* Hide Featured Images on Blog/Archive pages */
.blog .wp-block-post-featured-image,
.archive .wp-block-post-featured-image,
.blog .post-thumbnail,
.archive .post-thumbnail {
	display: none !important;
}

/* --- Single Post Tweaks --- */
.single-post .wp-block-post-featured-image img {
	max-width: 800px;
	height: auto;
	margin: 0 auto;
	display: block;
}

/* --- Header & Footer Colors --- */
footer {
	background-color: #cccccc;
	padding: 40px 20px;
}

body {
	background-color: #f7f7f7;
}

.site-header,
header.site-header,
.header-inner,
.header-top {
	background-color: #e4e4e4 !important;
}

.site-header a,
.header-inner a,
.site-branding a {
	color: #1a1a1a !important;
}

.your-header-class {
	background-color: #ededed !important;
}

/* --- Typography Tweaks --- */
h6 {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
/* FIXED: changed from 2px to 14px. Adjust if needed. */
	font-weight: 500;
/* FIXED: changed from 5 to 500 */
	color: #cccccc;
}

/* --- Counter Section Animation --- */
.css-counter-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	background-color: #f7f7f7;
	padding: 50px 20px;
	text-align: center;
}

.css-counter-box {
	width: 180px;
	padding: 20px;
/* Combined from duplicate rule */
	background: #ffffff;
/* Combined from duplicate rule */
	border-radius: 12px;
/* Combined from duplicate rule */
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
/* Combined from duplicate rule */
	opacity: 0;
	transform: scale(0.9);
	animation: fadeZoomIn 1s ease forwards;
	transition: all .3s ease;
}

.css-counter-box:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	background: #f0f8f7;
}

.css-counter-box:nth-child(1) {
	animation-delay: .3s;
}

.css-counter-box:nth-child(2) {
	animation-delay: .6s;
}

.css-counter-box:nth-child(3) {
	animation-delay: .9s;
}

.css-counter-box:nth-child(4) {
	animation-delay: 1.2s;
}

.css-counter-number {
	font-size: 2.5em;
	font-weight: bold;
	color: #444;
}

.css-counter-label {
	font-size: 1em;
	color: #888;
	margin-top: 8px;
}

@keyframes fadeZoomIn {
	to {
		opacity: 1;
		transform: scale(1);
	}
}