/* WhatsApp sticky strip */
.group-card-container {
	max-width: 800px;
	margin: 0 auto 20px auto;
	width: 100%;
}

.group-card {
	position: relative;
	border: 2px solid transparent;
	border-radius: 5px;
	background: #f0f8ff;
	display: flex;
	align-items: center;
	padding: 7px;
	justify-content: space-between;
	overflow: hidden;
	transition: all 0.3s ease;
	animation: whatsapp-border-animation 1s infinite;
}

.group-card.sticky {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	margin: 0 auto !important;
	z-index: 9999 !important;
	width: 100% !important;
	max-width: 800px !important;
	background: #f0f8ff !important;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
	animation: whatsapp-border-animation 1s infinite !important;
	border-radius: 0 0 5px 5px !important;
}

body.sticky-active .group-card.sticky {
	left: 50% !important;
	transform: translateX(-50%) !important;
}

body.sticky-active {
	padding-top: 70px !important;
}

@media (min-width: 801px) {
	.group-card.sticky {
		width: 800px !important;
	}
}

@keyframes whatsapp-border-animation {
	0% { border-color: transparent; }
	50% { border-color: #25d366; }
	100% { border-color: transparent; }
}

.whatsapp-join-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
	padding: 5px 20px;
	border-radius: 2px;
	flex-shrink: 0;
	transition: all 0.3s ease-in-out;
	color: #fff !important;
	background: #25d366;
}

.whatsapp-join-btn i {
	margin-right: 5px;
}

.whatsapp-join-btn:hover {
	transform: scale(1.05);
}

/* Job Alert style homepage listing */
.job-alert-home {
	margin: 0 0 30px;
}

/* Top social icon row */
.job-alert-social-row {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin: 0 0 16px;
}

.social-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: #ffffff !important;
	font-size: 20px;
	text-decoration: none !important;
}

.social-icon-whatsapp {
	background-color: #25d366;
}

.social-icon-telegram {
	background-color: #229ed9;
}

.social-icon-btn:hover {
	opacity: 0.85;
}

/* Search bar */
.job-alert-search {
	max-width: 500px;
	margin: 0 auto 20px;
}

.job-alert-search .search-form {
	display: flex;
	width: 100%;
}

.job-alert-search .search-field {
	flex: 1 1 auto;
	padding: 10px 14px;
	border: 1px solid #d5d5d5;
	border-radius: 3px 0 0 3px;
}

.job-alert-search .search-submit {
	flex: 0 0 auto;
	padding: 10px 18px;
	border-radius: 0 3px 3px 0;
	background-color: #d40000;
	color: #ffffff;
	border: none;
}

/* Category boxes */
.job-alert-categories {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 0 0 24px;
}

.job-alert-cat-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	background-color: #1e73be;
	color: #ffffff !important;
	text-decoration: none !important;
	padding: 18px 10px;
	border-radius: 4px;
	font-weight: 700;
	text-align: center;
	transition: opacity 0.2s ease-in-out;
}

.job-alert-cat-box:nth-child(2) {
	background-color: #d40000;
}

.job-alert-cat-box:nth-child(3) {
	background-color: #008000;
}

.job-alert-cat-box:hover {
	opacity: 0.85;
}

.job-alert-cat-icon {
	font-size: 24px;
}

@media (max-width: 480px) {
	.job-alert-categories {
		gap: 8px;
	}

	.job-alert-cat-box {
		padding: 12px 6px;
		font-size: 13px;
	}

	.job-alert-cat-icon {
		font-size: 20px;
	}
}

/* Yojana image grid */
.job-alert-yojana {
	margin-top: 30px;
}

.job-alert-yojana-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	border: 1px solid #e2e2e2;
	border-top: none;
	padding: 16px;
}

.job-alert-yojana-card {
	display: block;
	text-decoration: none !important;
	border: 1px solid #e2e2e2;
	border-radius: 4px;
	overflow: hidden;
	background: #ffffff;
}

.job-alert-yojana-thumb {
	display: block;
	width: 100%;
	height: 140px;
	object-fit: cover;
}

.job-alert-yojana-thumb--placeholder {
	background-color: #f0f0f0;
}

.job-alert-yojana-title {
	display: block;
	padding: 10px 12px;
	font-weight: 700;
	font-size: 14px;
	color: #222222;
}

.job-alert-empty {
	border: 1px solid #e2e2e2;
	border-top: none;
	padding: 20px;
	text-align: center;
}

@media (max-width: 600px) {
	.job-alert-yojana-grid {
		grid-template-columns: 1fr;
	}
}

.job-alert-seo {
	margin-top: 30px;
}

.job-alert-seo h3 {
	margin: 30px 0 12px;
}

.job-alert-seo h3 span {
	background-color: #008000;
	color: #ffffff;
	padding: 4px 12px;
	display: inline-block;
	font-size: 18px;
	line-height: 1.4;
}

.job-alert-seo p {
	line-height: 1.7;
	margin: 0 0 16px;
}

.job-alert-seo ul {
	margin: 0 0 16px 20px;
}

.job-alert-seo ul li {
	margin-bottom: 6px;
}

.job-alert-bar {
	background-color: #d40000;
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	padding: 14px 15px;
	border-radius: 3px 3px 0 0;
}

.job-alert-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid #e2e2e2;
	border-top: none;
}

.job-alert-item {
	padding: 16px 20px;
	border-bottom: 1px solid #e2e2e2;
	text-align: center;
}

.job-alert-item:nth-child(even) {
	background-color: #f7f8f9;
}

.job-alert-item:last-child {
	border-bottom: none;
}

.job-alert-title {
	display: block;
	font-weight: 700;
	font-size: 17px;
	color: #0000ff;
	text-decoration: underline;
}

.job-alert-title:hover,
.job-alert-title:focus {
	color: #d40000;
}

.job-alert-excerpt {
	display: block;
	margin-top: 6px;
	color: #d40000;
	font-weight: 700;
	font-size: 15px;
}

@media (max-width: 768px) {
	.job-alert-bar {
		font-size: 18px;
	}

	.job-alert-title {
		font-size: 16px;
	}
}
