/* ─────────────────────────────────────────
   Immigence – Immigration Journey Widget
───────────────────────────────────────── */

.ij-section * {
	box-sizing: border-box;
}

/* Full Width Setup */
.ij-section {
	width: 100%;
	padding: 20px 24px;
	box-sizing: border-box;
}

.ij-inner {
	width: 100%;
	max-width: 100% !important;
	margin: 0 auto;
}

.ij-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 12px;
	width: 100%;
}

.ij-header {
	text-align: left;
	margin-bottom: 25px;
}

.ij-heading {
	margin: 0;
	font-size: 36px !important;
	font-weight: 700 !important;
	color: #0B1D3A !important;
	font-family: "Libre Baskerville", Georgia, serif !important;
	line-height: 1.2;
}

.ij-card-wrap {
	position: relative !important;
	display: flex;
	width: 100%;
}

/* Card Main Container */
.ij-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #DCE3EC;
	box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* Top Navy Block */
.ij-card-top {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	padding: 14px 6px 12px 6px;
	background-color: #0B1D3A;
	border-bottom: 3px solid #EAA315;
	min-height: 135px;
}

/* Number Badge Tag */
.ij-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #EAA315;
	color: #0B1D3A;
	font-weight: 800;
	font-size: 11px;
	z-index: 5;
}

/* Circle Icon Holder */
.ij-icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	background-color: #ffffff;
	margin-bottom: 8px;
	margin-top: 4px;
	flex-shrink: 0;
}

.ij-icon-circle i,
.ij-icon-circle svg {
	font-size: 30px !important;
	width: 30px !important;
	height: 30px !important;
	color: #b38c3e !important;
	fill: #b38c3e !important;
}

.ij-card-title {
	margin: 0;
	line-height: 1.35;
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	padding: 0 4px;
}

/* Bottom Card Body */
.ij-card-body {
	background-color: #ffffff;
	padding: 12px 8px;
	flex: 1;
}

.ij-card-points {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ij-card-points li {
	position: relative;
	padding-left: 10px;
	margin-bottom: 6px;
	font-size: 14px !important;
	line-height: 1.35;
	color: #2D3748 !important;
	font-weight: 500;
}

.ij-card-points li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: -1px;
	font-weight: 900;
	color: #2D3748;
}

.ij-card-points li:last-child {
	margin-bottom: 0;
}

/* Bottom Banner */
.ij-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background-color: #ffffff;
	border: 1.5px solid #0B1D3A;
	border-radius: 8px;
	padding: 10px 20px;
	margin: 28px auto 0 auto;
	max-width: 580px;
}

.ij-banner-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #0B1D3A;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ij-banner-icon i,
.ij-banner-icon svg {
	font-size: 14px !important;
	width: 14px !important;
	height: 14px !important;
	color: #ffffff !important;
	fill: #ffffff !important;
}

.ij-banner-content {
	text-align: left;
	border-left: 1.5px solid #0B1D3A;
	padding-left: 14px;
}

.ij-banner-heading {
	margin: 0 0 2px 0;
	font-size: 15px !important;
	font-weight: 800 !important;
	color: #0B1D3A !important;
}

.ij-banner-text {
	margin: 0;
	font-size: 13px !important;
	color: #4A5568 !important;
}

/* Tablet & Mobile Fallbacks */
@media (max-width: 1100px) {
	.ij-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
	}
	.imm-dynamic-arrow {
		display: none !important;
	}
}

@media (max-width: 768px) {
	.ij-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.ij-grid {
		grid-template-columns: 1fr;
	}
}