/** home css **/
:root {
	--primary: #3a86ff;
	--primary-dark: #2563d9;
	--navy: #17324d;
	--dark: #102a43;
	--light: #eef7ff;
	--soft: #e4f1ff;
	--sky: #dff2ff;
	--pink: #fff0f5;
	--lavender: #f1efff;
	--surface: #fafdff;
	--text: #29465c;
	--muted: #6b7c8f;
	--border: #d6e6f5;
	--shadow: 0 10px 30px rgba(23, 50, 77, 0.08);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Segoe UI", Arial, sans-serif;
	color: var(--text);
	background: #eef7ff;
	position: relative;
	overflow-x: hidden;
}

body::before,
body::after {
	content: "";
	position: fixed;
	border-radius: 50%;
	pointer-events: none;
	z-index: -1;
	filter: blur(1px);
}

body::before {
	width: 430px;
	height: 430px;
	top: 330px;
	left: -210px;
	background: radial-gradient(
		circle,
		rgba(112, 190, 255, 0.18) 0%,
		rgba(112, 190, 255, 0.08) 42%,
		transparent 72%
	);
	box-shadow:
		260px 390px 0 40px rgba(176, 220, 255, 0.09),
		760px 720px 0 80px rgba(238, 185, 211, 0.08);
}

body::after {
	width: 500px;
	height: 500px;
	right: -260px;
	top: 850px;
	background: radial-gradient(
		circle,
		rgba(244, 185, 215, 0.17) 0%,
		rgba(244, 185, 215, 0.07) 45%,
		transparent 72%
	);
	box-shadow:
		-250px 500px 0 30px rgba(146, 205, 255, 0.08),
		-650px 950px 0 90px rgba(207, 195, 255, 0.07);
}

a {
	transition: all 0.25s ease;
}
.cleanliness-marquee {
	width: 100%;
	overflow: hidden;
	background: linear-gradient(90deg, #fff8e8, #fffdf5, #fff8e8);
	border-top: 1px solid #ead9a7;
	border-bottom: 1px solid #ead9a7;
	padding: 10px 0;
	position: relative;
}

.cleanliness-marquee-inner {
	display: inline-flex;
	align-items: center;
	gap: 80px;
	min-width: max-content;
	animation: cleanlinessScroll 22s linear infinite;
}

.marquee-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #174a35;
	font-family: "Noto Sans Devanagari", "Nirmala UI", sans-serif;
	font-size: 17px;
	font-weight: 600;
	white-space: nowrap;
}

.marquee-item img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

@keyframes cleanlinessScroll {
	from {
		transform: translateX(100vw);
	}

	to {
		transform: translateX(-100%);
	}
}

.cleanliness-marquee:hover .cleanliness-marquee-inner {
	animation-play-state: paused;
}

@media (max-width: 768px) {
	.cleanliness-marquee {
		padding: 8px 0;
	}

	.cleanliness-marquee-inner {
		gap: 45px;
		animation-duration: 18s;
	}

	.marquee-item {
		font-size: 14px;
		gap: 7px;
	}

	.marquee-item img {
		width: 15px;
		height: 15px;
	}
}
/** header css **/
.accessibility-bar {
	width: 100%;
	background: #102a43;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	position: relative;
	z-index: 9999;
}

.accessibility-inner {
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.accessibility-left,
.accessibility-right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}

.accessibility-title,
.language-label {
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	margin-right: 5px;
}

.accessibility-btn,
.language-btn {
	min-height: 28px;
	padding: 4px 9px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 4px;
	background: transparent;
	color: #fff;
	font-family: inherit;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.25s ease;
}

.accessibility-btn:hover,
.accessibility-btn.active,
.language-btn:hover,
.language-btn.active {
	background: #fff;
	color: #102a43;
	border-color: #fff;
}

.accessibility-btn:focus-visible,
.language-btn:focus-visible {
	outline: 2px solid #ffd54f;
	outline-offset: 2px;
}

.main-header {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #fff 0%, #fafdff 55%, #eef8ff 100%);
	border-bottom: 1px solid #dbe8f2;
	padding: 10px 0;
}

.main-header::before,
.main-header::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.main-header::before {
	width: 300px;
	height: 300px;
	left: 12%;
	top: -220px;
	background: radial-gradient(
		circle,
		rgba(58, 134, 255, 0.13) 0%,
		rgba(58, 134, 255, 0.07) 45%,
		transparent 72%
	);
	box-shadow:
		260px 55px 0 25px rgba(112, 190, 255, 0.07),
		560px -15px 0 50px rgba(58, 134, 255, 0.05),
		850px 75px 0 20px rgba(229, 185, 75, 0.08);
}

.main-header::after {
	width: 230px;
	height: 230px;
	right: 5%;
	bottom: -180px;
	background: radial-gradient(
		circle,
		rgba(229, 185, 75, 0.13) 0%,
		rgba(229, 185, 75, 0.06) 45%,
		transparent 72%
	);
	box-shadow:
		-260px 35px 0 25px rgba(112, 190, 255, 0.06),
		-540px -20px 0 50px rgba(58, 134, 255, 0.045);
}

.main-header .container {
	position: relative;
	z-index: 2;
}

.header-content {
	min-height: 125px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-logo {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 150px;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	z-index: 2;
}

.header-logo img {
    width: 330px;
    height: 225px;
    display: block;
    filter: drop-shadow(0 5px 10px rgba(23, 50, 77, 0.14));
}


.header-title {
	width: 100%;
	text-align: center;
	padding: 0 40px;
}

.header-title h1 {
	margin: 0;
	font-family: "Merriweather", serif;
	font-size: 3rem;
	font-weight: 900;
	line-height: 1.15;
	color: #1769aa;
	white-space: nowrap;
}

.header-title p {
	margin: 10px 0 0;
	font-family: "Inter", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: #2196e0;
	line-height: 1.2;
}

.header-spacer {
	display: none;
}

.header-title {
	position: relative;
	text-align: center;
	padding: 0 20px;
}

.header-title::before,
.header-title::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.header-title::before {
	width: 110px;
	height: 110px;
	left: 3%;
	top: -35px;
	background: radial-gradient(
		circle,
		rgba(58, 134, 255, 0.14) 0%,
		rgba(58, 134, 255, 0.07) 45%,
		transparent 72%
	);
	box-shadow:
		120px 35px 0 -25px rgba(112, 190, 255, 0.1),
		290px -15px 0 -15px rgba(229, 185, 75, 0.1);
}

.header-title::after {
	width: 90px;
	height: 90px;
	right: 4%;
	bottom: -30px;
	background: radial-gradient(
		circle,
		rgba(229, 185, 75, 0.14) 0%,
		rgba(229, 185, 75, 0.06) 45%,
		transparent 72%
	);
	box-shadow:
		-130px 10px 0 -25px rgba(58, 134, 255, 0.08),
		-280px -20px 0 -18px rgba(112, 190, 255, 0.08);
}

.header-title h1 {
	position: relative;
	z-index: 2;
	margin: 0;
	color: #1167a8;
	font-family: "Merriweather", Georgia, serif;
	font-size: clamp(34px, 4vw, 50px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 0.2px;
	white-space: nowrap;
	text-shadow: 0 2px 12px rgba(17, 103, 168, 0.08);
}

.header-title p {
	position: relative;
	z-index: 2;
	margin: 9px 0 0;
	color: #1aa1f0;
	font-family: "Inter", "Segoe UI", Arial, sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1.4px;
}

.header-spacer {
	width: 100%;
}

.main-nav {
	position: relative;
	z-index: 1000;
	background: linear-gradient(135deg, #123b5d, #164d73);
	border-bottom: 3px solid #438eeb;
	box-shadow: 0 5px 18px rgba(23, 50, 77, 0.16);
	overflow: visible;
}

.main-nav::before,
.main-nav::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.main-nav::before {
	width: 180px;
	height: 180px;
	left: -70px;
	top: -135px;
	background: rgba(255, 255, 255, 0.06);
	box-shadow:
		270px 70px 0 -25px rgba(255, 255, 255, 0.035),
		580px -30px 0 -15px rgba(255, 255, 255, 0.04),
		850px 80px 0 -35px rgba(255, 255, 255, 0.035);
}

.main-nav::after {
	width: 150px;
	height: 150px;
	right: -55px;
	bottom: -115px;
	background: rgba(255, 255, 255, 0.055);
}

.main-nav .container {
	position: relative;
	z-index: 5;
	width: 100%;
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

.main-nav .navbar-collapse {
	width: 100%;
	position: relative;
	z-index: 20;
}

.main-nav .navbar-nav {
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	margin: 0 !important;
	padding: 0;
}

.main-nav .nav-item {
	flex: 1 1 0;
	display: flex;
	position: relative;
}

.main-nav .nav-link {
	position: relative;
	width: 100%;
	min-height: 58px;
	padding: 0 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	color: #fff !important;
	font-family: "Inter", "Segoe UI", Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.45px;
	text-transform: uppercase;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	transition:
		background 0.25s ease,
		color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.main-nav .nav-item:last-child .nav-link {
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.main-nav .nav-link:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff !important;
}

.main-nav .nav-link.active {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.22),
		rgba(255, 255, 255, 0.1)
	) !important;
	color: #fff !important;
	font-weight: 700;
	box-shadow:
		inset 0 -4px 0 #43b7e9,
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.main-nav .nav-link.active::before {
	content: "";
	position: absolute;
	left: 20%;
	right: 20%;
	bottom: 0;
	height: 4px;
	background: #4de8fc;
	border-radius: 8px 8px 0 0;
	box-shadow: 0 0 10px rgba(242, 201, 76, 0.5);
}

.main-nav .nav-link.active::after {
	content: "";
	position: absolute;
	width: 7px;
	height: 7px;
	top: 9px;
	right: 12px;
	border-radius: 50%;
	background: #f2c94c;
	box-shadow: 0 0 9px rgba(242, 201, 76, 0.6);
}

.main-nav .nav-link i {
	font-size: 19px;
}

.main-nav .dropdown {
	position: relative;
}

.main-nav .dropdown-menu {
	position: absolute;
	z-index: 99999;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 250px;
	margin: 0;
	padding: 8px;
	border: 0;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(16, 42, 67, 0.22);
}

.main-nav .dropdown-menu.show {
	display: block;
}

.main-nav .dropdown-item {
	padding: 11px 13px;
	border-radius: 8px;
	color: #183b56 !important;
	font-family: "Inter", "Segoe UI", Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
	transition: 0.2s ease;
}

.main-nav .dropdown-item i {
	width: 21px;
	margin-right: 5px;
}

.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus,
.main-nav .dropdown-item.active {
	background: #edf7ff !important;
	color: #1167a8 !important;
	transform: translateX(3px);
}

.main-nav .dropdown-toggle::after {
	margin-left: 4px;
}

.main-nav .dropdown .nav-link.active {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.22),
		rgba(255, 255, 255, 0.1)
	) !important;
}

.main-nav .navbar-toggler {
	margin: 8px auto;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	padding: 7px 11px;
}

.main-nav .navbar-toggler:focus {
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}
.main-nav .nav-link {
	width: 100%;
	min-height: 56px;
	padding: 0 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	color: #fff !important;
	font-family: "Inter", "Segoe UI", Arial, sans-serif;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
#google_translate_element {
	display: none !important;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
	display: none !important;
}

.goog-tooltip,
.goog-te-balloon-frame {
	display: none !important;
}

body {
	top: 0 !important;
}

body.dark-mode {
	background: #111 !important;
	color: #eee !important;
}

body.dark-mode .main-header {
	background: #111 !important;
	border-color: #333 !important;
}

body.dark-mode .header-title h1 {
	color: #fff !important;
}

body.dark-mode .header-title p {
	color: #ccc !important;
}

body.dark-mode .main-nav {
	background: #0b1d2b !important;
}

body.dark-mode .main-nav::before,
body.dark-mode .main-nav::after {
	background: rgba(255, 255, 255, 0.04);
}

body.dark-mode a {
	color: #8ecfff;
}

body.high-contrast {
	background: #000 !important;
	color: #fff !important;
}

body.high-contrast .main-header,
body.high-contrast .main-nav {
	background: #000 !important;
	color: #fff !important;
}

body.high-contrast * {
	border-color: #fff !important;
}

body.high-contrast a {
	color: #ffff00 !important;
	text-decoration: underline !important;
}

html.grayscale {
	filter: grayscale(100%);
}

body.underline-links a {
	text-decoration: underline !important;
}

@media (max-width: 1100px) {
	.header-content {
		grid-template-columns: 160px 1fr 160px;
	}

	.header-logo img {
		width: 125px;
		height: 125px;
	}

	.header-title h1 {
		font-size: 42px;
	}
}

@media (max-width: 991px) {
	.accessibility-inner {
		padding: 7px 0;
		flex-direction: column;
		align-items: stretch;
	}

	.accessibility-left,
	.accessibility-right {
		justify-content: center;
	}

	.header-content {
		grid-template-columns: 120px 1fr 120px;
		min-height: 120px;
	}

	.header-logo img {
		width: 105px;
		height: 105px;
	}

	.header-title h1 {
		font-size: 36px;
	}

	.header-title p {
		font-size: 15px;
	}

	.main-nav .container {
		padding-left: 10px;
		padding-right: 10px;
	}

	.main-nav .navbar-collapse {
		padding-bottom: 8px;
	}

	.main-nav .navbar-nav {
		flex-direction: column;
	}

	.main-nav .nav-item {
		width: 100%;
	}

	.main-nav .nav-link {
		min-height: 46px;
		justify-content: flex-start;
		padding: 0 15px;
		border-left: 0;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.main-nav .nav-link.active {
		background: rgba(255, 255, 255, 0.17) !important;
		box-shadow: inset 5px 0 0 #f2c94c;
	}

	.main-nav .nav-link.active::before,
	.main-nav .nav-link.active::after {
		display: none;
	}

	.main-nav .dropdown-menu {
		position: static !important;
		transform: none !important;
		width: 100%;
		margin: 0;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: none;
		border-radius: 0;
	}

	.main-nav .dropdown-item {
		white-space: normal;
	}
}

@media (max-width: 768px) {
	.accessibility-inner {
		gap: 7px;
	}

	.accessibility-title,
	.language-label {
		font-size: 11px;
	}

	.accessibility-btn,
	.language-btn {
		min-height: 27px;
		padding: 4px 7px;
		font-size: 11px;
	}

	.main-header {
		padding: 10px 0;
	}

	.header-content {
		min-height: 95px;
		grid-template-columns: 85px 1fr;
	}

	.header-logo img {
		width: 78px;
		height: 78px;
	}

	.header-title {
		padding: 0 5px;
	}

	.header-title h1 {
		font-size: 26px;
	}

	.header-title p {
		margin-top: 5px;
		font-size: 12px;
		letter-spacing: 0.6px;
	}

	.header-spacer {
		display: none;
	}
}

@media (max-width: 480px) {
	.accessibility-left,
	.accessibility-right {
		gap: 3px;
	}

	.accessibility-title {
		width: 100%;
		text-align: center;
		margin-right: 0;
	}

	.accessibility-btn,
	.language-btn {
		padding: 4px 6px;
		font-size: 10px;
	}

	.header-content {
		grid-template-columns: 62px 1fr;
	}

	.header-logo img {
		width: 58px;
		height: 58px;
	}

	.header-title h1 {
		font-size: 20px;
	}

	.header-title p {
		font-size: 10px;
		letter-spacing: 0.3px;
	}

	.header-title::before,
	.header-title::after {
		opacity: 0.65;
	}
}
.hero-section {
	position: relative;
	background: var(--dark);
}

.hero-section .carousel-item {
	height: 570px;
	position: relative;
}

.hero-section .carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(16, 42, 67, 0.9) 0%,
		rgba(23, 50, 77, 0.62) 45%,
		rgba(23, 50, 77, 0.1) 100%
	);
}

.hero-caption {
	position: absolute;
	left: 8%;
	right: auto;
	bottom: 21%;
	max-width: 680px;
	text-align: left;
}

.hero-caption span {
	display: inline-block;
	padding: 8px 16px;
	margin-bottom: 15px;
	border-radius: 30px;
	background: rgba(58, 134, 255, 0.22);
	border: 1px solid rgba(155, 209, 255, 0.5);
	color: #dceeff;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 1.8px;
}

.hero-caption h2 {
	margin: 0 0 15px;
	color: #ffffff;
	font-size: 50px;
	line-height: 1.1;
	font-weight: 800;
}

.hero-caption p {
	max-width: 600px;
	margin-bottom: 26px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	line-height: 1.7;
}

.primary-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 23px;
	border-radius: 7px;
	background: var(--primary);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(58, 134, 255, 0.28);
	transition: all 0.3s ease;
}

.primary-btn:hover {
	color: #ffffff;
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 25px rgba(58, 134, 255, 0.32);
}

.primary-btn i {
	transition: 0.3s ease;
}

.primary-btn:hover i {
	transform: translateX(4px);
}

.carousel-control-prev,
.carousel-control-next {
	width: 6%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 40px;
	height: 40px;
	padding: 9px;
	border-radius: 50%;
	background-color: rgba(23, 50, 77, 0.72);
	background-size: 45%;
}

.carousel-indicators button {
	width: 27px;
	height: 4px;
	border: 0;
	border-radius: 5px;
}

.quick-links {
	position: relative;
	z-index: 5;
	margin-top: -1px;
	background: var(--navy);
}

.quick-links-inner {
	display: flex;
	align-items: center;
	min-height: 70px;
}

.quick-title {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-right: 25px;
	margin-right: 5px;
	color: #ffffff;
	font-size: 20px;
	font-weight: 800;
}

.quick-title i {
	color: #9bd1ff;
}

.quick-links-inner > a {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 0 25px;
	min-height: 32px;
	border-left: 1px solid rgba(255, 255, 255, 0.13);
	color: rgba(255, 255, 255, 0.82);
	font-size: 20px;
	text-decoration: none;
	transition: 0.25s ease;
}

.quick-links-inner > a:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.06);
}

.quick-links-inner > a i {
	color: #9bd1ff;
}

.section {
	padding: 85px 0;
	position: relative;
}

.section::before {
	content: "";
	position: absolute;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	right: 3%;
	top: 30px;
	background: radial-gradient(
		circle,
		rgba(137, 205, 255, 0.13),
		transparent 70%
	);
	pointer-events: none;
}

.section-heading {
	max-width: 850px;
	margin: 0 auto 45px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.section-heading h2 {
	margin: 0 0 12px;
	color: var(--navy);
	font-size: 39px;
	font-weight: 800;
}

.section-heading p {
	margin: 0;
	color: var(--muted);
	font-size: 20px;
	line-height: 1.7;
}

.leaders-section {
	background: #eaf6ff;
}

.leaders-section .container-fluid {
	max-width: 1500px;
}

.leader-card {
	height: 100%;
	overflow: hidden;
	background: #fafdff;
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: var(--shadow);
	transition: 0.3s ease;
}

.leader-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 18px 38px rgba(23, 50, 77, 0.13);
}

.leader-image {
	height: 290px;
	overflow: hidden;
	background: var(--soft);
}

.leader-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease;
}

.leader-card:hover .leader-image img {
	transform: scale(1.04);
}

.leader-info {
	padding: 20px;
	text-align: center;
	border-top: 3px solid var(--primary);
	background: #fafdff;
}

.leader-info h3 {
	margin: 0 0 7px;
	color: var(--navy);
	font-size: 25px;
	font-weight: 750;
}

.leader-info p {
	margin: 0;
	color: rgb(82, 82, 239);
	font-weight: 700;
	font-size: 20px;
	line-height: 1.6;
	text-align: center;
}

.official-section {
	background: #f6fbff;
}

.official-wrapper {
	display: grid;
	grid-template-columns: 0.85fr 1.5fr;
	gap: 28px;
	width: 100%;
}

.official-highlight {
	position: relative;
	padding: 38px;
	overflow: hidden;
	border-radius: 16px;
	background: linear-gradient(145deg, var(--navy), var(--primary));
	color: #ffffff;
	box-shadow: 0 15px 35px rgba(23, 50, 77, 0.15);
}

.official-highlight::before,
.official-highlight::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	border: 30px solid rgba(255, 255, 255, 0.06);
}

.official-highlight::before {
	width: 230px;
	height: 230px;
	right: -100px;
	top: -100px;
}

.official-highlight::after {
	width: 240px;
	height: 240px;
	right: -100px;
	bottom: -110px;
	border-width: 45px;
}

.official-icon {
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.13);
	color: #ffffff;
	font-size: 23px;
}

.official-label {
	color: #d9e8ff;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 1.5px;
}

.official-highlight h3 {
	margin: 12px 0 17px;
	font-size: 29px;
	line-height: 1.25;
	font-weight: 800;
}

.official-highlight > p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	line-height: 1.7;
}

.official-stats {
	display: grid;
	gap: 13px;
	margin-top: 28px;
}

.official-stats > div {
	display: grid;
	grid-template-columns: 32px 1fr;
	align-items: center;
	column-gap: 10px;
	padding: 12px;
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.08);
}

.official-stats i {
	grid-row: span 2;
	color: #b9ddff;
}

.official-stats strong {
	font-size: 18px;
}

.official-stats span {
	color: rgba(255, 255, 255, 0.65);
	font-size: 16px;
}

.official-card {
	padding: 35px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fafdff;
	box-shadow: var(--shadow);
}

.message-header {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-bottom: 22px;
	margin-bottom: 22px;
	border-bottom: 1px solid var(--border);
}

.message-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 11px;
	background: var(--soft);
	color: var(--primary);
}

.message-header span {
	color: var(--primary);
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 1.4px;
}

.message-header h3 {
	margin: 4px 0 0;
	color: white;
	font-size: 30px;
	font-weight: 750;
}

.message-content p {
	margin-bottom: 13px;
	color: black;
	font-size: 19px;
	line-height: 1.75;
	text-align: justify;
}

.official-info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 25px;
	padding-top: 22px;
	border-top: 1px solid var(--border);
}

.official-info > div {
	display: flex;
	gap: 9px;
}

.official-info i {
	color: var(--primary);
	margin-top: 3px;
}

.official-info strong,
.official-info span {
	display: block;
}

.official-info strong {
	color: var(--navy);
	font-size: 19px;
}

.official-info span {
	margin-top: 3px;
	color: var(--muted);
	font-size: 12px;
}

.text-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 22px;
	color: var(--primary);
	font-size: 16px;
	font-weight: 750;
	text-decoration: none;
}

.text-btn:hover {
	color: var(--primary-dark);
}

.text-btn i {
	transition: 0.25s ease;
}

.text-btn:hover i {
	transform: translateX(4px);
}

.about-section {
	background: #eaf6ff;
}

.about-wrapper {
	display: grid;
	grid-template-columns: 1.25fr 0.8fr;
	gap: 55px;
	align-items: center;
	justify-content: center;
}

.about-label {
	color: var(--primary);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: 1.5px;
}

.about-heading h2 {
	max-width: 650px;
	margin: 10px 0 15px;
	color: var(--navy);
	font-size: 34px;
	line-height: 1.25;
	font-weight: 800;
}

.about-line {
	width: 55px;
	height: 4px;
	margin-bottom: 22px;
	border-radius: 5px;
	background: var(--primary);
}

.about-content > p {
	color: var(--muted);
	font-size: 18px;
	line-height: 1.8;
	text-align: justify;
}

.about-bottom {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-top: 25px;
}

.about-badge {
	display: flex;
	align-items: center;
	gap: 10px;
}

.about-badge > i {
	color: var(--primary);
	font-size: 25px;
}

.about-badge strong,
.about-badge span {
	display: block;
}

.about-badge strong {
	color: var(--navy);
	font-size: 12px;
}

.about-badge span {
	color: var(--muted);
	font-size: 13px;
	margin-top: 2px;
}

.about-info-card {
	padding: 28px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fafdff;
	box-shadow: var(--shadow);
}

.about-card-top {
	display: flex;
	align-items: center;
	gap: 13px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.about-info-icon {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--soft);
	color: var(--primary);
}

.about-card-top span {
	color: var(--primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.3px;
}

.about-card-top h3 {
	margin: 3px 0 0;
	color: var(--navy);
	font-size: 19px;
	font-weight: 750;
}

.info-list {
	padding: 5px 0;
}

.info-row {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 15px 0;
	border-bottom: 1px solid #e6f0f7;
}

.info-icon {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 9px;
	background: var(--soft);
	color: var(--primary);
	font-size: 19px;
}

.info-row strong,
.info-row span {
	display: block;
}

.info-row strong {
	color: var(--navy);
	font-size: 18px;
}

.info-row span {
	margin-top: 3px;
	color: var(--muted);
	font-size: 15px;
}

.about-card-footer {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 17px;
	color: var(--muted);
	font-size: 12px;
}

.about-card-footer i {
	color: var(--primary);
}

.places-section {
	background: #f8fbff;
}

.places-section .row {
	margin-left: -10px;
	margin-right: -10px;
}

.places-section .col-lg-4 {
	padding-left: 10px;
	padding-right: 10px;
}

.place-card {
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 15px;
	background: #fafdff;
	box-shadow: var(--shadow);
	transition: 0.3s ease;
}

.place-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 18px 38px rgba(23, 50, 77, 0.13);
}

.place-image {
	height: 235px;
	overflow: hidden;
}

.place-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease;
}

.place-card:hover .place-image img {
	transform: scale(1.06);
}

.place-content {
	padding: 24px;
}

.place-content > span {
	color: var(--primary);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.3px;
}

.place-content h3 {
	margin: 8px 0 10px;
	color: var(--navy);
	font-size: 21px;
	font-weight: 750;
}

.place-content p {
	margin: 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.7;
	text-align: justify;
}

.services-section {
	background: #edf7ff;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	width: 100%;
}

.service-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 17px;
	padding: 21px;
	min-height: 115px;
	border: 1px solid var(--border);
	border-radius: 13px;
	background: #fafdff;
	text-decoration: none;
	box-shadow: 0 5px 18px rgba(23, 50, 77, 0.05);
	transition: 0.3s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: #afcbff;
	box-shadow: 0 13px 28px rgba(23, 50, 77, 0.1);
}

.service-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 12px;
	background: var(--soft);
	color: var(--primary);
	font-size: 26px;
	transition: 0.3s ease;
}

.service-card:hover .service-icon {
	background: var(--primary);
	color: #ffffff;
}

.service-card h4 {
	margin: 0 0 5px;
	color: var(--navy);
	font-size: 19px;
	font-weight: 750;
}

.service-card p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
}

.service-arrow {
	margin-left: auto;
	color: #9aaab8;
	transition: 0.3s ease;
}

.service-card:hover .service-arrow {
	color: var(--primary);
	transform: translateX(4px);
}

.center-btn {
	margin-top: 35px;
	text-align: center;
}

.notices-section {
	background: #fff3f7;
}

.notice-panel {
	height: 100%;
	padding: 30px;
	border: 1px solid #eadde5;
	border-radius: 15px;
	background: #fffafd;
	box-shadow: var(--shadow);
}

.notice-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--border);
}

.notice-header span,
.important-links > span {
	color: var(--primary);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: 1.4px;
}

.notice-header h2 {
	margin: 5px 0 0;
	color: var(--navy);
	font-size: 29px;
	font-weight: 800;
}

.notice-header > i {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 11px;
	background: var(--soft);
	color: var(--primary);
	font-size: 22px;
}

.notice-item {
	display: grid;
	grid-template-columns: 58px 1fr 30px;
	gap: 16px;
	align-items: center;
	padding: 19px 0;
	border-bottom: 1px solid #edf2f4;
}

.notice-date {
	width: 52px;
	padding: 7px 4px;
	border-radius: 8px;
	text-align: center;
	background: var(--soft);
}

.notice-date strong,
.notice-date span {
	display: block;
}

.notice-date strong {
	color: var(--primary);
	font-size: 20px;
}

.notice-date span {
	color: var(--muted);
	font-size: 9px;
	font-weight: 800;
}

.notice-text h4 {
	margin: 0 0 5px;
	color: var(--navy);
	font-size: 20px;
	font-weight: 750;
}

.notice-text p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
	text-align: justify;
}

.notice-item > a {
	color: #9aaab8;
	transition: 0.25s ease;
}

.notice-item:hover > a {
	color: var(--primary);
	transform: translateX(3px);
}

.notice-footer {
	padding-top: 18px;
	text-align: right;
}

.notice-footer a {
	color: var(--primary);
	font-size: 12px;
	font-weight: 750;
	text-decoration: none;
}

.notice-footer a:hover {
	color: var(--primary-dark);
}

.important-links {
	height: 100%;
	padding: 30px;
	border-radius: 15px;
	background: linear-gradient(145deg, #17324d, #245a86);
	box-shadow: 0 14px 30px rgba(26, 85, 144, 0.14);
	position: relative;
	overflow: hidden;
}

.important-links::after {
	content: "";
	position: absolute;
	width: 190px;
	height: 190px;
	right: -90px;
	bottom: -90px;
	border: 35px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
}

.important-links h3 {
	margin: 6px 0 22px;
	color: #ffffff;
	font-size: 29px;
	font-weight: 800;
}

.important-links > a {
	display: grid;
	grid-template-columns: 25px 1fr 15px;
	gap: 10px;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.78);
	font-size: 19px;
	text-decoration: none;
	transition: 0.25s ease;
	position: relative;
	z-index: 2;
}

.important-links > a:hover {
	color: #ffffff;
	padding-left: 5px;
}

.important-links > a > i:first-child {
	color: #9bd1ff;
}

.important-links > a > i:last-child {
	color: rgba(255, 255, 255, 0.4);
}

.admin-login-wrap {
	display: flex;
	align-items: center;
	margin-left: 20px;
}

.admin-login-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: #365cff;
	color: #fff !important;
	border: 1px solid #8fc9ff;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.admin-login-btn i {
	font-size: 14px;
}

.admin-login-btn:hover {
	background: #eaf6ff;
	color: #154c79 !important;
	border-color: #eaf6ff;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1200px) {
	.leaders-section .container-fluid {
		padding-left: 30px !important;
		padding-right: 30px !important;
	}

	.official-section .container,
	.about-section .container,
	.places-section .container,
	.services-section .container,
	.notices-section .container {
		max-width: 1420px;
	}
}

@media (max-width: 991px) {
	.admin-login-wrap {
		margin: 15px 0 5px;
		padding-left: 12px;
	}

	.admin-login-btn {
		width: 100%;
		justify-content: center;
	}

	.main-nav .navbar-toggler {
		margin: 8px 15px;
		border: 1px solid rgba(255, 255, 255, 0.5);
		color: #ffffff;
	}

	.main-nav .navbar-toggler:focus {
		box-shadow: none;
	}

	.main-nav .navbar-nav {
		width: 100%;
		margin-top: 0 !important;
	}

	.main-nav .nav-item {
		flex: none;
		width: 100%;
	}

	.main-nav .nav-link {
		justify-content: flex-start;
		padding: 14px 20px !important;
		min-height: 50px;
	}

	.main-nav .nav-link.active::after {
		left: 0;
		right: auto;
		width: 4px;
		height: 70%;
		top: 15%;
		bottom: auto;
		border-radius: 0 5px 5px 0;
	}

	.main-nav .dropdown-menu {
		position: static;
		transform: none;
		width: 100%;
		box-shadow: none;
		border-radius: 8px;
	}

	.hero-section .carousel-item {
		height: 500px;
	}

	.hero-caption h2 {
		font-size: 40px;
	}

	.official-wrapper,
	.about-wrapper {
		grid-template-columns: 1fr;
	}

	.quick-links-inner {
		flex-wrap: wrap;
		padding: 10px 0;
	}

	.quick-title {
		width: 100%;
		padding: 7px 0;
	}
}

@media (max-width: 767px) {
	.top-bar-inner {
		flex-direction: column;
		gap: 5px;
		align-items: flex-start;
	}

	.main-header {
		padding: 15px 20px;
		min-height: 100px;
	}

	.header-logo img {
		width: 58px;
		height: 58px;
	}

	.header-title h1 {
		font-size: 22px;
	}

	.header-title p {
		font-size: 13px;
	}

	.hero-section .carousel-item {
		height: 470px;
	}

	.hero-caption {
		left: 7%;
		right: 7%;
		bottom: 17%;
	}

	.hero-caption h2 {
		font-size: 31px;
	}

	.hero-caption p {
		font-size: 13px;
	}

	.section {
		padding: 60px 0;
	}

	.section-heading h2,
	.about-heading h2 {
		font-size: 28px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.official-info {
		grid-template-columns: 1fr;
	}

	.about-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.quick-links-inner > a {
		padding: 8px 12px;
		border-left: 0;
	}

	.official-card,
	.official-highlight,
	.about-info-card,
	.notice-panel,
	.important-links {
		padding: 22px;
	}
}

@media (max-width: 480px) {
	.main-header {
		gap: 12px;
	}

	.header-logo img {
		width: 52px;
		height: 52px;
	}

	.header-title h1 {
		font-size: 19px;
	}

	.header-title p {
		font-size: 12px;
	}

	.hero-section .carousel-item {
		height: 430px;
	}

	.hero-caption h2 {
		font-size: 27px;
	}

	.hero-caption span {
		font-size: 9px;
	}

	.service-card {
		padding: 17px;
	}

	.service-icon {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}

	.notice-item {
		grid-template-columns: 52px 1fr 20px;
		gap: 10px;
	}
}

/* Footer css */

.admin-login-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 190px;
	height: 50px;
	padding: 0 20px;
	border-radius: 8px;
	background: #3d5ff5;
	border: 1px solid rgba(255, 255, 255, 0.55);
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
}

.admin-login-btn:hover {
	background: #3151e8;
	color: #ffffff;
	transform: translateY(-1px);
}

.developer-logo {
	width: 300px;
	max-width: 100%;
	height: auto;
	display: inline-block;
}

.back-to-top {
	position: fixed;
	right: 28px;
	bottom: 28px;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 50%;
	background: #3d8cff;
	color: #ffffff;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.25s ease;
	z-index: 999;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media (max-width: 991px) {
	.footer-section {
		padding-top: 28px;
	}

	.footer-section > .container-fluid {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.footer-map-section {
		padding-left: 0;
		margin-top: 10px;
	}

	.footer-map-wrapper {
		height: 280px;
	}

	.footer-bottom .row {
		grid-template-columns: 1fr;
		gap: 18px;
		text-align: center;
	}

	.footer-bottom .col-lg-4,
	.footer-bottom .col-lg-2,
	.footer-bottom .col-lg-5 {
		grid-column: 1;
		text-align: center !important;
	}

	.footer-bottom .col-lg-4 p:first-child {
		white-space: normal;
	}

	.developer-logo {
		width: 270px;
	}
}

@media (max-width: 575px) {
	.footer-section > .container-fluid {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.footer-map-wrapper {
		height: 240px;
		border-radius: 14px;
	}

	.footer-contact-item {
		gap: 12px;
	}

	.footer-contact-icon {
		width: 46px;
		height: 46px;
		min-width: 46px;
	}

	.footer-bottom {
		padding: 20px 15px;
	}

	.admin-login-btn {
		min-width: 180px;
	}
}

/**HOSTORY PAGE CSS **/
.page-banner {
	position: relative;
	padding: 70px 0;
	background: linear-gradient(135deg, #0b3d6e, #1769aa);
	overflow: hidden;
}

.page-banner::before {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	top: -220px;
	right: -100px;
}

.page-banner::after {
	content: "";
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	bottom: -170px;
	left: -80px;
}

.page-banner-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
}

.page-banner-content span {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 12px;
	color: #dbeeff;
}

.page-banner-content h1 {
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 12px;
	letter-spacing: -0.5px;
}

.page-banner-content p {
	margin: 0;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
}

.history-section {
	padding: 90px 0;
	background: #f5f9fd;
}

.history-image {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(15, 67, 108, 0.16);
	background: #fff;
}

.history-image img {
	width: 100%;
	height: 440px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.history-image:hover img {
	transform: scale(1.04);
}

.history-image-label {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	padding: 15px 20px;
	border-radius: 12px;
	background: rgba(7, 49, 87, 0.92);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	backdrop-filter: blur(6px);
}

.history-image-label i {
	margin-right: 8px;
	color: #cfe8ff;
}

.history-content {
	padding-left: 25px;
}

.history-content > span,
.section-heading > span,
.cta-content > span {
	display: inline-block;
	color: #1769aa;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.history-content h2 {
	color: #123d60;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 22px;
	text-align: center;
}

.history-content p {
	color: #03090f;
	font-size: 18px;
	line-height: 1.85;
	margin-bottom: 15px;
	text-align: justify;
	text-justify: inter-word;
	line-height: 1.8;
}

.history-details {
	padding: 90px 0;
	background: #ffffff;
}

.section-heading {
	max-width: 720px;
	margin: 0 auto 50px;
	text-align: center;
}

.section-heading h2 {
	color: #123d60;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 12px;
}

.section-heading p {
	color: #667887;
	font-size: 20px;
	line-height: 1.7;
	margin: 0;
}

.history-info-card {
	height: 100%;
	padding: 35px 30px;
	background: #fff;
	border: 1px solid #e0ebf4;
	border-radius: 18px;
	text-align: justify;
	text-justify: inter-word;
	box-shadow: 0 8px 30px rgba(17, 73, 112, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.history-info-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #0b3d6e, #2b82c9);
}

.history-info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(17, 73, 112, 0.14);
	border-color: #c8deef;
}

.history-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 22px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eaf4fc;
	color: #1769aa;
	font-size: 28px;
	transition: all 0.3s ease;
}

.history-info-card:hover .history-icon {
	background: #1769aa;
	color: #fff;
	transform: rotate(-4deg);
}

.history-info-card h3 {
	color: #153f60;
	font-size: 27px;
	font-weight: 700;
	margin-bottom: 14px;
}

.history-info-card p {
	color: #697b89;
	font-size: 19px;
	line-height: 1.75;
	margin: 0;
	text-align: justify;
	text-justify: inter-word;
	line-height: 1.7;
}
.history-details .section-heading p,
.history-details .history-info-card p {
	text-align: justify;
	text-justify: inter-word;
	line-height: 1.8;
}
.cta-section {
	padding: 70px 0;
	background: #f5f9fd;
}

.cta-box {
	position: relative;
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 38px 42px;
	border-radius: 20px;
	background: linear-gradient(135deg, #0b3d6e, #1769aa);
	box-shadow: 0 18px 45px rgba(11, 61, 110, 0.2);
	overflow: hidden;
}

.cta-box::after {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	right: -100px;
	top: -130px;
}

.cta-icon {
	position: relative;
	z-index: 2;
	width: 70px;
	height: 70px;
	min-width: 70px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 28px;
}

.cta-content {
	position: relative;
	z-index: 2;
	flex: 1;
}

.cta-content > span {
	color: #d8ecff;
}

.cta-content h2 {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
}

.cta-content p {
	color: rgba(255, 255, 255, 0.82);
	margin: 0;
	line-height: 1.6;
}

.primary-btn {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border-radius: 10px;
	background: #0b5ed7 !important;
	color: #fff !important;
	border: 1px solid #0b5ed7;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.primary-btn:hover {
	background: #084298 !important;
	color: #fff !important;
	border-color: #084298;
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.page-banner {
		padding: 70px 0;
	}

	.page-banner-content h1 {
		font-size: 40px;
	}

	.history-content {
		padding-left: 0;
		margin-top: 35px;
	}

	.cta-box {
		flex-wrap: wrap;
		padding: 32px;
	}
}

@media (max-width: 767px) {
	.page-banner {
		padding: 60px 0;
	}

	.page-banner-content h1 {
		font-size: 32px;
	}

	.history-section,
	.history-details {
		padding: 65px 0;
	}

	.history-image img {
		height: 320px;
	}

	.history-content h2,
	.section-heading h2 {
		font-size: 29px;
	}

	.cta-box {
		text-align: center;
		justify-content: center;
	}

	.cta-icon {
		margin: 0 auto;
	}

	.cta-content {
		flex-basis: 100%;
	}

	.primary-btn {
		margin-top: 5px;
	}
}
/** GEOGRAPHY CSS**/
.geography-banner {
	background: linear-gradient(135deg, #0b3d6e, #1769aa);
}

.geography-section {
	padding: 90px 0;
	background: #f5f9fd;
}

.geography-image {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 45px rgba(15, 67, 108, 0.16);
}

.geography-image img {
	width: 100%;
	height: 440px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.geography-image:hover img {
	transform: scale(1.04);
}

.geography-location {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	padding: 15px 20px;
	border-radius: 12px;
	background: rgba(7, 49, 87, 0.92);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	backdrop-filter: blur(6px);
}

.geography-location i {
	margin-right: 8px;
	color: #d8ecff;
}

.geography-content {
	padding-left: 15px;
}

.geography-content > span,
.administrative-content > span,
.geo-card > span {
	display: inline-block;
	color: #1769aa;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.geography-content h2,
.administrative-content h2 {
	color: #123d60;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 22px;
}

.geography-content p,
.administrative-content p {
	color: #5f7180;
	font-size: 20px;
	line-height: 1.85;
	margin-bottom: 16px;
}

.geography-facts {
	padding: 90px 0;
	background: #fff;
}

.geo-card {
	height: 100%;
	padding: 32px 24px;
	text-align: center;
	background: #fff;
	border: 1px solid #e0ebf4;
	border-radius: 18px;
	box-shadow: 0 8px 30px rgba(17, 73, 112, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.geo-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #0b3d6e, #2b82c9);
}

.geo-card:hover {
	transform: translateY(-8px);
	border-color: #c7ddec;
	box-shadow: 0 18px 40px rgba(17, 73, 112, 0.14);
}

.geo-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eaf4fc;
	color: #1769aa;
	font-size: 27px;
	transition: all 0.3s ease;
}

.geo-card:hover .geo-icon {
	background: #1769aa;
	color: #fff;
	transform: translateY(-3px);
}

.geo-card h3 {
	color: #153f60;
	font-size: 21px;
	font-weight: 700;
	margin: 8px 0 10px;
}

.geo-card p {
	color: #6b7c89;
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
}

.administrative-section {
	padding: 90px 0;
	background: #f5f9fd;
}

.administrative-content {
	padding-right: 25px;
}

.geo-points {
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.geo-points div {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #536b7c;
	font-size: 15px;
}

.geo-points i {
	width: 25px;
	height: 25px;
	min-width: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #e2f0fb;
	color: #1769aa;
	font-size: 11px;
}

.geo-info-box {
	padding: 30px;
	background: #fff;
	border: 1px solid #deebf5;
	border-radius: 18px;
	box-shadow: 0 12px 35px rgba(17, 73, 112, 0.09);
}

.geo-info-header {
	display: flex;
	align-items: center;
	gap: 13px;
	padding-bottom: 20px;
	margin-bottom: 5px;
	border-bottom: 1px solid #e5edf4;
}

.geo-info-header i {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #eaf4fc;
	color: #1769aa;
	font-size: 20px;
}

.geo-info-header h3 {
	color: #153f60;
	font-size: 21px;
	font-weight: 700;
	margin: 0;
}

.geo-info-row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 0;
	border-bottom: 1px solid #edf2f6;
}

.geo-info-row:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.geo-info-row strong {
	color: #34556d;
	font-size: 14px;
}

.geo-info-row span {
	color: #1769aa;
	font-size: 14px;
	font-weight: 600;
	text-align: right;
}

.cta-section {
	padding: 70px 0;
	background: #fff;
}

.cta-box {
	position: relative;
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 38px 42px;
	border-radius: 20px;
	background: linear-gradient(135deg, #0b3d6e, #1769aa);
	box-shadow: 0 18px 45px rgba(11, 61, 110, 0.2);
	overflow: hidden;
}

.cta-box::after {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	right: -100px;
	top: -130px;
}

.cta-icon {
	position: relative;
	z-index: 2;
	width: 70px;
	height: 70px;
	min-width: 70px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 28px;
}

.cta-content {
	position: relative;
	z-index: 2;
	flex: 1;
}

.cta-content > span {
	display: inline-block;
	color: #d8ecff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 8px;
}

.cta-content h2 {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
}

.cta-content p {
	color: rgba(255, 255, 255, 0.82);
	margin: 0;
	line-height: 1.6;
}

.primary-btn {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border-radius: 10px;
	background: #fff;
	color: #0b4b7a;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.primary-btn:hover {
	background: #e9f4fc;
	color: #08375d;
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.geography-content {
		padding-left: 0;
		margin-top: 30px;
	}

	.administrative-content {
		padding-right: 0;
	}

	.cta-box {
		flex-wrap: wrap;
		padding: 32px;
	}
}

@media (max-width: 767px) {
	.geography-section,
	.geography-facts,
	.administrative-section {
		padding: 65px 0;
	}

	.geography-image img {
		height: 320px;
	}

	.geography-content h2,
	.administrative-content h2 {
		font-size: 29px;
	}

	.geo-info-row {
		flex-direction: column;
		gap: 5px;
	}

	.geo-info-row span {
		text-align: left;
	}

	.cta-box {
		text-align: center;
		justify-content: center;
	}

	.cta-icon {
		margin: 0 auto;
	}

	.cta-content {
		flex-basis: 100%;
	}

	.primary-btn {
		margin-top: 5px;
	}
}

/**byelaws css **/
.byelaws-section {
	padding: 90px 0;
	background: #f5f9fd;
}

.byelaws-main-card {
	background: #fff;
	border: 1px solid #dfebf4;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 35px rgba(17, 73, 112, 0.08);
	margin-bottom: 28px;
}

.byelaws-header {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 28px 30px;
	background: linear-gradient(135deg, #0b3d6e, #1769aa);
	color: #fff;
}

.byelaws-icon {
	width: 62px;
	height: 62px;
	min-width: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 26px;
}

.byelaws-header span,
.byelaws-list-header span,
.byelaws-side-card > span,
.byelaws-note span {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.8px;
	margin-bottom: 6px;
}

.byelaws-header span {
	color: #d8ecff;
}

.byelaws-header h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
}

.byelaws-body {
	padding: 30px;
}

.byelaws-body p {
	color: #5f7180;
	font-size: 15px;
	line-height: 1.85;
	margin-bottom: 16px;
}

.byelaws-body p:last-child {
	margin-bottom: 0;
}

.byelaws-list-card {
	background: #fff;
	border: 1px solid #dfebf4;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 35px rgba(17, 73, 112, 0.07);
}

.byelaws-list-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 30px;
	border-bottom: 1px solid #e5edf4;
}

.byelaws-list-header span {
	color: #1769aa;
}

.byelaws-list-header h3 {
	color: #153f60;
	font-size: 23px;
	font-weight: 700;
	margin: 0;
}

.byelaws-list-header > i {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #eaf4fc;
	color: #1769aa;
	font-size: 20px;
}

.byelaws-list {
	padding: 8px 30px 18px;
}

.byelaw-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 0;
	border-bottom: 1px solid #edf2f6;
	transition: all 0.3s ease;
}

.byelaw-item:last-child {
	border-bottom: 0;
}

.byelaw-item-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #eaf4fc;
	color: #1769aa;
	font-size: 18px;
	transition: all 0.3s ease;
}

.byelaw-item:hover .byelaw-item-icon {
	background: #1769aa;
	color: #fff;
}

.byelaw-item h4 {
	color: #153f60;
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 6px;
}

.byelaw-item p {
	color: #6a7c89;
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
}

.byelaw-item > .fa-angle-right {
	margin-left: auto;
	color: #9bb0c0;
	font-size: 16px;
	transition: all 0.3s ease;
}

.byelaw-item:hover > .fa-angle-right {
	color: #1769aa;
	transform: translateX(4px);
}

.byelaws-side-card {
	height: 100%;
	padding: 34px 30px;
	border-radius: 18px;
	background: linear-gradient(145deg, #0b3d6e, #1769aa);
	color: #fff;
	box-shadow: 0 15px 40px rgba(11, 61, 110, 0.18);
	position: relative;
	overflow: hidden;
}

.byelaws-side-card::after {
	content: "";
	position: absolute;
	width: 230px;
	height: 230px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	right: -100px;
	top: -90px;
}

.byelaws-side-icon {
	position: relative;
	z-index: 2;
	width: 68px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	border-radius: 17px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 28px;
}

.byelaws-side-card > span {
	position: relative;
	z-index: 2;
	color: #d8ecff;
}

.byelaws-side-card h3 {
	position: relative;
	z-index: 2;
	color: #fff;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 16px;
}

.byelaws-side-card > p {
	position: relative;
	z-index: 2;
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
	line-height: 1.75;
	margin-bottom: 24px;
}

.byelaws-line {
	position: relative;
	z-index: 2;
	height: 1px;
	background: rgba(255, 255, 255, 0.18);
	margin-bottom: 8px;
}

.byelaws-detail {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.byelaws-detail:last-child {
	border-bottom: 0;
}

.byelaws-detail i {
	width: 34px;
	height: 34px;
	min-width: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.12);
	font-size: 14px;
}

.byelaws-detail span {
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	line-height: 1.4;
}

.byelaws-note-section {
	padding: 70px 0;
	background: #fff;
}

.byelaws-note {
	display: flex;
	align-items: center;
	gap: 25px;
	padding: 30px 35px;
	border: 1px solid #dce9f3;
	border-radius: 18px;
	background: #f5f9fd;
	box-shadow: 0 8px 30px rgba(17, 73, 112, 0.06);
}

.byelaws-note-icon {
	width: 62px;
	height: 62px;
	min-width: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: #e4f1fb;
	color: #1769aa;
	font-size: 25px;
}

.byelaws-note > div:nth-child(2) {
	flex: 1;
}

.byelaws-note span {
	color: #1769aa;
}

.byelaws-note h2 {
	color: #153f60;
	font-size: 23px;
	font-weight: 700;
	margin: 0 0 7px;
}

.byelaws-note p {
	color: #687b89;
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

.byelaws-note .primary-btn {
	flex-shrink: 0;
}

@media (max-width: 991px) {
	.byelaws-section {
		padding: 70px 0;
	}

	.byelaws-side-card {
		height: auto;
	}

	.byelaws-note {
		flex-wrap: wrap;
	}

	.byelaws-note > div:nth-child(2) {
		flex-basis: calc(100% - 90px);
	}
}

@media (max-width: 767px) {
	.byelaws-section {
		padding: 60px 0;
	}

	.byelaws-header {
		padding: 24px 20px;
	}

	.byelaws-body {
		padding: 25px 20px;
	}

	.byelaws-list-header {
		padding: 22px 20px;
	}

	.byelaws-list {
		padding: 5px 20px 15px;
	}

	.byelaw-item {
		align-items: flex-start;
	}

	.byelaw-item > .fa-angle-right {
		display: none;
	}

	.byelaws-side-card {
		padding: 30px 24px;
	}

	.byelaws-note {
		padding: 25px;
		text-align: left;
	}

	.byelaws-note > div:nth-child(2) {
		flex-basis: calc(100% - 90px);
	}

	.byelaws-note .primary-btn {
		margin-left: 87px;
	}
}
/** contact css **/
.contact-section {
	padding: 90px 0;
	background: #f5f9fd;
}

.section-heading {
	max-width: 750px;
	margin: 0 auto 50px;
	text-align: center;
}

.section-heading > span {
	display: inline-block;
	color: #1769aa;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.section-heading h2 {
	color: #123d60;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 12px;
}

.heading-line {
	width: 55px;
	height: 4px;
	margin: 0 auto 18px;
	border-radius: 10px;
	background: #1769aa;
}

.section-description {
	color: #667887;
	font-size: 16px;
	line-height: 1.75;
	margin: 0;
}

.contact-card {
	height: 100%;
	padding: 35px 25px;
	text-align: center;
	background: #fff;
	border: 1px solid #dfebf4;
	border-radius: 18px;
	box-shadow: 0 8px 30px rgba(17, 73, 112, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #0b3d6e, #2b82c9);
}

.contact-card:hover {
	transform: translateY(-8px);
	border-color: #c9ddeb;
	box-shadow: 0 18px 40px rgba(17, 73, 112, 0.14);
}

.contact-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: #eaf4fc;
	color: #1769aa;
	font-size: 27px;
	transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
	background: #1769aa;
	color: #fff;
	transform: translateY(-3px);
}

.contact-card h3 {
	color: #153f60;
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 13px;
}

.contact-card p {
	color: #5f7180;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 8px;
}

.contact-note {
	color: #8293a0;
	font-size: 13px;
}

.contact-information-box {
	height: 100%;
	padding: 35px;
	background: #fff;
	border: 1px solid #dfebf4;
	border-radius: 18px;
	box-shadow: 0 10px 35px rgba(17, 73, 112, 0.08);
}

.contact-box-header {
	padding-bottom: 22px;
	margin-bottom: 5px;
	border-bottom: 1px solid #e5edf4;
}

.contact-box-header span {
	display: inline-block;
	color: #1769aa;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.8px;
	margin-bottom: 7px;
}

.contact-box-header h3 {
	color: #153f60;
	font-size: 25px;
	font-weight: 700;
	margin: 0;
}

.contact-info-list {
	display: flex;
	flex-direction: column;
}

.contact-info-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 19px 0;
	border-bottom: 1px solid #edf2f6;
}

.contact-info-row:last-child {
	border-bottom: 0;
}

.contact-info-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #eaf4fc;
	color: #1769aa;
	font-size: 18px;
}

.contact-info-row strong {
	display: block;
	color: #34556d;
	font-size: 14px;
	margin-bottom: 4px;
}

.contact-info-row span {
	display: block;
	color: #6a7c89;
	font-size: 14px;
	line-height: 1.5;
}

.contact-help-box {
	height: 100%;
	padding: 38px 32px;
	border-radius: 18px;
	background: linear-gradient(145deg, #0b3d6e, #1769aa);
	box-shadow: 0 15px 40px rgba(11, 61, 110, 0.18);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.contact-help-box::after {
	content: "";
	position: absolute;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	right: -110px;
	top: -90px;
}

.contact-help-icon {
	position: relative;
	z-index: 2;
	width: 68px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	border-radius: 17px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 28px;
}

.contact-help-box > span {
	position: relative;
	z-index: 2;
	display: block;
	color: #d8ecff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.8px;
	margin-bottom: 8px;
}

.contact-help-box h3 {
	position: relative;
	z-index: 2;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 14px;
}

.contact-help-box p {
	position: relative;
	z-index: 2;
	color: rgba(255, 255, 255, 0.83);
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 25px;
}

.contact-btn {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 21px;
	border-radius: 10px;
	background: #fff;
	color: #0b4b7a;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition: all 0.3s ease;
}

.contact-btn:hover {
	background: #e9f4fc;
	color: #08375d;
	transform: translateY(-2px);
}

.citizen-cta {
	padding: 70px 0;
	background: #fff;
}

.citizen-cta .cta-content {
	position: relative;
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 38px 42px;
	border-radius: 20px;
	background: linear-gradient(135deg, #0b3d6e, #1769aa);
	box-shadow: 0 18px 45px rgba(11, 61, 110, 0.2);
	overflow: hidden;
}

.citizen-cta .cta-content::after {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	right: -100px;
	top: -130px;
}

.cta-icon {
	position: relative;
	z-index: 2;
	width: 70px;
	height: 70px;
	min-width: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 28px;
}

.cta-text {
	position: relative;
	z-index: 2;
	flex: 1;
}

.cta-text > span {
	display: block;
	color: #d8ecff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.8px;
	margin-bottom: 7px;
}

.cta-text h2 {
	color: #fff;
	font-size: 27px;
	font-weight: 700;
	margin-bottom: 8px;
}

.cta-text p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}

.cta-btn {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border-radius: 10px;
	background: #fff;
	color: #0b4b7a;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.cta-btn:hover {
	background: #e9f4fc;
	color: #08375d;
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.contact-section {
		padding: 70px 0;
	}

	.citizen-cta .cta-content {
		flex-wrap: wrap;
		padding: 32px;
	}

	.cta-text {
		flex-basis: calc(100% - 100px);
	}
}

@media (max-width: 767px) {
	.contact-section {
		padding: 60px 0;
	}

	.section-heading h2 {
		font-size: 30px;
	}

	.contact-information-box {
		padding: 28px 22px;
	}

	.contact-help-box {
		padding: 30px 24px;
	}

	.citizen-cta .cta-content {
		text-align: center;
		justify-content: center;
	}

	.cta-icon {
		margin: 0 auto;
	}

	.cta-text {
		flex-basis: 100%;
	}

	.cta-btn {
		margin-top: 5px;
	}
}
/** employees css **/
.employees-section {
	padding: 90px 0;
	background: #f5f9fd;
}

.employee-card {
	height: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid #dfebf4;
	border-radius: 18px;
	box-shadow: 0 10px 35px rgba(17, 73, 112, 0.08);
	transition: all 0.35s ease;
}

.employee-card:hover {
	transform: translateY(-9px);
	border-color: #c8ddec;
	box-shadow: 0 20px 45px rgba(17, 73, 112, 0.15);
}

.employee-photo {
	height: 300px;
	overflow: hidden;
	background: #eaf4fc;
	position: relative;
}

.employee-photo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.5s ease;
}

.employee-card:hover .employee-photo img {
	transform: scale(1.04);
}

.employee-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #eaf4fc, #dcecf8);
}

.employee-placeholder i {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	color: #1769aa;
	font-size: 42px;
	box-shadow: 0 10px 30px rgba(17, 73, 112, 0.12);
}

.employee-content {
	padding: 27px 28px 25px;
	text-align: center;
	position: relative;
}

.employee-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 12%;
	right: 12%;
	height: 3px;
	border-radius: 10px;
	background: linear-gradient(90deg, #0b3d6e, #2b82c9);
}

.employee-content > span {
	display: inline-block;
	color: #1769aa;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.8px;
	margin-bottom: 8px;
}

.employee-content h3 {
	color: #153f60;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}

.employee-content p {
	color: #687b89;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 18px;
}

.employee-meta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: 8px;
	background: #f0f7fc;
	color: #41657d;
	font-size: 12px;
	font-weight: 600;
}

.employee-meta i {
	color: #1769aa;
}

.employee-info-section {
	padding: 80px 0;
	background: #fff;
}

.employee-info-card {
	height: 100%;
	padding: 34px 28px;
	text-align: center;
	background: #fff;
	border: 1px solid #dfebf4;
	border-radius: 18px;
	box-shadow: 0 8px 30px rgba(17, 73, 112, 0.07);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.employee-info-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #0b3d6e, #2b82c9);
}

.employee-info-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 18px 40px rgba(17, 73, 112, 0.13);
}

.employee-info-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: #eaf4fc;
	color: #1769aa;
	font-size: 27px;
	transition: all 0.3s ease;
}

.employee-info-card:hover .employee-info-icon {
	background: #1769aa;
	color: #fff;
	transform: translateY(-3px);
}

.employee-info-card h3 {
	color: #153f60;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}

.employee-info-card p {
	color: #697b89;
	font-size: 14px;
	line-height: 1.75;
	margin: 0;
}
.employee-directory-section {
	background: #f4faff;
}

.employee-table-card {
	background: #ffffff;
	border: 1px solid #dceaf3;
	border-radius: 18px;
	padding: 8px;
	box-shadow: 0 12px 35px rgba(30, 91, 125, 0.1);
	overflow: hidden;
}

.employee-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin: 0;
	overflow: hidden;
}

.employee-table thead th {
	background: linear-gradient(135deg, #56b4d8, #3288b5);
	color: #fff;
	padding: 17px 20px;
	font-size: 15px;
	font-weight: 700;
	text-align: left;
	border: 0;
	white-space: nowrap;
}

.employee-table thead th:first-child {
	border-radius: 12px 0 0 0;
	text-align: center;
	width: 90px;
}

.employee-table thead th:last-child {
	border-radius: 0 12px 0 0;
}

.employee-table tbody td {
	padding: 16px 20px;
	color: #344b59;
	font-size: 15px;
	font-weight: 500;
	border-bottom: 1px solid #e8f0f5;
	vertical-align: middle;
}

.employee-table tbody tr:last-child td {
	border-bottom: 0;
}

.employee-table tbody tr:nth-child(even) {
	background: #f8fcff;
}

.employee-table tbody tr {
	transition: 0.25s ease;
}

.employee-table tbody tr:hover {
	background: #eaf7fc;
	transform: translateX(2px);
}

.employee-table tbody td:first-child {
	text-align: center;
	color: #3288b5;
	font-weight: 800;
}

.employee-table tbody td:nth-child(2) {
	color: #173f56;
	font-weight: 700;
}

.employee-table tbody td:nth-child(3) {
	color: #55717f;
}

.employee-table tbody td:last-child a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #2786ae;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.employee-table tbody td:last-child a::before {
	content: "\f095";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 12px;
}

.employee-table tbody td:last-child a:hover {
	color: #17617f;
}

@media (max-width: 768px) {
	.employee-table-card {
		padding: 5px;
		border-radius: 14px;
	}

	.employee-table {
		min-width: 650px;
	}

	.employee-table thead th,
	.employee-table tbody td {
		padding: 13px 15px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.employee-table {
		min-width: 600px;
	}

	.employee-table thead th,
	.employee-table tbody td {
		padding: 12px;
		font-size: 13px;
	}
}
.cta-section {
	padding: 70px 0;
	background: #f5f9fd;
}

.cta-box {
	position: relative;
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 38px 42px;
	border-radius: 20px;
	background: linear-gradient(135deg, #0b3d6e, #1769aa);
	box-shadow: 0 18px 45px rgba(11, 61, 110, 0.2);
	overflow: hidden;
}

.cta-box::after {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	right: -100px;
	top: -130px;
}

.cta-icon {
	position: relative;
	z-index: 2;
	width: 70px;
	height: 70px;
	min-width: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 28px;
}

.cta-content {
	position: relative;
	z-index: 2;
	flex: 1;
}

.cta-content > span {
	display: inline-block;
	color: #d8ecff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.8px;
	margin-bottom: 7px;
}

.cta-content h2 {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
}

.cta-content p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}

.primary-btn {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border-radius: 10px;
	background: #fff;
	color: #0b4b7a;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.primary-btn:hover {
	background: #e9f4fc;
	color: #08375d;
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.employees-section {
		padding: 70px 0;
	}

	.employee-photo {
		height: 280px;
	}

	.cta-box {
		flex-wrap: wrap;
		padding: 32px;
	}
}

@media (max-width: 767px) {
	.employees-section {
		padding: 60px 0;
	}

	.employee-photo {
		height: 300px;
	}

	.employee-content {
		padding: 25px 20px;
	}

	.employee-content h3 {
		font-size: 20px;
	}

	.employee-info-section {
		padding: 60px 0;
	}

	.cta-box {
		text-align: center;
		justify-content: center;
	}

	.cta-icon {
		margin: 0 auto;
	}

	.cta-content {
		flex-basis: 100%;
	}

	.primary-btn {
		margin-top: 5px;
	}
}

.elected-members-section {
	padding: 80px 0;
	background: #f8fafc;
}

.elected-members-table-card {
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.elected-members-table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
}

.elected-members-table thead th {
	background: #0f3d68;
	color: #ffffff;
	padding: 18px 20px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	white-space: nowrap;
}

.elected-members-table tbody td {
	padding: 18px 20px;
	border-bottom: 1px solid #e9edf2;
	color: #475569;
	font-size: 15px;
	vertical-align: middle;
}

.elected-members-table tbody tr:last-child td {
	border-bottom: none;
}

.elected-members-table tbody tr:hover {
	background: #f8fafc;
}

.elected-members-table tbody td:first-child {
	width: 70px;
	font-weight: 700;
	color: #0f3d68;
}

.elected-member-photo {
	width: 58px;
	height: 58px;
	object-fit: cover;
	border-radius: 10px;
	border: 2px solid #e5e7eb;
	display: block;
}

.elected-member-placeholder {
	width: 58px;
	height: 58px;
	border-radius: 10px;
	background: #eef3f8;
	color: #0f3d68;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.elected-members-table strong {
	color: #1e293b;
	font-weight: 700;
}

.elected-members-table a {
	color: #0f3d68;
	font-weight: 600;
	text-decoration: none;
}

.elected-members-table a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.elected-members-section {
		padding: 60px 0;
	}

	.elected-members-table-card {
		border-radius: 12px;
	}

	.elected-members-table {
		min-width: 700px;
	}

	.elected-members-table thead th,
	.elected-members-table tbody td {
		padding: 14px 15px;
	}
}
/** formation css **/
.formation-section {
	background: #f7f4ec;
	padding: 85px 0;
}

.section-heading {
	max-width: 850px;
	margin: 0 auto 55px;
	text-align: center;
}

.section-heading > span,
.formation-intro span,
.timeline-content > span,
.cta-content > span {
	display: inline-block;
	color: #0938f6;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.section-heading h2 {
	color: #154c79;
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 15px;
}

.section-heading p {
	color: #68727d;
	font-size: 22px;
	line-height: 1.8;
	margin: 0;
}

.formation-intro {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	background: #fff;
	padding: 38px;
	border-radius: 18px;
	border: 1px solid rgba(21, 76, 121, 0.08);
	box-shadow: 0 12px 35px rgba(21, 76, 121, 0.08);
	margin-bottom: 65px;
	position: relative;
	overflow: hidden;
}

.formation-intro::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 5px;
	height: 100%;
	background: #b9862f;
}

.formation-icon {
	min-width: 72px;
	width: 72px;
	height: 72px;
	border-radius: 15px;
	background: #154c79;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	box-shadow: 0 8px 20px rgba(21, 76, 121, 0.18);
}

.formation-intro h3 {
	color: #154c79;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 15px;
}

.formation-intro p {
	color: #68727d;
	font-size: 19px;
	line-height: 1.85;
	margin-bottom: 12px;
}

.formation-intro p:last-child {
	margin-bottom: 0;
}

.formation-timeline {
	position: relative;
	max-width: 950px;
	margin: 0 auto;
}

.formation-timeline::before {
	content: "";
	position: absolute;
	left: 37px;
	top: 15px;
	bottom: 15px;
	width: 2px;
	background: linear-gradient(to bottom, #b9862f, rgba(185, 134, 47, 0.2));
}

.timeline-item {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	position: relative;
	margin-bottom: 38px;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-number {
	min-width: 76px;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: #fff;
	border: 5px solid #218ef4;
	color: #154c79;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	font-weight: 800;
	z-index: 2;
	box-shadow: 0 6px 18px rgba(21, 76, 121, 0.12);
}

.timeline-content {
	background: #fff;
	flex: 1;
	padding: 28px 32px;
	border-radius: 15px;
	border: 1px solid rgba(21, 76, 121, 0.07);
	box-shadow: 0 8px 25px rgba(21, 76, 121, 0.07);
	transition: all 0.3s ease;
}

.timeline-content:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(21, 76, 121, 0.13);
}

.timeline-content h3 {
	color: #154c79;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 10px;
}

.timeline-content p {
	color: #68727d;
	font-size: 19px;
	line-height: 1.8;
	margin: 0;
}

.formation-focus {
	background: #fff;
	padding: 80px 0;
}

.focus-card {
	height: 100%;
	background: #f7f4ec;
	padding: 38px 30px;
	text-align: center;
	border-radius: 18px;
	border: 1px solid rgba(21, 76, 121, 0.08);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.focus-card::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: #0dece1;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}

.focus-card:hover {
	transform: translateY(-8px);
	background: #fff;
	box-shadow: 0 18px 40px rgba(21, 76, 121, 0.12);
}

.focus-card:hover::after {
	transform: scaleX(1);
}

.focus-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 22px;
	border-radius: 16px;
	background: #154c79;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 27px;
	transition: all 0.3s ease;
}

.focus-card:hover .focus-icon {
	background: #39ead2;
	transform: rotateY(180deg);
}

.focus-card h3 {
	color: #154c79;
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 12px;
}

.focus-card p {
	color: #68727d;
	font-size: 15px;
	line-height: 1.8;
	margin: 0;
}

.cta-section {
	background: #f7f4ec;
	padding: 70px 0;
}

.cta-box {
	background: #154c79;
	border-radius: 20px;
	padding: 38px 45px;
	display: flex;
	align-items: center;
	gap: 28px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(21, 76, 121, 0.18);
}

.cta-box::before {
	content: "";
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	right: -70px;
	top: -100px;
	border: 35px solid rgba(255, 255, 255, 0.06);
}

.cta-icon {
	width: 68px;
	height: 68px;
	min-width: 68px;
	border-radius: 15px;
	background: #b9862f;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
}

.cta-content {
	flex: 1;
}

.cta-content > span {
	color: #e7c982;
	margin-bottom: 6px;
}

.cta-content h2 {
	color: #fff;
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 8px;
}

.cta-content p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	margin: 0;
	line-height: 1.7;
}

.primary-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #b9862f;
	color: #fff;
	padding: 13px 22px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.primary-btn:hover {
	background: #fff;
	color: #154c79;
	transform: translateX(4px);
}

@media (max-width: 991px) {
	.section-heading h2 {
		font-size: 32px;
	}

	.formation-intro {
		padding: 30px;
	}

	.cta-box {
		padding: 32px;
	}
}

@media (max-width: 767px) {
	.formation-section,
	.formation-focus {
		padding: 60px 0;
	}

	.section-heading {
		margin-bottom: 40px;
	}

	.section-heading h2 {
		font-size: 28px;
	}

	.section-heading p {
		font-size: 14px;
	}

	.formation-intro {
		flex-direction: column;
		padding: 28px 24px;
		gap: 20px;
	}

	.formation-icon {
		min-width: 60px;
		width: 60px;
		height: 60px;
		font-size: 24px;
	}

	.formation-intro h3 {
		font-size: 21px;
	}

	.formation-intro p {
		font-size: 14px;
	}

	.formation-timeline::before {
		left: 29px;
	}

	.timeline-item {
		gap: 18px;
	}

	.timeline-number {
		min-width: 60px;
		width: 60px;
		height: 60px;
		border-width: 4px;
		font-size: 14px;
	}

	.timeline-content {
		padding: 22px 20px;
	}

	.timeline-content h3 {
		font-size: 19px;
	}

	.timeline-content p {
		font-size: 14px;
	}

	.cta-box {
		flex-direction: column;
		align-items: flex-start;
		padding: 30px 25px;
	}

	.cta-content h2 {
		font-size: 22px;
	}

	.primary-btn {
		margin-top: 5px;
	}
}

@media (max-width: 480px) {
	.section-heading h2 {
		font-size: 25px;
	}

	.timeline-item {
		gap: 14px;
	}

	.timeline-number {
		min-width: 52px;
		width: 52px;
		height: 52px;
		font-size: 12px;
	}

	.formation-timeline::before {
		left: 25px;
	}

	.timeline-content {
		padding: 18px 16px;
	}

	.timeline-content > span {
		font-size: 10px;
		letter-spacing: 1.3px;
	}

	.timeline-content h3 {
		font-size: 17px;
	}

	.focus-card {
		padding: 30px 22px;
	}
}
/** notices css **/
.notices-page-section {
	background: #f7f4ec;
	padding: 85px 0;
}

.notices-page-section .section-heading {
	max-width: 800px;
	margin: 0 auto 55px;
	text-align: center;
}

.notices-page-section .section-heading span,
.notice-page-header span,
.notice-page-content > span,
.notice-side-card > span,
.notice-info-box span {
	display: inline-block;
	color: #b9862f;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 9px;
}

.notices-page-section .section-heading h2 {
	color: #154c79;
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 14px;
}

.notices-page-section .section-heading p {
	color: #68727d;
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
}

.notice-page-panel {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(21, 76, 121, 0.08);
	box-shadow: 0 12px 35px rgba(21, 76, 121, 0.08);
}

.notice-page-header {
	background: #154c79;
	padding: 28px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.notice-page-header span {
	color: #e7c982;
	margin-bottom: 5px;
}

.notice-page-header h3 {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin: 0;
}

.notice-header-icon {
	width: 58px;
	height: 58px;
	min-width: 58px;
	border-radius: 14px;
	background: #b9862f;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 23px;
}

.notice-page-list {
	padding: 8px 28px;
}

.notice-page-item {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 25px 5px;
	border-bottom: 1px solid #e9edf0;
	transition: all 0.3s ease;
}

.notice-page-item:last-child {
	border-bottom: 0;
}

.notice-page-item:hover {
	padding-left: 12px;
}

.notice-page-date {
	width: 68px;
	min-width: 68px;
	height: 72px;
	background: #f7f4ec;
	border-radius: 12px;
	border: 1px solid rgba(185, 134, 47, 0.25);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.notice-page-date strong {
	color: #154c79;
	font-size: 23px;
	line-height: 1;
	font-weight: 800;
}

.notice-page-date span {
	color: #b9862f;
	font-size: 11px;
	font-weight: 800;
	margin-top: 6px;
	letter-spacing: 1px;
}

.notice-page-content {
	flex: 1;
}

.notice-page-content > span {
	font-size: 10px;
	letter-spacing: 1.4px;
	margin-bottom: 6px;
}

.notice-page-content h4 {
	color: #154c79;
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 7px;
}

.notice-page-content p {
	color: #68727d;
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

.notice-page-arrow {
	width: 42px;
	height: 42px;
	min-width: 42px;
	border-radius: 50%;
	background: #f7f4ec;
	color: #154c79;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.notice-page-arrow:hover {
	background: #b9862f;
	color: #fff;
	transform: translateX(4px);
}

.notice-side-card {
	height: 100%;
	background: #154c79;
	padding: 35px 30px;
	border-radius: 18px;
	color: #fff;
	position: relative;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(21, 76, 121, 0.15);
}

.notice-side-card::before {
	content: "";
	position: absolute;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	right: -80px;
	top: -75px;
	border: 30px solid rgba(255, 255, 255, 0.05);
}

.notice-side-icon {
	width: 62px;
	height: 62px;
	border-radius: 15px;
	background: #b9862f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	margin-bottom: 25px;
}

.notice-side-card > span {
	color: #e7c982;
}

.notice-side-card h3 {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
}

.notice-side-card > p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	line-height: 1.85;
	margin-bottom: 25px;
}

.notice-side-line {
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
	margin-bottom: 20px;
}

.notice-side-detail {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
}

.notice-side-detail i {
	color: #e7c982;
	width: 18px;
	text-align: center;
}

.notice-info-section {
	background: #fff;
	padding: 70px 0;
}

.notice-info-box {
	background: #f7f4ec;
	border: 1px solid rgba(21, 76, 121, 0.08);
	border-radius: 20px;
	padding: 35px 40px;
	display: flex;
	align-items: center;
	gap: 25px;
	box-shadow: 0 10px 30px rgba(21, 76, 121, 0.06);
}

.notice-info-icon {
	width: 65px;
	height: 65px;
	min-width: 65px;
	border-radius: 15px;
	background: #154c79;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
}

.notice-info-box > div:nth-child(2) {
	flex: 1;
}

.notice-info-box span {
	margin-bottom: 5px;
}

.notice-info-box h2 {
	color: #154c79;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
}

.notice-info-box p {
	color: #68727d;
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

.notice-info-box .primary-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #b9862f;
	color: #fff;
	padding: 13px 22px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.notice-info-box .primary-btn:hover {
	background: #154c79;
	color: #fff;
	transform: translateX(4px);
}

@media (max-width: 991px) {
	.notices-page-section {
		padding: 70px 0;
	}

	.notices-page-section .section-heading h2 {
		font-size: 32px;
	}

	.notice-side-card {
		min-height: auto;
	}

	.notice-info-box {
		padding: 30px;
	}
}

@media (max-width: 767px) {
	.notices-page-section {
		padding: 60px 0;
	}

	.notices-page-section .section-heading {
		margin-bottom: 40px;
	}

	.notices-page-section .section-heading h2 {
		font-size: 28px;
	}

	.notices-page-section .section-heading p {
		font-size: 14px;
	}

	.notice-page-header {
		padding: 23px 22px;
	}

	.notice-page-header h3 {
		font-size: 19px;
	}

	.notice-header-icon {
		width: 50px;
		height: 50px;
		min-width: 50px;
		font-size: 20px;
	}

	.notice-page-list {
		padding: 5px 18px;
	}

	.notice-page-item {
		gap: 14px;
		align-items: flex-start;
		padding: 22px 0;
	}

	.notice-page-date {
		width: 58px;
		min-width: 58px;
		height: 65px;
	}

	.notice-page-date strong {
		font-size: 19px;
	}

	.notice-page-content h4 {
		font-size: 17px;
	}

	.notice-page-content p {
		font-size: 13px;
	}

	.notice-page-arrow {
		width: 36px;
		height: 36px;
		min-width: 36px;
		font-size: 12px;
	}

	.notice-side-card {
		padding: 30px 25px;
	}

	.notice-info-section {
		padding: 55px 0;
	}

	.notice-info-box {
		flex-direction: column;
		align-items: flex-start;
		padding: 30px 25px;
	}

	.notice-info-box h2 {
		font-size: 21px;
	}

	.notice-info-box .primary-btn {
		margin-top: 5px;
	}
}

@media (max-width: 480px) {
	.notice-page-item {
		flex-wrap: wrap;
	}

	.notice-page-content {
		min-width: calc(100% - 76px);
	}

	.notice-page-arrow {
		margin-left: 72px;
		margin-top: -5px;
	}

	.notice-side-card h3 {
		font-size: 21px;
	}

	.notice-info-icon {
		width: 58px;
		height: 58px;
		min-width: 58px;
	}
}
/** rti css **/
.rti-section {
	position: relative;
	overflow: hidden;
	padding: 90px 0 100px;
	background: #f5fbfa;
}

.rti-section::before,
.rti-section::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.rti-section::before {
	width: 500px;
	height: 500px;
	left: -370px;
	top: 120px;
	border: 70px solid rgba(8, 127, 121, 0.035);
	box-shadow:
		0 0 0 45px rgba(8, 127, 121, 0.018),
		0 0 0 95px rgba(8, 127, 121, 0.012);
}

.rti-section::after {
	width: 430px;
	height: 430px;
	right: -320px;
	bottom: 80px;
	border: 65px solid rgba(5, 72, 130, 0.035);
	box-shadow:
		0 0 0 45px rgba(5, 72, 130, 0.018),
		0 0 0 95px rgba(5, 72, 130, 0.012);
}

.rti-section .container {
	position: relative;
	z-index: 2;
	max-width: 1240px;
}

.rti-main-card,
.rti-information-card {
	position: relative;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #dcebea;
	border-radius: 22px;
	box-shadow: 0 18px 50px rgba(4, 67, 91, 0.08);
}

.rti-main-card {
	margin-bottom: 30px;
}

.rti-card-header {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 28px 32px;
	background: linear-gradient(135deg, #063d66, #087f79);
}

.rti-card-icon {
	width: 60px;
	height: 60px;
	min-width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #91efd7;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 16px;
	font-size: 24px;
}

.rti-card-header span,
.rti-information-header span {
	display: block;
	margin-bottom: 6px;
	color: #91efd7;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.6px;
}

.rti-card-header h3,
.rti-information-header h3 {
	margin: 0;
	color: #ffffff;
	font-size: 25px;
	font-weight: 800;
}

.rti-card-body {
	padding: 30px;
}

.rti-table-wrap {
	width: 100%;
	overflow-x: auto;
	border: 1px solid #dcebea;
	border-radius: 15px;
}

.rti-table {
	width: 100%;
	min-width: 760px;
	margin: 0;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 15px;
}

.rti-table th {
	padding: 18px 20px;
	color: #124b62;
	background: #edf8f7;
	border-bottom: 1px solid #d7ebe8;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	vertical-align: middle;
}

.rti-table th:first-child {
	width: 80px;
	text-align: center;
}

.rti-table td {
	padding: 22px 20px;
	color: #566a73;
	background: #ffffff;
	border-bottom: 1px solid #edf1f2;
	line-height: 1.7;
	vertical-align: middle;
}

.rti-table tr:last-child td {
	border-bottom: 0;
}

.rti-table tbody tr:hover td {
	background: #f6fcfb;
}

.rti-table td:first-child {
	text-align: center;
}

.rti-table td strong {
	color: #123f58;
	font-size: 15px;
	font-weight: 800;
}

.rti-table td a {
	color: #087f79;
	font-weight: 700;
	text-decoration: none;
}

.rti-table td a:hover {
	color: #075b92;
}

.rti-serial {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #087f79;
	background: linear-gradient(135deg, #e8faf5, #eaf5ff);
	border: 1px solid #cfe9e4;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 800;
	transition: 0.25s ease;
}

.rti-table tr:hover .rti-serial {
	color: #ffffff;
	background: linear-gradient(135deg, #087f79, #07619b);
	border-color: transparent;
	transform: translateY(-2px);
}

.rti-information-card {
	margin-top: 30px;
}

.rti-information-header {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 27px 32px;
	background: #f0f9f8;
	border-bottom: 1px solid #dcebea;
}

.rti-information-icon {
	width: 55px;
	height: 55px;
	min-width: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #087f79;
	background: #ffffff;
	border: 1px solid #d5eae6;
	border-radius: 15px;
	font-size: 22px;
}

.rti-information-header span {
	color: #087f79;
}

.rti-information-header h3 {
	color: #063d66;
	font-size: 23px;
}

.rti-information-body {
	padding: 32px;
}

.rti-information-body > p {
	margin: 0 0 27px;
	color: #5b6e76;
	font-size: 16px;
	line-height: 1.85;
}

.rti-point {
	display: flex;
	gap: 20px;
	padding: 23px 0;
	border-top: 1px solid #e7eeee;
}

.rti-point-number {
	width: 43px;
	height: 43px;
	min-width: 43px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #087f79;
	background: linear-gradient(135deg, #e8faf5, #eaf5ff);
	border: 1px solid #d0e9e4;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 800;
}

.rti-point h4 {
	margin: 0 0 7px;
	color: #123f58;
	font-size: 18px;
	font-weight: 800;
}

.rti-point p {
	margin: 0;
	color: #62747c;
	font-size: 15px;
	line-height: 1.8;
}

.rti-disclosure {
	display: flex;
	gap: 20px;
	margin-top: 20px;
	padding: 26px;
	background: linear-gradient(135deg, #f0faf8, #f0f6fc);
	border: 1px solid #d9ebe8;
	border-radius: 17px;
}

.rti-disclosure-icon {
	width: 52px;
	height: 52px;
	min-width: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #07679a;
	background: #ffffff;
	border: 1px solid #d8e8ed;
	border-radius: 14px;
	font-size: 21px;
}

.rti-disclosure span {
	display: block;
	margin-bottom: 5px;
	color: #087f79;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.5px;
}

.rti-disclosure h4 {
	margin: 0 0 8px;
	color: #063d66;
	font-size: 20px;
	font-weight: 800;
}

.rti-disclosure p {
	margin: 0 0 12px;
	color: #5e7078;
	font-size: 14px;
	line-height: 1.8;
}

.rti-font-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 7px;
	padding: 11px 17px;
	color: #ffffff;
	background: linear-gradient(135deg, #087f79, #07649a);
	border-radius: 9px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.25s ease;
}

.rti-font-btn:hover {
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(7, 105, 122, 0.18);
}

.rti-cta-section {
	position: relative;
	overflow: hidden;
	padding: 80px 0;
	background: #ffffff;
}

.rti-cta {
	position: relative;
	display: flex;
	align-items: center;
	gap: 22px;
	overflow: hidden;
	padding: 35px;
	background: linear-gradient(135deg, #063d66, #087f79);
	border-radius: 22px;
	box-shadow: 0 20px 50px rgba(4, 67, 91, 0.15);
}

.rti-cta::before {
	content: "";
	position: absolute;
	width: 260px;
	height: 260px;
	right: -90px;
	top: -170px;
	border: 40px solid rgba(255, 255, 255, 0.045);
	border-radius: 50%;
}

.rti-cta-icon {
	position: relative;
	z-index: 2;
	width: 62px;
	height: 62px;
	min-width: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #91efd7;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 16px;
	font-size: 23px;
}

.rti-cta > div:nth-child(2) {
	position: relative;
	z-index: 2;
	flex: 1;
}

.rti-cta > div:nth-child(2) span {
	display: block;
	margin-bottom: 6px;
	color: #91efd7;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.6px;
}

.rti-cta h2 {
	margin: 0 0 7px;
	color: #ffffff;
	font-size: 25px;
	font-weight: 800;
}

.rti-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 15px;
	line-height: 1.7;
}

.rti-cta .primary-btn {
	position: relative;
	z-index: 3;
	flex-shrink: 0;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.rti-section {
		padding: 60px 0 70px;
	}

	.rti-card-header,
	.rti-information-header {
		padding: 22px;
	}

	.rti-card-body,
	.rti-information-body {
		padding: 22px;
	}

	.rti-card-icon {
		width: 52px;
		height: 52px;
		min-width: 52px;
		font-size: 20px;
	}

	.rti-card-header h3,
	.rti-information-header h3 {
		font-size: 20px;
	}

	.rti-table {
		min-width: 760px;
	}

	.rti-table th {
		padding: 15px;
		font-size: 10px;
	}

	.rti-table td {
		padding: 18px 15px;
		font-size: 14px;
	}

	.rti-information-body > p {
		font-size: 14px;
	}

	.rti-point {
		gap: 14px;
	}

	.rti-point h4 {
		font-size: 16px;
	}

	.rti-point p {
		font-size: 14px;
	}

	.rti-disclosure {
		flex-direction: column;
		padding: 21px;
	}

	.rti-cta-section {
		padding: 60px 0;
	}

	.rti-cta {
		flex-direction: column;
		align-items: flex-start;
		padding: 27px;
	}

	.rti-cta h2 {
		font-size: 21px;
	}

	.rti-cta p {
		font-size: 14px;
	}
}

/** services css */
.services-intro {
	padding: 80px 0;
	background: #f7f9fc;
}

.citizen-charter-intro {
	display: flex;
	align-items: center;
	gap: 25px;
	padding: 30px;
	margin-bottom: 45px;
	background: #ffffff;
	border: 1px solid #e8edf3;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.citizen-charter-intro-icon {
	width: 70px;
	height: 70px;
	min-width: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: #eef4ff;
	color: #1f5eff;
	font-size: 28px;
}

.citizen-charter-intro span {
	display: block;
	margin-bottom: 7px;
	color: #1f5eff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
}

.citizen-charter-intro h3 {
	margin: 0 0 10px;
	color: #172033;
	font-size: 25px;
	font-weight: 700;
}

.citizen-charter-intro p {
	margin: 0;
	color: #687386;
	line-height: 1.7;
}

.service-card {
	position: relative;
	height: 100%;
	padding: 32px 28px;
	background: #ffffff;
	border: 1px solid #e6ebf2;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.045);
	transition: all 0.3s ease;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #1f5eff;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-7px);
	border-color: #d9e3f7;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	width: 62px;
	height: 62px;
	margin-bottom: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: #eef4ff;
	color: #1f5eff;
	font-size: 24px;
	transition: all 0.3s ease;
}

.service-card:hover .service-icon {
	background: #1f5eff;
	color: #ffffff;
	transform: translateY(-2px);
}

.service-card h3 {
	margin-bottom: 13px;
	color: #172033;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.4;
}

.service-card p {
	margin-bottom: 22px;
	color: #687386;
	font-size: 15px;
	line-height: 1.75;
}

.service-card .primary-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
}

.service-card .primary-btn i {
	transition: transform 0.3s ease;
}

.service-card .primary-btn:hover i {
	transform: translateX(4px);
}

.service-help-section {
	padding: 70px 0;
	background: #ffffff;
}

.service-help-box {
	display: flex;
	align-items: center;
	gap: 25px;
	padding: 35px 40px;
	background: #f4f7fc;
	border: 1px solid #e3e9f2;
	border-radius: 18px;
}

.service-help-icon {
	width: 65px;
	height: 65px;
	min-width: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: #ffffff;
	color: #1f5eff;
	font-size: 25px;
	box-shadow: 0 7px 20px rgba(0, 0, 0, 0.06);
}

.service-help-box > div:nth-child(2) {
	flex: 1;
}

.service-help-box span {
	display: block;
	margin-bottom: 6px;
	color: #1f5eff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
}

.service-help-box h2 {
	margin: 0 0 8px;
	color: #172033;
	font-size: 24px;
	font-weight: 700;
}

.service-help-box p {
	margin: 0;
	color: #687386;
	font-size: 15px;
	line-height: 1.7;
}

.service-help-box .primary-btn {
	flex-shrink: 0;
	text-decoration: none;
}

@media (max-width: 767px) {
	.services-intro {
		padding: 55px 0;
	}

	.citizen-charter-intro {
		align-items: flex-start;
		flex-direction: column;
		padding: 25px;
		gap: 18px;
	}

	.citizen-charter-intro h3 {
		font-size: 22px;
	}

	.service-card {
		padding: 27px 23px;
	}

	.service-help-section {
		padding: 50px 0;
	}

	.service-help-box {
		align-items: flex-start;
		flex-direction: column;
		padding: 28px 25px;
	}

	.service-help-box h2 {
		font-size: 21px;
	}

	.service-help-box .primary-btn {
		margin-top: 5px;
	}
}

@media (max-width: 480px) {
	.citizen-charter-intro-icon,
	.service-icon,
	.service-help-icon {
		width: 55px;
		height: 55px;
		min-width: 55px;
		font-size: 21px;
	}

	.service-card h3 {
		font-size: 19px;
	}
}

.services-intro .row {
	align-items: stretch;
}

.services-intro .row > div {
	display: flex;
}

.services-intro .service-card {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px;
}

.services-intro .service-icon {
	flex: 0 0 auto;
	width: 62px;
	height: 62px;
	margin: 0 0 20px 0;
}

.services-intro .service-card h3 {
	width: 100%;
	margin: 0 0 12px 0;
	font-size: 21px;
	line-height: 1.4;
}

.services-intro .service-card p {
	width: 100%;
	margin: 0 0 22px 0;
	font-size: 15px;
	line-height: 1.7;
}

.services-intro .service-card .primary-btn {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	white-space: nowrap;
}

.services-intro .service-card .primary-btn i {
	margin-left: 2px;
}

@media (min-width: 992px) {
	.services-intro .row.g-4 > div {
		width: 33.333333%;
	}

	.services-intro .service-card {
		min-height: 390px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.services-intro .row.g-4 > div {
		width: 50%;
	}

	.services-intro .service-card {
		min-height: 360px;
	}
}

@media (max-width: 767px) {
	.services-intro .row.g-4 > div {
		width: 100%;
	}

	.services-intro .service-card {
		min-height: auto;
		padding: 25px;
	}
}

/** header css **/
.main-header {
	background: #ffffff;
	border-bottom: 1px solid #e8edf2;
	position: relative;
	z-index: 10;
}

.main-header > .container {
	max-width: 1180px;
	padding: 0 20px;
}

.header-content {
	min-height: 125px;
	height: 125px;
	display: grid;
	grid-template-columns: 170px 1fr 170px;
	align-items: center;
	position: relative;
}

.header-logo {
	width: 170px;
	height: 125px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: visible;
	position: relative;
	z-index: 2;
}

.header-logo img {
	width: 145px;
	height: 115px;
	max-width: none;
	object-fit: contain;
	object-position: left center;
	display: block;
	filter: drop-shadow(0 4px 8px rgba(23, 50, 77, 0.14));
}

.header-title {
	min-width: 0;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	color: #03539e;
}
.header-title h1 {
	margin: 0;
	padding: 0;
	font-family: "Merriweather", serif;
	font-size: 42px !important;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 1.2px;
	color: #17324d;
	white-space: nowrap;
}

.header-title p {
	margin: 8px 0 0;
	font-family: "Inter", sans-serif;
	font-size: 19px !important;
	font-weight: 700;
	line-height: 1.4;
	color: #084298;
}
.header-spacer {
	width: 170px;
	height: 125px;
}

.main-nav {
	min-height: 58px;
	background: #17324d;
}

.main-nav .container {
	max-width: 1180px;
}

.main-nav .navbar-nav {
	align-items: center;
	gap: 3px;
}

.main-nav .nav-link {
	min-height: 58px;
	padding: 0 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	color: #ffffff;
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	transition: all 0.2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.main-nav .dropdown-menu {
	margin-top: 0;
	padding: 8px;
	border: 0;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(23, 50, 77, 0.16);
}

.main-nav .dropdown-item {
	padding: 10px 14px;
	border-radius: 6px;
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #17324d;
}

.main-nav .dropdown-item i {
	width: 20px;
	margin-right: 6px;
}

.main-nav .dropdown-item:hover,
.main-nav .dropdown-item.active {
	background: #eef4f8;
	color: #17324d;
}

.navbar-toggler {
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #ffffff;
	padding: 7px 11px;
}

.navbar-toggler:focus {
	box-shadow: none;
}

@media (max-width: 991px) {
	.header-content {
		min-height: 110px;
		height: 110px;
		grid-template-columns: 125px 1fr 125px;
	}

	.header-logo {
		width: 125px;
		height: 110px;
	}

	.header-logo img {
		width: 115px;
		height: 100px;
	}

	.header-spacer {
		width: 125px;
		height: 110px;
	}

	.header-title h1 {
		font-size: 24px;
		letter-spacing: 0.8px;
	}

	.header-title p {
		font-size: 13px;
	}

	.main-nav .navbar-collapse {
		padding: 10px 0;
	}

	.main-nav .nav-link {
		min-height: 45px;
		justify-content: flex-start;
		padding: 0 15px;
	}
}

@media (max-width: 767px) {
	.main-header > .container {
		padding: 0 15px;
	}

	.header-content {
		min-height: 95px;
		height: 95px;
		grid-template-columns: 90px 1fr 20px;
	}

	.header-logo {
		width: 90px;
		height: 95px;
	}

	.header-logo img {
		width: 85px;
		height: 88px;
	}

	.header-spacer {
		width: 20px;
		height: 95px;
	}

	.header-title {
		padding: 0 5px;
	}

	.header-title h1 {
		font-size: 18px;
		letter-spacing: 0.4px;
		white-space: normal;
		line-height: 1.25;
	}

	.header-title p {
		margin-top: 4px;
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	.header-content {
		grid-template-columns: 75px 1fr 10px;
	}

	.header-logo {
		width: 75px;
	}

	.header-logo img {
		width: 72px;
		height: 82px;
	}

	.header-spacer {
		width: 10px;
	}

	.header-title h1 {
		font-size: 15px;
	}

	.header-title p {
		font-size: 10px;
	}
}
.about-section {
	padding: 70px 0;
	background: #f7fafc;
}

.about-section-header {
	text-align: center;
	margin-bottom: 38px;
}

.section-kicker {
	display: inline-block;
	margin-bottom: 8px;
	color: #2477b5;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.about-section-header h2 {
	margin: 0;
	color: #17324d;
	font-family: "Merriweather", serif;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.25;
}

.section-title-line {
	width: 58px;
	height: 4px;
	margin: 14px auto 0;
	border-radius: 10px;
	background: #2994d6;
}

.about-wrapper {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.9fr);
	gap: 28px;
	align-items: stretch;
}

.about-main-card,
.about-info-card {
	background: #ffffff;
	border: 1px solid #e2eaf0;
	border-radius: 16px;
	box-shadow: 0 12px 35px rgba(23, 50, 77, 0.08);
	overflow: hidden;
}

.about-main-card {
	display: flex;
	flex-direction: column;
}

.about-card-header,
.about-info-header {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 24px 26px;
	border-bottom: 1px solid #e8eef3;
}

.about-card-icon,
.quick-icon {
	width: 52px;
	height: 52px;
	min-width: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #eaf4fb;
	color: #1f79b8;
	font-size: 21px;
}

.about-card-header span,
.about-info-header span {
	display: block;
	margin-bottom: 4px;
	color: #7b8d9c;
	font-family: "Inter", sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.4px;
}

.about-card-header h3,
.about-info-header h3 {
	margin: 0;
	color: #17324d;
	font-family: "Merriweather", serif;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.35;
}

.about-card-content {
	flex: 1;
	padding: 25px 28px 10px;
}

.about-card-content p {
	margin: 0 0 17px;
	color: #536777;
	font-family: "Inter", sans-serif;
	font-size: 19px;
	line-height: 1.8;
	text-align: justify;
}

.about-card-content p:last-child {
	margin-bottom: 0;
}

.about-card-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 26px 24px;
	margin-top: auto;
}

.about-primary-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 18px;
	border-radius: 8px;
	background: #17324d;
	color: #ffffff;
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.2s ease;
}

.about-primary-btn:hover {
	background: #2477b5;
	color: #ffffff;
	transform: translateY(-1px);
}

.about-trust-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 330px;
}

.trust-icon {
	width: 38px;
	height: 38px;
	min-width: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #edf8f2;
	color: #2c8b5a;
	font-size: 15px;
}

.trust-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.trust-content strong {
	color: #17324d;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.trust-content span {
	color: #718392;
	font-family: "Inter", sans-serif;
	font-size: 11px;
	line-height: 1.4;
}

.about-info-card {
	display: flex;
	flex-direction: column;
	padding-bottom: 20px;
}

.quick-info-list {
	padding: 10px 22px 0;
}

.quick-info-item {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 14px 4px;
	border-bottom: 1px solid #edf1f4;
}

.quick-info-item:last-child {
	border-bottom: 0;
}

.quick-info-icon {
	width: 38px;
	height: 38px;
	min-width: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background: #f1f6fa;
	color: #2477b5;
	font-size: 19px;
}

.quick-info-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.quick-info-text span {
	color: #8494a0;
	font-family: "Inter", sans-serif;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.7px;
	text-transform: uppercase;
}

.quick-info-text strong {
	color: #263f53;
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 700;
}

.citizen-service-box {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 16px 22px 0;
	padding: 15px;
	border-radius: 11px;
	background: #17324d;
}

.citizen-service-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.citizen-service-box > div:last-child {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.citizen-service-box span {
	color: #9ec9e6;
	font-family: "Inter", sans-serif;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 1.2px;
}

.citizen-service-box strong {
	color: #ffffff;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	line-height: 1.45;
}

.about-info-footer {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 15px 22px 0;
	padding: 11px 13px;
	border-radius: 8px;
	background: #f5f8fa;
	color: #617483;
	font-family: "Inter", sans-serif;
	font-size: 11px;
	line-height: 1.5;
}

.about-info-footer i {
	margin-top: 2px;
	color: #2c8b5a;
}

@media (max-width: 991px) {
	.about-wrapper {
		grid-template-columns: 1fr;
	}

	.about-section {
		padding: 55px 0;
	}

	.about-section-header h2 {
		font-size: 29px;
	}
}

@media (max-width: 575px) {
	.about-card-header,
	.about-info-header {
		padding: 20px;
	}

	.about-card-content {
		padding: 20px 21px 5px;
	}

	.about-card-bottom {
		align-items: flex-start;
		flex-direction: column;
		padding: 18px 21px 21px;
	}

	.about-trust-badge {
		max-width: 100%;
	}

	.quick-info-list {
		padding-left: 18px;
		padding-right: 18px;
	}

	.citizen-service-box,
	.about-info-footer {
		margin-left: 18px;
		margin-right: 18px;
	}

	.about-section-header h2 {
		font-size: 25px;
	}
}

/** tenders css **/
.tenders-hero {
	position: relative;
	padding: 90px 0 70px;
	background: linear-gradient(135deg, #123b32 0%, #1d5a4c 55%, #e8f2ed 100%);
	overflow: hidden;
}

.tenders-hero::before {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	right: -140px;
	top: -180px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
}

.tenders-hero::after {
	content: "";
	position: absolute;
	width: 260px;
	height: 260px;
	left: -120px;
	bottom: -150px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
}

.tenders-hero .container {
	position: relative;
	z-index: 2;
}

.tenders-hero-content {
	max-width: 850px;
}

.tenders-kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 16px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 30px;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.4px;
}

.tenders-hero h1 {
	margin: 0 0 15px;
	color: #fff;
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1.05;
	font-weight: 800;
}

.tenders-hero p {
	max-width: 700px;
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 17px;
	line-height: 1.8;
}

.tenders-breadcrumb {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-top: 28px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
}

.tenders-breadcrumb a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.tenders-breadcrumb a:hover {
	color: #dceee7;
}

.tenders-section {
	padding: 75px 0;
	background: #f7faf8;
}

.tenders-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 38px;
}

.tenders-section-heading .section-kicker {
	display: block;
	margin-bottom: 9px;
	color: #397565;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
}

.tenders-section-heading h2 {
	margin: 0 0 10px;
	color: #173c33;
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 800;
}

.tenders-section-heading p {
	max-width: 680px;
	margin: 0;
	color: #66756f;
	line-height: 1.7;
}

.tenders-heading-icon {
	width: 72px;
	height: 72px;
	flex: 0 0 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: #e6f1ec;
	color: #286451;
	font-size: 28px;
}

.tenders-list {
	display: grid;
	gap: 24px;
}

.tender-card {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e2ebe7;
	border-radius: 20px;
	box-shadow: 0 10px 35px rgba(25, 66, 54, 0.07);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.tender-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(25, 66, 54, 0.12);
}

.tender-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 25px;
	background: #f8fbf9;
	border-bottom: 1px solid #e7efeb;
}

.tender-number {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.tender-number span {
	color: #80918b;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.2px;
}

.tender-number strong {
	color: #214d40;
	font-size: 14px;
	font-weight: 800;
}

.tender-status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 12px;
	border-radius: 30px;
	background: #e8f6ee;
	color: #28724d;
	font-size: 12px;
	font-weight: 700;
}

.tender-status i {
	font-size: 7px;
}

.tender-card-body {
	display: flex;
	gap: 20px;
	padding: 28px 25px 22px;
}

.tender-main-icon {
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	background: #edf5f1;
	color: #2c6c5a;
	font-size: 21px;
}

.tender-main-content {
	min-width: 0;
}

.tender-department {
	display: inline-block;
	margin-bottom: 8px;
	color: #568273;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.tender-main-content h3 {
	margin: 0 0 10px;
	color: #1b3932;
	font-size: 21px;
	line-height: 1.45;
	font-weight: 750;
}

.tender-main-content p {
	margin: 0;
	color: #6b7974;
	font-size: 14px;
	line-height: 1.75;
}

.tender-meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 25px;
	border-top: 1px solid #edf1ef;
	border-bottom: 1px solid #edf1ef;
}

.tender-meta-item {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 82px;
	padding: 15px 18px;
	border-right: 1px solid #edf1ef;
}

.tender-meta-item:last-child {
	border-right: 0;
}

.tender-meta-item > i {
	color: #3d7968;
	font-size: 19px;
}

.tender-meta-item span {
	display: block;
	margin-bottom: 4px;
	color: #89958f;
	font-size: 11px;
	font-weight: 700;
}

.tender-meta-item strong {
	color: #28473e;
	font-size: 13px;
	font-weight: 750;
}

.tender-closing-date > i {
	color: #a0644f;
}

.tender-details {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 25px;
	padding: 18px 0;
	border-bottom: 1px solid #edf1ef;
}

.tender-detail-item {
	padding: 5px 18px;
	border-right: 1px solid #edf1ef;
}

.tender-detail-item:first-child {
	padding-left: 0;
}

.tender-detail-item:last-child {
	border-right: 0;
}

.tender-detail-item span {
	display: block;
	margin-bottom: 5px;
	color: #8a9691;
	font-size: 11px;
	font-weight: 700;
}

.tender-detail-item span i {
	margin-right: 5px;
	color: #4d806f;
}

.tender-detail-item strong {
	color: #27483e;
	font-size: 14px;
}

.tender-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 19px 25px;
}

.tender-document-label {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #66756f;
	font-size: 13px;
	font-weight: 650;
}

.tender-document-label i {
	color: #3d7968;
}

.tender-view-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 11px 17px;
	border-radius: 9px;
	background: #1f5d4c;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	transition: all 0.2s ease;
}

.tender-view-btn:hover {
	background: #174b3d;
	color: #fff;
	transform: translateX(2px);
}

.tender-document-unavailable {
	color: #9b6a5b;
	font-size: 12px;
	font-weight: 700;
}

.tender-corrigendum {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 25px;
	background: #fff9f3;
	border-top: 1px solid #f1e4d7;
	color: #806a5d;
	font-size: 12px;
}

.tender-corrigendum > i {
	color: #b47645;
}

.tender-corrigendum span {
	font-weight: 650;
}

.tender-corrigendum a {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #9a6039;
	text-decoration: none;
	font-weight: 750;
}

.tender-corrigendum a:hover {
	color: #704225;
}

.tenders-empty {
	padding: 65px 30px;
	text-align: center;
	background: #fff;
	border: 1px solid #e4ece8;
	border-radius: 20px;
	box-shadow: 0 10px 35px rgba(25, 66, 54, 0.06);
}

.tenders-empty-icon {
	width: 78px;
	height: 78px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	background: #edf5f1;
	color: #397565;
	font-size: 30px;
}

.tenders-empty .section-kicker {
	color: #6b877d;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.4px;
}

.tenders-empty h3 {
	margin: 9px 0 10px;
	color: #23463c;
	font-size: 25px;
}

.tenders-empty p {
	max-width: 560px;
	margin: 0 auto 25px;
	color: #728079;
	line-height: 1.7;
}

.tenders-info-section {
	padding: 0 0 75px;
	background: #f7faf8;
}

.tenders-info-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 28px 30px;
	overflow: hidden;
	border: 1px solid #dce9e3;
	border-radius: 18px;
	background: #edf6f1;
}

.tenders-info-icon {
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: #fff;
	color: #367360;
	font-size: 21px;
}

.tenders-info-content {
	position: relative;
	z-index: 2;
}

.tenders-info-content > span {
	display: block;
	margin-bottom: 5px;
	color: #5b8175;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.3px;
}

.tenders-info-content h3 {
	margin: 0 0 7px;
	color: #244a3f;
	font-size: 18px;
	font-weight: 800;
}

.tenders-info-content p {
	max-width: 900px;
	margin: 0;
	color: #60746d;
	font-size: 13px;
	line-height: 1.7;
}

.tenders-info-mark {
	position: absolute;
	right: 28px;
	bottom: -20px;
	color: rgba(52, 112, 91, 0.08);
	font-size: 110px;
}

@media (max-width: 991px) {
	.tender-meta {
		grid-template-columns: 1fr;
	}

	.tender-meta-item {
		border-right: 0;
		border-bottom: 1px solid #edf1ef;
	}

	.tender-meta-item:last-child {
		border-bottom: 0;
	}

	.tender-details {
		grid-template-columns: 1fr;
	}

	.tender-detail-item,
	.tender-detail-item:first-child {
		padding: 10px 0;
		border-right: 0;
		border-bottom: 1px solid #edf1ef;
	}

	.tender-detail-item:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 767px) {
	.tenders-hero {
		padding: 65px 0 55px;
	}

	.tenders-section {
		padding: 55px 0;
	}

	.tenders-section-heading {
		align-items: flex-start;
	}

	.tenders-heading-icon {
		width: 58px;
		height: 58px;
		flex-basis: 58px;
		font-size: 22px;
	}

	.tender-card-top {
		align-items: flex-start;
		flex-direction: column;
		padding: 17px 18px;
	}

	.tender-card-body {
		padding: 22px 18px;
	}

	.tender-main-icon {
		width: 45px;
		height: 45px;
		flex-basis: 45px;
		font-size: 18px;
	}

	.tender-main-content h3 {
		font-size: 18px;
	}

	.tender-meta,
	.tender-details {
		margin-left: 18px;
		margin-right: 18px;
	}

	.tender-card-footer {
		align-items: flex-start;
		flex-direction: column;
		padding: 17px 18px;
	}

	.tender-view-btn {
		width: 100%;
	}

	.tender-corrigendum {
		align-items: flex-start;
		flex-wrap: wrap;
		padding: 13px 18px;
	}

	.tender-corrigendum a {
		width: 100%;
		margin-left: 0;
	}

	.tenders-info-card {
		align-items: flex-start;
		padding: 22px;
	}

	.tenders-info-mark {
		display: none;
	}
}

@media (max-width: 480px) {
	.tenders-section-heading {
		display: block;
	}

	.tenders-heading-icon {
		display: none;
	}

	.tender-card-body {
		gap: 13px;
	}

	.tender-number {
		display: block;
	}

	.tender-number span {
		display: block;
		margin-bottom: 5px;
	}
}

/** budget css **/
.budget-hero {
	position: relative;
	padding: 75px 0 65px;
	background: linear-gradient(135deg, #173f38 0%, #245f53 55%, #367568 100%);
	overflow: hidden;
}

.budget-hero::before {
	content: "";
	position: absolute;
	width: 360px;
	height: 360px;
	right: -120px;
	top: -150px;
	border: 70px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
}

.budget-hero::after {
	content: "";
	position: absolute;
	width: 180px;
	height: 180px;
	left: -70px;
	bottom: -100px;
	border: 45px solid rgba(255, 255, 255, 0.05);
	border-radius: 50%;
}

.budget-hero-content {
	position: relative;
	z-index: 2;
	max-width: 760px;
}

.budget-kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.budget-kicker i {
	font-size: 14px;
}

.budget-hero h1 {
	margin: 0 0 14px;
	color: #fff;
	font-size: clamp(38px, 5vw, 58px);
	font-weight: 750;
	line-height: 1.05;
}

.budget-hero p {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	line-height: 1.75;
}

.budget-breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 27px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
}

.budget-breadcrumb a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.budget-breadcrumb a:hover {
	color: rgba(255, 255, 255, 0.8);
}

.budget-breadcrumb > i {
	font-size: 9px;
}

.budget-section {
	background: #f7f9f8;
}

.budget-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 25px;
	margin-bottom: 32px;
}

.budget-section-heading .section-kicker {
	display: block;
	margin-bottom: 8px;
	color: #397166;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.13em;
}

.budget-section-heading h2 {
	margin: 0 0 9px;
	color: #1d2926;
	font-size: clamp(27px, 3vw, 37px);
	font-weight: 750;
}

.budget-section-heading p {
	max-width: 680px;
	margin: 0;
	color: #6d7774;
	font-size: 14px;
	line-height: 1.7;
}

.budget-heading-icon {
	width: 64px;
	height: 64px;
	flex: 0 0 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: #e8f1ee;
	color: #245f53;
	font-size: 25px;
}

.budget-list {
	display: grid;
	gap: 20px;
}

.budget-card {
	position: relative;
	background: #fff;
	border: 1px solid #e4eae8;
	border-radius: 17px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(25, 55, 49, 0.045);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.budget-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(25, 55, 49, 0.09);
}

.budget-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 17px 23px;
	border-bottom: 1px solid #edf1f0;
	background: #fbfcfc;
}

.budget-year span {
	display: block;
	margin-bottom: 4px;
	color: #89918f;
	font-size: 9px;
	font-weight: 750;
	letter-spacing: 0.1em;
}

.budget-year strong {
	color: #245f53;
	font-size: 15px;
	font-weight: 750;
}

.budget-status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 11px;
	border-radius: 20px;
	background: #eaf6ee;
	color: #267442;
	font-size: 11px;
	font-weight: 700;
}

.budget-status i {
	font-size: 6px;
}

.budget-card-body {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 24px 23px 20px;
}

.budget-main-icon {
	width: 53px;
	height: 53px;
	flex: 0 0 53px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: #edf5f2;
	color: #286456;
	font-size: 21px;
}

.budget-main-content {
	min-width: 0;
}

.budget-category {
	display: inline-block;
	margin-bottom: 6px;
	color: #63827a;
	font-size: 10px;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.budget-main-content h3 {
	margin: 0 0 9px;
	color: #202b28;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
}

.budget-main-content p {
	max-width: 850px;
	margin: 0;
	color: #707976;
	font-size: 13px;
	line-height: 1.7;
}

.budget-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid #edf1f0;
	border-bottom: 1px solid #edf1f0;
	background: #fcfdfd;
}

.budget-meta-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 23px;
}

.budget-meta-item + .budget-meta-item {
	border-left: 1px solid #edf1f0;
}

.budget-meta-item > i {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background: #eef5f3;
	color: #326d61;
	font-size: 13px;
}

.budget-meta-item span {
	display: block;
	margin-bottom: 3px;
	color: #8a9390;
	font-size: 10px;
}

.budget-meta-item strong {
	display: block;
	color: #36423f;
	font-size: 13px;
	font-weight: 700;
}

.budget-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 15px 23px;
}

.budget-document-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #697572;
	font-size: 12px;
	font-weight: 600;
}

.budget-document-label i {
	color: #326d61;
}

.budget-view-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 10px 16px;
	border-radius: 9px;
	background: #245f53;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
}

.budget-view-btn:hover {
	background: #194b41;
	color: #fff;
	transform: translateY(-1px);
}

.budget-view-btn i {
	font-size: 10px;
}

.budget-empty {
	padding: 65px 25px;
	border: 1px solid #e5ebe9;
	border-radius: 17px;
	background: #fff;
	text-align: center;
}

.budget-empty-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 17px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: #edf5f2;
	color: #286456;
	font-size: 26px;
}

.budget-empty h3 {
	margin: 0 0 8px;
	color: #26312e;
	font-size: 20px;
}

.budget-empty p {
	max-width: 530px;
	margin: 0 auto 22px;
	color: #747d7a;
	font-size: 13px;
	line-height: 1.7;
}

.budget-info-section {
	padding: 0 0 70px;
	background: #f7f9f8;
}

.budget-info-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 27px;
	border: 1px solid #dfe9e5;
	border-radius: 16px;
	background: #eef5f2;
	overflow: hidden;
}

.budget-info-icon {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 13px;
	background: #fff;
	color: #286456;
	font-size: 19px;
}

.budget-info-content {
	position: relative;
	z-index: 1;
}

.budget-info-content > span {
	display: block;
	margin-bottom: 4px;
	color: #63827a;
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.1em;
}

.budget-info-content h3 {
	margin: 0 0 6px;
	color: #263a35;
	font-size: 17px;
	font-weight: 700;
}

.budget-info-content p {
	max-width: 850px;
	margin: 0;
	color: #687873;
	font-size: 12px;
	line-height: 1.7;
}

.budget-info-mark {
	margin-left: auto;
	padding-right: 10px;
	color: rgba(40, 100, 86, 0.12);
	font-size: 58px;
}

@media (max-width: 768px) {
	.budget-hero {
		padding: 55px 0 50px;
	}

	.budget-section-heading {
		align-items: flex-start;
	}

	.budget-heading-icon {
		display: none;
	}

	.budget-card-top {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.budget-card-body {
		padding: 20px 17px;
	}

	.budget-meta {
		grid-template-columns: 1fr;
	}

	.budget-meta-item + .budget-meta-item {
		border-left: 0;
		border-top: 1px solid #edf1f0;
	}

	.budget-meta-item {
		padding: 13px 17px;
	}

	.budget-card-footer {
		align-items: flex-start;
		flex-direction: column;
		padding: 15px 17px;
	}

	.budget-view-btn {
		width: 100%;
		justify-content: center;
	}

	.budget-info-card {
		align-items: flex-start;
		padding: 20px;
	}

	.budget-info-mark {
		display: none;
	}
}

@media (max-width: 480px) {
	.budget-hero p {
		font-size: 14px;
	}

	.budget-main-icon {
		width: 45px;
		height: 45px;
		flex-basis: 45px;
		font-size: 17px;
	}

	.budget-main-content h3 {
		font-size: 17px;
	}
}

/** footer.php **/
.footer-section {
	background: #0d2340;
	color: #dce6f2;
	padding-top: 65px;
	margin-top: 70px;
}

.footer-section .container-fluid {
	max-width: 1500px;
	margin: 0 auto;
}

.footer-section h4 {
	color: #ffffff;
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 28px;
	position: relative;
	padding-bottom: 13px;
}

.footer-section h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 45px;
	height: 3px;
	background: #6573ff;
	border-radius: 5px;
}

/* Contact */

.footer-contact-section {
	padding-right: 25px;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
}

.footer-contact-icon {
	width: 42px;
	height: 42px;
	min-width: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(101, 115, 255, 0.12);
	color: #7d8aff;
	border: 1px solid rgba(125, 138, 255, 0.2);
	border-radius: 10px;
	font-size: 16px;
}

.footer-contact-item strong {
	display: block;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 6px;
}

.footer-contact-item p {
	margin: 0;
	color: #b9c8d9;
	font-size: 14px;
	line-height: 1.8;
}

.footer-contact-item a {
	color: #b9c8d9;
	text-decoration: none;
	transition: all 0.25s ease;
}

.footer-contact-item a:hover {
	color: #ffffff;
}

/* Map */

.footer-map-section {
	padding: 0 10px;
}

.footer-map-wrapper {
	width: 100%;
	height: 245px;
	overflow: hidden;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: #172f4d;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.footer-map {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}

/* Social */

.footer-social-section {
	padding-left: 20px;
}

.footer-social-section p {
	color: #b9c8d9;
	font-size: 14px;
	line-height: 1.8;
	margin: 0 0 25px;
	max-width: 280px;
}

.footer-social-links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-social-link {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	color: #ffffff;
	text-decoration: none;
	font-size: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: all 0.3s ease;
}

.footer-social-link:hover {
	color: #ffffff;
	transform: translateY(-5px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.footer-social-link.facebook:hover {
	background: #1877f2;
	border-color: #1877f2;
}

.footer-social-link.instagram:hover {
	background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
	border-color: transparent;
}

.footer-social-link.twitter:hover {
	background: #000000;
	border-color: #000000;
}

/* Footer Bottom */

.footer-bottom {
	margin-top: 55px;
	padding: 25px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.14);
}

.footer-bottom p {
	color: #9fb0c4;
	font-size: 13px;
	line-height: 1.7;
}

.footer-bottom .mb-0 {
	color: #dce6f2;
	font-weight: 600;
}

/* Admin Login */

.admin-login-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 11px 18px;
	border: 1px solid rgba(125, 138, 255, 0.35);
	border-radius: 9px;
	color: #ffffff;
	background: rgba(101, 115, 255, 0.12);
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.admin-login-btn:hover {
	color: #ffffff;
	background: #6573ff;
	border-color: #6573ff;
	transform: translateY(-2px);
}

/* Developer Logo */

.developer-logo {
	max-width: 235px;
	height: auto;
	display: inline-block;
	opacity: 0.9;
	transition: all 0.3s ease;
}

.developer-logo:hover {
	opacity: 1;
	transform: translateY(-2px);
}

/* Back To Top */

.back-to-top {
	position: fixed;
	right: 25px;
	bottom: 25px;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: #6573ff;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: all 0.3s ease;
	z-index: 999;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: #5362ef;
	transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 991px) {
	.footer-section {
		padding-top: 50px;
	}

	.footer-contact-section {
		padding-right: 0;
	}

	.footer-map-section {
		padding: 0;
	}

	.footer-social-section {
		padding-left: 0;
	}

	.footer-social-section p {
		max-width: 100%;
	}

	.footer-bottom {
		margin-top: 45px;
	}
}

@media (max-width: 767px) {
	.footer-section {
		padding-top: 45px;
	}

	.footer-section .container-fluid {
		padding-left: 25px !important;
		padding-right: 25px !important;
	}

	.footer-contact-section,
	.footer-map-section,
	.footer-social-section {
		margin-bottom: 15px;
	}

	.footer-map-wrapper {
		height: 220px;
	}

	.footer-bottom {
		margin-top: 30px;
		padding: 25px 0;
	}

	.footer-bottom .text-start {
		text-align: center !important;
	}

	.footer-bottom .text-center {
		text-align: center !important;
	}

	.developer-logo {
		max-width: 150px;
	}

	.back-to-top {
		right: 18px;
		bottom: 18px;
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 480px) {
	.footer-section h4 {
		font-size: 19px;
	}

	.footer-contact-item {
		gap: 12px;
	}

	.footer-contact-icon {
		width: 38px;
		height: 38px;
		min-width: 38px;
	}

	.footer-map-wrapper {
		height: 200px;
	}

	.footer-social-links {
		gap: 10px;
	}

	.footer-social-link {
		width: 44px;
		height: 44px;
		font-size: 17px;
	}
}
/**justify */
p,
.content,
.description,
.about-content,
.service-content,
.page-content,
.section-content,
.card-text,
.news-content,
.tender-description,
.notice-description,
.article-content,
.text-content {
    text-align: justify;
    text-justify: inter-word;
}
footer p,
.footer p,
.footer-content p,
.footer-section p,
.footer-description,
.footer-about,
.footer-contact {
    text-align: justify;
    text-justify: inter-word;
}
footer {
    text-align: justify;
    text-justify: inter-word;
}

footer p,
footer li,
footer .footer-content,
footer .footer-section,
footer .footer-about,
footer .footer-description {
    text-align: justify;
    text-justify: inter-word;
}

.leaders-section .row {
    align-items: start;
}

.leader-card {
    height: 575px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.leader-image {
    height: 430px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.leader-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px 15px;
}

.leader-info h3 {
    margin: 0 0 8px;
}

.leader-info p {
    margin: 0;
}

.leaders-section .col-xl-3,
.leaders-section .col-lg-3 {
    width: 50%;
}

.leader-card:first-child {
    height: 625px;
}

.leader-card:first-child .leader-image {
    height: 480px;
}

@media (max-width: 767px) {
    .leaders-section .col-xl-3,
    .leaders-section .col-lg-3 {
        width: 100%;
    }

    .leader-card,
    .leader-card:first-child {
        height: 575px;
    }

    .leader-image,
    .leader-card:first-child .leader-image {
        height: 430px;
    }
}
/**FOOTER*/

.footer-section .row {
    align-items: flex-start;
}

.footer-contact-section,
.footer-map-section,
.footer-social-section {
    margin-top: 0 !important;
}

.footer-map-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-map-wrapper {
    width: 100%;
    max-width: 470px;
}

.footer-map {
    width: 100%;
    height: 255px;
    display: block;
}

.footer-social-section {
    padding-top: 0 !important;
}

.footer-social-section p {
    max-width: 360px;
}

@media (min-width: 992px) {
    .footer-section .col-lg-5 {
        flex: 0 0 42%;
        max-width: 42%;
    }

    .footer-section .col-lg-4 {
        flex: 0 0 34%;
        max-width: 34%;
    }

    .footer-section .col-lg-3 {
        flex: 0 0 24%;
        max-width: 24%;
    }
}

@media (max-width: 991px) {
    .footer-map-wrapper {
        max-width: 100%;
    }

    .footer-map {
        height: 320px;
    }
}
