/* Color Palette */
:root {
	--primary-100: #ebf5f7;
	--primary-200: #d8ecf0;
	--primary-300: #76b3c4;
	--primary-400: #2e7e99;
	--primary: #004c6d;
	--primary-600: #004263;
	--primary-700: #003252;
	--gray-100: #fafafa;
	--gray-200: #f5f5f5;
	--gray-300: #dadada;
	--gray-400: #a3a3a3;
	--gray-500: #737373;
	--gray-600: #525252;
	--gray-700: #404040;
	--gray-800: #262626;
	--gray-900: #171717;
	--base-100: #ffffff;
	--base-200: #f5f5f5;
	--base-300: #d4d4d4;
	--base-400: #a3a3a3;
	--base-500: #737373;
	--accent: #003252;
	--white: #ffffff;
	--text-dark: #4a4646;
	--text-light: #9b9b9b;
	--border-color: #ddd;
	--bg-light: #fafafa;
	--bg-primary: #004c6d;
}

/* =========================================================
   ===============   FOOTER SECTION START   ================
   ========================================================= */
.footer-column {
	width: 100%;
	max-width: 305px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-title {
	padding: 12px;
	color: var(--gray-800, #262626);
	font-size: 16px;
	font-weight: 700;
}

.footer-logo {
	padding: 12px;
	display: flex;
	align-items: center;
}

.footer-logo img {
	max-width: 100%;
	height: auto;
	max-height: 80px;
}

/* Contact Section */
.footer-contact-item {
	padding: 6px 12px;
	display: flex;
	gap: 10px;
}

.footer-contact-icon {
	color: var(--gray-700, #404040);
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-contact-content {
	flex: 1;
}

.footer-contact-label {
	color: var(--gray-700, #404040);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
}

.footer-contact-text {
	color: var(--gray-700, #404040);
	font-size: 14px;
	font-weight: 400;
}

/* Menu Section */
.footer-menu-items {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-menu-item {
	display: flex;
	flex-direction: column;
}

.footer-link {
	padding: 6px 12px;
	color: var(--gray-700, #404040);
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.3s ease;
	display: block;
}

.footer-link:hover {
	color: var(--gray-800, #262626);
	text-decoration: underline;
}
/* =========================================================
   ================   FOOTER SECTION END   =================
   ========================================================= */

/* =========================================================
   =============== BREADCRUMB SECTION START ================
   ========================================================= */
.breadcrumb-section {
	height: 200px;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}

.breadcrumb-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.breadcrumb-title-container {
	z-index: 2;
	padding-bottom: 24px;
}

.breadcrumb-title {
	color: var(--gray-100);
	font-size: 36px;
	font-family: Roboto;
	font-weight: 700;
	word-wrap: break-word;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	line-height: 1.2;
	max-width: 100%;
}

@media (min-width: 768px) {
	.breadcrumb-section {
		height: 300px;
	}

	.breadcrumb-title {
		font-size: 48px;
	}

	.breadcrumb-title-container {
		padding-bottom: 36px;
	}
}

.breadcrumb-nav-container {
	overflow: hidden;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	display: flex;
}

.breadcrumb-nav {
	padding-left: 32px;
	padding-right: 32px;
	padding-top: 16px;
	padding-bottom: 16px;
	background: var(--primary, #004c6d);
	overflow: hidden;
	justify-content: center;
	align-items: center;
	gap: 10px;
	display: flex;
}

.breadcrumb-nav-text {
	color: var(--gray-200, #f5f5f5);
	font-size: 16px;
	font-family: Open Sans;
	font-weight: 400;
	word-wrap: break-word;
}

.breadcrumb-link {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

.breadcrumb-link:hover {
	color: white;
}
/* =========================================================
   ================ BREADCRUMB SECTION END =================
   ========================================================= */

/* =========================================================
   ================= TEAM SECTION START ===================
   ========================================================= */
.team-wrapper {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
	max-width: 350px;
	display: flex;
	flex-direction: column;
	margin-left: auto;
	margin-right: auto;
}

.team-wrapper:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-image-holder {
	position: relative;
	width: 100%;
	height: 320px;
	overflow: hidden;
}

.team-image-holder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.team-wrapper:hover .team-image-holder img {
	transform: scale(1.05);
}

.team-content {
	padding: 16px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.team-content h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--gray-800, #262626);
}

.team-content p {
	font-size: 14px;
	color: var(--gray-600, #666);
	margin-bottom: 12px;
	text-align: start;
}

.team-email-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: var(--primary, #004c6d);
	border: 1px solid var(--primary, #004c6d);
	padding: 6px 16px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	align-self: flex-start;
}

.team-email-btn:hover {
	background: var(--primary, #004c6d);
	color: white;
	text-decoration: none;
}

/* Special styling for chairman/first member */
.chairman-card {
	max-width: 350px;
	margin: 0 auto;
}

.chairman-card .team-image-holder {
	height: 380px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.team-image-holder {
		height: 350px;
	}

	.chairman-card .team-image-holder {
		height: 380px;
	}
}
/* =========================================================
   ================== TEAM SECTION END ====================
   ========================================================= */

/* =========================================================
   =============== PAGINATION SECTION START ===============
   ========================================================= */
.pagination-posts {
	text-align: center;
	margin-top: 16px;
}

.pagination-posts .navigation {
	display: inline-block;
	margin: 0;
}

.pagination-posts .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pagination-posts .page-numbers {
	display: inline-block;
	padding: 0.5rem 0.75rem;
	text-decoration: none;
	background: transparent;
	border: none;
	color: var(--gray-500, #737373);
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	border-radius: 0;
}

.pagination-posts .page-numbers:hover {
	color: var(--primary, #004c6d);
	text-decoration: underline;
}

.pagination-posts .page-numbers.current {
	color: var(--primary, #004c6d);
	font-weight: 600;
}

.pagination-posts .page-numbers.current:hover {
	text-decoration: underline;
}

.pagination-posts .next.page-numbers,
.pagination-posts .prev.page-numbers {
	color: var(--primary, #004c6d);
	font-weight: 600;
}

.pagination-posts .next.page-numbers:hover,
.pagination-posts .prev.page-numbers:hover {
	text-decoration: underline;
}

.pagination-posts .dots {
	display: inline-block;
	padding: 0.5rem 0.75rem;
	color: var(--gray-400, #a3a3a3);
	font-weight: 600;
	cursor: default;
}

/* Responsive adjustments */
@media (max-width: 576px) {
	.pagination-posts .nav-links {
		gap: 0.75rem;
	}

	.pagination-posts .page-numbers {
		padding: 0.25rem 0.5rem;
		font-size: 14px;
	}
}
/* =========================================================
   ================ PAGINATION SECTION END ================
   ========================================================= */

/* =========================================================
   ================= TABBED LAYOUT START ==================
   ========================================================= */
.tabbed-layout-container {
	width: 100%;
}

.tab-navigation {
	padding-left: 40px;
	padding-right: 40px;
	overflow: hidden;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.tab-nav-container {
	flex: 1;
	border-bottom: 1px solid var(--gray-400, #a3a3a3);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 12px;
}

.tab-item {
	padding: 12px 24px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
	text-align: center;
	align-self: stretch;
}

.tab-item.active {
	border-bottom: 3px solid var(--primary, #004c6d);
}

.tab-item:hover {
	background-color: var(--gray-100, #fafafa);
}

.tab-title {
	color: var(--gray-500, #737373);
	font-size: 16px;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	word-wrap: break-word;
	transition: color 0.3s ease;
}

.tab-item.active .tab-title {
	color: var(--gray-900, #171717);
	font-weight: 500;
}

.tab-separator {
	width: 1px;
	align-self: stretch;
	background: rgba(218, 218, 218, 0.5);
}

.tab-content-container {
	margin-top: 1rem;
}

.tab-content {
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.tab-content.active {
	display: block;
	opacity: 1;
}

.no-tabs-message {
	padding: 2rem;
	background: var(--gray-100, #fafafa);
	border-radius: 8px;
	text-align: center;
}

.no-tabs-message p {
	color: var(--gray-600, #525252);
	font-style: italic;
	margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.tab-navigation {
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 20px;
	}

	.tab-nav-container {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.tab-item {
		padding: 12px 20px;
		min-width: auto;
		flex: 1;
	}

	.tab-title {
		font-size: 14px;
		text-align: center;
	}
}

@media (max-width: 576px) {
	.tab-navigation {
		padding-left: 10px;
		padding-right: 10px;
	}

	.tab-nav-container {
		border-bottom: none;
		flex-direction: column;
		gap: 0.5rem;
	}

	.tab-item {
		width: 100%;
		border: 1px solid var(--gray-300, #dadada);
		border-radius: 4px;
		border-bottom: 1px solid var(--gray-300, #dadada);
	}

	.tab-item.active {
		border-bottom: 1px solid var(--primary, #004c6d);
		background: var(--primary-100, #ebf5f7);
	}

	.tab-separator {
		display: none;
	}
}
/* =========================================================
   ================== TABBED LAYOUT END ===================
   ========================================================= */

/* =========================================================
   ===============  MODERN DOWNLOADS TABLE  ================
   ========================================================= */
.downloads-header {
	margin-bottom: 2rem;
	text-align: center;
}

.downloads-header .section-title {
	color: var(--primary);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

.downloads-header .section-description {
	color: var(--text-light);
	font-size: 1rem;
	text-align: center;
}

.modern-table-container {
	background: var(--white);
	overflow: hidden;
}

.modern-downloads-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

/* Table Header */
.modern-downloads-table thead {
	background: var(--primary-100);
}

.modern-downloads-table th {
	padding: 1.2rem 1rem;
	text-align: left;
	font-weight: 600;
	color: var(--primary);
	border-bottom: 2px solid var(--primary-200);
	position: relative;
}

.table-header-sn {
	width: 80px;
	text-align: center;
}

.table-header-title {
	width: auto;
	min-width: 200px;
}

.table-header-date {
	width: 140px;
}

.table-header-action {
	width: 140px;
	text-align: center;
}

/* Table Body */
.modern-downloads-table tbody tr {
	transition: all 0.2s ease;
	border-bottom: 1px solid var(--gray-700);
}

.modern-downloads-table tbody tr:nth-child(odd) {
	background: var(--gray-100);
}

.modern-downloads-table tbody tr:nth-child(even) {
	background: var(--gray-200);
}

.modern-downloads-table tbody tr:hover {
	filter: brightness(0.95);
	transition: filter 0.2s ease;
}

.modern-downloads-table tbody tr:last-child {
	border-bottom: 1px solid var(--gray-700);
}

.modern-downloads-table td {
	padding: 1.1rem 0.75rem;
	vertical-align: middle;
}

/* Table Cells */
.table-cell-sn {
	text-align: center;
}

.table-cell-title .download-title {
	color: var(--text-dark);
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.4;
	display: block;
}

.table-cell-date .download-date {
	color: var(--text-light);
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.table-cell-date .download-date i {
	color: var(--primary-400);
	font-size: 0.8rem;
}

.table-cell-action {
	text-align: center;
}

.modern-download-btn {
	background: var(--primary);
	color: var(--white);
	padding: 0.4rem 0.8rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	white-space: nowrap;
	border: none;
	cursor: pointer;
}

.modern-download-btn:hover {
	background: var(--primary-600);
	color: var(--white);
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 76, 109, 0.2);
}

.modern-download-btn i {
	font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.downloads-header .section-title {
		font-size: 1.75rem;
	}

	.modern-table-container {
		border-radius: 8px;
	}

	.modern-downloads-table {
		font-size: 0.9rem;
	}

	.modern-downloads-table th,
	.modern-downloads-table td {
		padding: 0.8rem 0.6rem;
	}

	.table-header-sn,
	.table-cell-sn {
		display: none;
	}

	.table-header-date,
	.table-cell-date {
		width: 120px;
	}

	.table-cell-date .download-date {
		font-size: 0.85rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.2rem;
	}

	.modern-download-btn {
		padding: 0.3rem 0.7rem;
		font-size: 0.85rem;
	}
}

@media (max-width: 576px) {
	.downloads-header .section-title {
		font-size: 1.5rem;
	}

	.modern-downloads-table th,
	.modern-downloads-table td {
		padding: 0.6rem 0.4rem;
	}

	.table-header-date,
	.table-cell-date {
		display: none;
	}

	.table-cell-title .download-title {
		font-size: 0.9rem;
	}

	.modern-download-btn {
		padding: 0.3rem 0.6rem;
		font-size: 0.8rem;
	}

	.modern-download-btn span {
		display: none;
	}

	.modern-download-btn i {
		margin: 0;
	}
}

/* DataTables Styling */
.dataTables_wrapper {
	margin-top: 1rem;
}

.dataTables_length,
.dataTables_filter {
	margin-bottom: 1rem;
}

.dataTables_filter {
	text-align: right;
	float: right;
}

.dataTables_length {
	text-align: left;
	float: left;
}

.dataTables_length label,
.dataTables_filter label {
	color: var(--text-dark);
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
}

.dataTables_length select {
	border: 1px solid var(--border-color) !important;
	border-radius: 6px !important;
	padding: 0.4rem 0.6rem !important;
	font-size: 0.9rem !important;
	background: var(--white) !important;
	color: var(--text-dark) !important;
	box-shadow: none !important;
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
	background-position: right 0.5rem center !important;
	background-repeat: no-repeat !important;
	background-size: 1.5em 1.5em !important;
	padding-right: 2.5rem !important;
	min-width: 80px;
}

.dataTables_filter input {
	border: 1px solid var(--border-color) !important;
	border-radius: 6px !important;
	padding: 0.4rem 0.8rem !important;
	font-size: 0.9rem !important;
	background: var(--white) !important;
	color: var(--text-dark) !important;
	width: 200px;
	box-shadow: none !important;
}

.dataTables_filter input:focus {
	outline: none !important;
	border-color: var(--primary) !important;
	box-shadow: 0 0 0 2px rgba(0, 76, 109, 0.1) !important;
}

.dataTables_length select:focus {
	outline: none !important;
	border-color: var(--primary) !important;
	box-shadow: 0 0 0 2px rgba(0, 76, 109, 0.1) !important;
}

.dataTables_length select:hover {
	border-color: var(--primary-300) !important;
}

.dataTables_wrapper::after {
	content: "";
	display: table;
	clear: both;
}

.dataTables_info {
	color: var(--gray-500);
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	margin-top: 1rem;
}

.dataTables_paginate {
	margin-top: 1rem !important;
	text-align: center;
}

.dataTables_paginate .pagination {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
	border: none;
}

.dataTables_paginate .page-item {
	border: none;
	background: none;
}

.dataTables_paginate .page-link {
	display: inline-block;
	padding: 8px 12px;
	background: transparent !important;
	border: none !important;
	color: var(--gray-500, #737373) !important;
	text-decoration: none !important;
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.dataTables_paginate .page-link:hover {
	background: transparent !important;
	color: var(--primary, #004c6d) !important;
	text-decoration: underline !important;
	border: none !important;
	box-shadow: none !important;
}

.dataTables_paginate .page-item.active .page-link {
	background: transparent !important;
	color: var(--primary, #004c6d) !important;
	font-weight: 600;
	border: none !important;
	box-shadow: none !important;
}

.dataTables_paginate .page-item.disabled .page-link {
	background: transparent !important;
	color: var(--gray-400, #a3a3a3) !important;
	cursor: not-allowed;
	border: none !important;
	box-shadow: none !important;
	opacity: 0.6;
	font-weight: 400;
}

.dataTables_paginate .page-item.disabled .page-link:hover {
	background: transparent !important;
	color: var(--gray-400, #a3a3a3) !important;
	cursor: not-allowed;
	opacity: 0.6;
}

.dataTables_paginate .page-item.previous .page-link,
.dataTables_paginate .page-item.next .page-link {
	color: var(--primary, #004c6d) !important;
	font-weight: 600;
}

.dataTables_paginate .page-item.previous.disabled .page-link,
.dataTables_paginate .page-item.next.disabled .page-link {
	color: var(--gray-400, #a3a3a3) !important;
	font-weight: 400;
	opacity: 0.6;
}

/* Responsive DataTables */
@media (max-width: 768px) {
	.dataTables_length,
	.dataTables_filter {
		text-align: center;
		margin-bottom: 0.75rem;
		float: none;
		width: 100%;
	}

	.dataTables_filter input {
		width: 150px !important;
	}

	.dataTables_paginate .pagination {
		gap: 4px;
	}

	.dataTables_paginate .page-link {
		padding: 6px 10px !important;
		font-size: 14px !important;
	}
}

@media (max-width: 576px) {
	.dataTables_paginate .pagination {
		gap: 2px;
	}

	.dataTables_paginate .page-link {
		padding: 4px 8px !important;
		font-size: 14px !important;
	}
}

/* =========================================================
   ============== MODERN DOWNLOADS TABLE END ==============
   ========================================================= */

/* =========================================================
   ================= LIQUID BUTTON STYLES =================
   ========================================================= */
.btn-liquid-outline {
	background: transparent;
	padding: 8px 16px;
	color: var(--white, #ffffff);
	border: 2px solid var(--white, #ffffff);
	position: relative;
	overflow: hidden;
	border-radius: 0;
	font-size: "16px";
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease;
	z-index: 1;
}

.btn-liquid-outline::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white, #ffffff);
	z-index: -1;
	transform: translateX(-100%);
	transition: transform 0.3s ease-out;
}

.btn-liquid-outline:hover {
	color: var(--primary, #004c6d);
	text-decoration: none;
}

.btn-liquid-outline:hover::before {
	transform: translateX(0);
}

.btn-liquid-outline:hover .bi-arrow-right {
	transform: translateX(3px);
}

.btn-liquid-outline .bi-arrow-right {
	transition: transform 0.3s ease;
}

.btn-liquid-white {
	background: transparent;
	color: var(--primary, #004c6d);
	border: 2px solid var(--primary, #004c6d);
}

.btn-liquid-white::before {
	background: var(--primary, #004c6d);
}

.btn-liquid-white:hover {
	color: var(--white, #ffffff);
}
/* =========================================================
   =============== LIQUID BUTTON STYLES END ===============
   ========================================================= */

/* =========================================================
   ================= CUSTOM BUTTON STYLES =================
   ========================================================= */
/* .btn-custom {
	position: relative;
	padding: 12px 24px;
	border: none;
	outline: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	text-decoration: none;
}

.btn-custom:hover {
	text-decoration: none;
}

.btn-custom:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 76, 109, 0.2);
} */
/* =========================================================
   =============== CUSTOM BUTTON STYLES END ===============
   ========================================================= */

/* =========================================================
   ================= SEARCH RESULTS STYLES ================
   ========================================================= */
.search-results-section {
	background: var(--white);
}

.search-result-summary {
	background: var(--primary-100);
	border: 1px solid var(--primary-200);
	border-radius: 6px;
	padding: 0.75rem 1rem;
	margin-top: 0.5rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.search-result-summary p {
	margin: 0;
	color: var(--primary);
	font-weight: 500;
	font-size: 0.95rem;
}

.search-results-list {
	margin-bottom: 2rem;
}

.search-result-item {
	background: var(--white);
	border: 1px solid var(--gray-300);
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.search-result-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.search-result-item:last-child {
	margin-bottom: 0;
}

.result-title {
	margin: 0 0 0.75rem 0;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
}

.result-title a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.result-title a:hover {
	color: var(--primary-700);
	text-decoration: underline;
}

.result-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.75rem;
}

.result-meta .badge {
	background: var(--primary-100);
	color: var(--primary);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
	border: none;
}

.result-meta .post-date {
	display: none; /* Hide date as requested */
}

.result-excerpt {
	color: var(--gray-600);
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
}

.result-excerpt p {
	margin: 0;
}

/* No Results Styling */
.no-search-results {
	text-align: center;
	padding: 3rem 1rem;
}

.no-results-content {
	max-width: 600px;
	margin: 0 auto;
}

.no-results-content p {
	color: var(--gray-600);
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.search-form-container {
	margin: 2rem 0;
}

.search-suggestions h3 {
	color: var(--primary);
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.search-suggestions ul {
	list-style: none;
	padding: 0;
	text-align: left;
	display: inline-block;
}

.search-suggestions li {
	color: var(--gray-600);
	padding: 0.5rem 0;
	position: relative;
	padding-left: 1.5rem;
}

.search-suggestions li::before {
	content: "•";
	color: var(--primary);
	font-weight: bold;
	position: absolute;
	left: 0;
}

/* Debug Info Styling */
.debug-info {
	background: var(--gray-100) !important;
	border: 1px solid var(--gray-300) !important;
	border-radius: 8px !important;
	padding: 1rem !important;
	margin: 1rem 0 !important;
}

.debug-info h4 {
	color: var(--primary);
	margin-bottom: 0.75rem;
	font-size: 1rem;
}

.debug-info p {
	margin: 0.25rem 0;
	font-size: 0.9rem;
	color: var(--gray-600);
}

.debug-info ul {
	margin: 0.5rem 0;
	padding-left: 1.5rem;
}

.debug-info li {
	font-size: 0.9rem;
	color: var(--gray-600);
	margin: 0.25rem 0;
}

/* Search Pagination Styling */
.posts-pagination {
	margin: 2rem 0;
	text-align: center;
}

.posts-pagination .nav-links {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.posts-pagination .page-numbers {
	display: inline-block;
	padding: 0.75rem 1rem;
	text-decoration: none;
	background: var(--white);
	border: 1px solid var(--gray-300);
	color: var(--gray-600);
	font-size: 0.95rem;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	border-radius: 6px;
	min-width: 44px;
	text-align: center;
}

.posts-pagination .page-numbers:hover {
	background: var(--primary-100);
	color: var(--primary);
	border-color: var(--primary-300);
	text-decoration: none;
}

.posts-pagination .page-numbers.current {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
	font-weight: 600;
}

.posts-pagination .page-numbers.current:hover {
	background: var(--primary-700);
	border-color: var(--primary-700);
}

.posts-pagination .next.page-numbers,
.posts-pagination .prev.page-numbers {
	font-weight: 600;
	padding: 0.75rem 1.25rem;
}

.posts-pagination .next.page-numbers:hover,
.posts-pagination .prev.page-numbers:hover {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

.posts-pagination .dots {
	display: inline-block;
	padding: 0.75rem 1rem;
	color: var(--gray-400);
	font-weight: 600;
	cursor: default;
}

/* Responsive Search Results */
@media (max-width: 768px) {
	.search-result-item {
		padding: 1.25rem;
		margin-bottom: 0.75rem;
	}

	.result-title {
		font-size: 1.1rem;
	}

	.result-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.posts-pagination .page-numbers {
		padding: 0.6rem 0.8rem;
		font-size: 0.9rem;
		min-width: 40px;
	}

	.posts-pagination .next.page-numbers,
	.posts-pagination .prev.page-numbers {
		padding: 0.6rem 1rem;
	}
}

@media (max-width: 576px) {
	.search-result-item {
		padding: 1rem;
	}

	.result-title {
		font-size: 1rem;
	}

	.result-excerpt {
		font-size: 0.9rem;
	}

	.posts-pagination .nav-links {
		gap: 0.25rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.posts-pagination .page-numbers {
		padding: 0.5rem 0.7rem;
		font-size: 0.85rem;
		min-width: 36px;
	}

	.posts-pagination .next.page-numbers,
	.posts-pagination .prev.page-numbers {
		padding: 0.5rem 0.9rem;
	}
}
/* =========================================================
   =============== SEARCH RESULTS STYLES END ==============
   ========================================================= */

/* =========================================================
   =============== MENU SIDEBAR OVERLAY STYLES ============
   ========================================================= */
.menu-sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.menu-sidebar-overlay.active {
	opacity: 1;
	visibility: visible;
}

.menu-sidebar {
	position: absolute;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100vh;
	background: var(--white);
	box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	overflow-y: auto;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
}

.menu-sidebar-overlay.active .menu-sidebar {
	right: 0;
}

.menu-sidebar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	border-bottom: 1px solid var(--gray-300);
	background: var(--primary);
}

.menu-close-btn {
	background: none;
	border: none;
	font-size: 24px;
	color: var(--white);
	cursor: pointer;
	padding: 8px;
	border-radius: 4px;
	transition: background 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-close-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

.menu-title {
	color: var(--white);
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.menu-sidebar-content {
	padding: 20px;
	flex: 1;
	overflow-y: auto;
}

.menu-section {
	margin-bottom: 24px;
}

.menu-section-title {
	color: var(--primary-700);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--primary-100);
}

.menu-items {
	display: flex;
	flex-direction: column;
}

.sidebar-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-menu-list li {
	margin: 0;
}

.sidebar-menu-list a {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	color: var(--gray-700);
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.3s ease;
	font-weight: 500;
	margin-bottom: 4px;
}

.sidebar-menu-list a:hover {
	background: var(--primary-100);
	color: var(--primary);
	text-decoration: none;
}

.sidebar-menu-list a i {
	margin-right: 12px;
	font-size: 16px;
	width: 20px;
	text-align: center;
}

/* Menu Item Separators */
.sidebar-menu-list li {
	position: relative;
}

.sidebar-menu-list li:not(:last-child)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 16px;
	right: 16px;
	height: 1px;
	background: var(--gray-300);
	opacity: 0.6;
}

.sidebar-menu-list li:not(:last-child) {
	margin-bottom: 0;
}

/* Search Form in Sidebar */
.search-form-sidebar {
	margin-bottom: 8px;
}

.search-form-sidebar form {
	position: relative;
	margin: 0;
	display: flex;
	width: 100%;
}

.search-form-sidebar input[type="text"] {
	flex: 1;
	padding: 12px 16px;
	font-size: 1.2em;
	border: 2px solid var(--primary);
	border-right: none;
	border-radius: 8px 0 0 8px;
	background: var(--white);
	color: var(--gray-700);
	font-weight: 400;
	transition: all 0.3s ease;
	outline: none;
	height: 48px;
}

.search-form-sidebar input[type="text"]:focus {
	background: #f8f9fa;
	border-color: var(--primary);
	box-shadow: 0 0 0 2px rgba(0, 76, 109, 0.1);
}

.search-form-sidebar input[type="text"]:hover {
	background: #f8f9fa;
}

.search-form-sidebar input[type="text"]::placeholder {
	color: var(--gray-500);
	font-style: italic;
}

.search-form-sidebar button[type="submit"] {
	background: var(--primary);
	border: none;
	border-radius: 0 8px 8px 0;
	width: 60px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--white);
	font-size: 1.2em;
}

.search-form-sidebar button[type="submit"]:hover {
	background: var(--primary-700);
}

.search-form-sidebar button[type="submit"] i {
	margin: 0;
	width: auto;
}

/* Responsive Search Form Adjustments */
@media (max-width: 480px) {
	.search-form-sidebar input[type="text"] {
		padding: 10px 12px;
		font-size: 1em;
		height: 40px;
	}
	
	.search-form-sidebar button[type="submit"] {
		width: 50px;
		height: 40px;
		font-size: 1em;
	}
}

@media (max-width: 360px) {
	.search-form-sidebar input[type="text"] {
		padding: 8px 10px;
		font-size: 0.9em;
		height: 36px;
	}
	
	.search-form-sidebar button[type="submit"] {
		width: 45px;
		height: 36px;
		font-size: 0.9em;
	}
}

/* Collapsible Navigation Styles */
.collapsible-nav {
	width: 100%;
}

.nav-parent-item {
	border-bottom: 1px solid var(--gray-300);
	margin-bottom: 4px;
}

.nav-parent-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	background: var(--primary);
	color: var(--white);
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 16px;
}

.nav-parent-header:hover {
	background: var(--primary-600);
}

.nav-parent-header .toggle-icon {
	font-size: 14px;
	transition: transform 0.3s ease;
}

.nav-parent-header.active .toggle-icon {
	transform: rotate(180deg);
}

.nav-submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background: var(--gray-100);
}

.nav-submenu.active {
	max-height: 500px;
	transition: max-height 0.5s ease-in;
}

.nav-submenu .sidebar-menu-list {
	padding: 8px 0;
}

.nav-submenu .sidebar-menu-list li {
	border-bottom: 1px solid var(--gray-300);
}

.nav-submenu .sidebar-menu-list li:last-child {
	border-bottom: none;
}

.nav-submenu .sidebar-menu-list a {
	padding: 12px 24px;
	color: var(--gray-700);
	font-weight: 500;
	font-size: 14px;
	background: transparent;
	border-radius: 0;
	margin-bottom: 0;
}

.nav-submenu .sidebar-menu-list a:hover {
	background: var(--white);
	color: var(--primary);
	padding-left: 32px;
}

/* Override separator styles for submenu items */
.nav-submenu .sidebar-menu-list li::after {
	display: none;
}

/* Nested Submenu Styles */
.has-submenu > .submenu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 24px;
	background: var(--gray-200);
	color: var(--gray-800);
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	font-size: 14px;
	border-bottom: 1px solid var(--gray-300);
}

.has-submenu > .submenu-header:hover {
	background: var(--gray-300);
	color: var(--primary);
}

.has-submenu > .submenu-header .toggle-icon {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.has-submenu > .submenu-header.active .toggle-icon {
	transform: rotate(180deg);
}

/* Nested submenu levels with indentation */
.submenu-level-1 .submenu-header {
	padding-left: 40px;
	background: var(--gray-300);
}

.submenu-level-1 a {
	padding-left: 40px;
}

.submenu-level-2 .submenu-header {
	padding-left: 56px;
	background: var(--gray-400);
}

.submenu-level-2 a {
	padding-left: 56px;
}

.submenu-level-3 .submenu-header {
	padding-left: 72px;
	background: var(--gray-500);
	color: var(--white);
}

.submenu-level-3 a {
	padding-left: 72px;
}

/* Nested submenu containers */
.has-submenu .nav-submenu {
	background: transparent;
}

/* Simple navigation items without children */
.nav-parent-item.simple-item {
	border-bottom: 1px solid var(--gray-300);
	margin-bottom: 4px;
}

.nav-parent-item.simple-item .nav-parent-link {
	display: flex;
	align-items: center;
	padding: 16px;
	background: var(--primary);
	color: var(--white);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 16px;
}

.nav-parent-item.simple-item .nav-parent-link:hover {
	background: var(--primary-600);
	color: var(--white);
	text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
	.menu-sidebar {
		width: 320px;
		right: -320px;
	}
}

@media (max-width: 360px) {
	.menu-sidebar {
		width: 280px;
		right: -280px;
	}
	
	.menu-sidebar-header {
		padding: 16px 20px;
	}
	
	.menu-sidebar-content {
		padding: 16px;
	}
}
/* =========================================================
   ============= MENU SIDEBAR OVERLAY STYLES END ==========
   ========================================================= */

/* =========================================================
   ================= READ MORE BUTTON STYLES ==============
   ========================================================= */
.btn-readmore {
	text-decoration: none;
	color: var(--primary, #004c6d);
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 16px;
	font-family: Roboto;
	font-weight: 700;
	position: relative;
	transition: all 0.2s ease-out;
	overflow: hidden;
}

.btn-readmore::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary, #004c6d);
	transition: width 0.2s ease-out;
}

.btn-readmore:hover {
	color: var(--primary-700, #003252);
	text-decoration: none;
}

.btn-readmore:hover::before {
	width: 100%;
}

.btn-readmore img {
	transition: transform 0.2s ease-out;
	width: 14px;
	height: 14px;
}

.btn-readmore:hover img {
	transform: translateX(3px);
}

.btn-readmore-text {
	color: inherit;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	word-wrap: break-word;
	transition: color 0.2s ease;
}

/* White variant for dark backgrounds */
.btn-readmore-white {
	color: white;
}

.btn-readmore-white::before {
	background: white;
}

.btn-readmore-white:hover {
	color: rgba(255, 255, 255, 0.8);
}

.btn-readmore-white i {
	color: white;
}

.btn-readmore-white:hover i {
	color: rgba(255, 255, 255, 0.8);
}
/* =========================================================
   =============== READ MORE BUTTON STYLES END ============
   ========================================================= */

/* =========================================================
   =================== HEADER TOP STYLES ==================
   ========================================================= */

/* Fix header positioning to always stay at top */
#navbar_top {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 10 !important;
	width: 100% !important;
	transform: none !important;
	transition: none !important;
}

/* Ensure header wrapper takes full width */
#navbar_top .header-wrap {
	width: 100% !important;
}

/* Override any fixed-top class behavior */
#navbar_top.fixed-top {
	position: fixed !important;
	top: 0 !important;
	transform: none !important;
	transition: none !important;
}

/* Add top padding to body to compensate for fixed header */
body {
	padding-top: 70px !important; /* Default for mobile and tablet */
	line-height: normal;
}

/* Large screens and above get more padding
@media (min-width: 992px) {
	body {
		padding-top: 100px !important;
	}
} */



.header-top {
	background-color: #004c6d;
	height: 42px;
}

.top-nav {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}

.h-links {
	display: flex;
	align-items: center;
}

.h-links-nav {
	display: flex;
	height: 42px;
}

.h-links-nav li {
	height: 100%;
	display: flex;
	align-items: center;
	border-bottom: none;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	height: 100%;
	line-height: 42px;
	letter-spacing: normal;
	padding: 0;
	text-decoration: none;
	transition: all 0.1s ease;
	text-transform: none;
	cursor: pointer;
}

.h-links-nav li a {
	color: #fff;
	padding: 0 16px;
	display: block;
	height: 100%;
	display: flex;
	align-items: center;
	text-transform: capitalize;
}

.h-links-nav li:hover {
	background-color: white;
}
.h-links-nav li:hover a {
	color: var(--primary, #004c6d);
	text-decoration: none;
}

.h-links-action {
	display: flex;
	height: 42px;
}

.h-links-action li {
	height: 100%;
	display: flex;
	align-items: center;
	border-bottom: none;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 42px;
	letter-spacing: normal;
	padding: 0;
	text-decoration: none;
	text-transform: none;
	transition: all 0.1s ease;
}

.h-links-action .action-button {
	background-color: var(--primary-100, #ebf5f7);
	color: var(--primary, #004c6d) !important;
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	padding: 0 16px;
	line-height: 42px;
	text-decoration: none;
	transition: all 0.1s ease;
	height: 42px;
	box-sizing: border-box;
}

.h-links-action .action-button i {
	color: var(--primary, #004c6d);
	font-size: 16px;
	margin-right: 6px;
}

.h-links-action .action-button:hover {
	background-color: white;
	color: var(--primary, #004c6d) !important;
	text-decoration: none !important;
}

.h-links-action .action-button:hover i {
	color: var(--primary, #004c6d);
}

/* Menu Toggle Button Styling */
.nav-menu-btn {
	background: var(--primary) !important;
	height: 42px !important;
	border-radius: 42px !important;
	padding: 12px 16px !important;
	color: var(--white) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-decoration: none !important;
	transition: all 0.3s ease !important;
	border: none !important;
	cursor: pointer !important;
	font-family: inherit !important;
	font-size: inherit !important;
	margin-left: 16px;
}

.nav-menu-btn:hover {
	background: var(--primary-600) !important;
	color: var(--white) !important;
	text-decoration: none !important;
}

.nav-menu-btn i {
	margin-right: 8px !important;
	font-size: 16px !important;
}

.s-icon i {
	font-size: 16px;
}

.openBtn {
	background: initial;
	border: none;
	cursor: pointer;
}
/* =========================================================
   ================= HEADER TOP STYLES END ===============
   ========================================================= */


/* =========================================================
   =============== CONTACT FORM STYLING START =============
   ========================================================= */
/* Contact Form Wrapper Styling */
.contact-form-wrapper {
	background: var(--white, #ffffff);
	padding: 32px;
	border: 1px solid var(--gray-300, #dadada);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	border-radius: 0;
	transition: box-shadow 0.3s ease;
}

.contact-form-wrapper:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Contact Form 7 Custom Styling - Scoped to contact-form-wrapper */
.contact-form-wrapper .wpcf7-form {
	margin-top: 20px;
}

.contact-form-wrapper .wpcf7-form p {
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
}

.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form textarea {
	width: 100% !important;
	padding: 12px 16px !important;
	border: 1px solid var(--gray-300, #dadada) !important;
	border-radius: 0 !important;
	margin-top: 16px !important;
	font-size: 14px !important;
	font-family: inherit !important;
	background: var(--white, #ffffff) !important;
	transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
	box-shadow: none !important;
	color: var(--text-dark, #4a4646) !important;
}

.contact-form-wrapper .wpcf7-form input[type="text"]:focus,
.contact-form-wrapper .wpcf7-form input[type="email"]:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
	outline: none !important;
	border-color: var(--primary, #004c6d) !important;
	box-shadow: 0 0 0 2px rgba(0, 76, 109, 0.1) !important;
}

.contact-form-wrapper .wpcf7-form input[type="text"]:hover,
.contact-form-wrapper .wpcf7-form input[type="email"]:hover,
.contact-form-wrapper .wpcf7-form textarea:hover {
	border-color: var(--primary-300, #76b3c4) !important;
}

.contact-form-wrapper .wpcf7-form input[type="submit"] {
	background: var(--primary, #004c6d) !important;
	color: var(--white, #ffffff) !important;
	padding: 14px 32px !important;
	border: none !important;
	border-radius: 0 !important;
	cursor: pointer !important;
	margin-top: 24px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	transition: all 0.3s ease !important;
	display: inline-block !important;
	min-width: 160px !important;
}

.contact-form-wrapper .wpcf7-form input[type="submit"]:hover {
	background: var(--primary-700, #003252) !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 4px 12px rgba(0, 76, 109, 0.3) !important;
}

.contact-form-wrapper .wpcf7-form input[type="submit"]:active {
	transform: translateY(0) !important;
}

/* Two column layout for name fields */
.contact-form-wrapper .wpcf7-form .name-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.contact-form-wrapper .wpcf7-form .name-row > p {
	flex: 1;
	min-width: 200px;
}

/* Validation messages */
.contact-form-wrapper .wpcf7-not-valid-tip {
	color: #dc3545 !important;
	font-size: 12px !important;
	margin-top: 4px !important;
	display: block !important;
}

.contact-form-wrapper .wpcf7-form input.wpcf7-not-valid,
.contact-form-wrapper .wpcf7-form textarea.wpcf7-not-valid {
	border-color: #dc3545 !important;
	box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
}

/* Response messages */
.contact-form-wrapper .wpcf7-response-output {
	margin: 20px 0 0 0 !important;
	padding: 12px 16px !important;
	border-radius: 4px !important;
	font-size: 14px !important;
	font-weight: 500 !important;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
	background: #d4edda !important;
	color: #155724 !important;
	border: 1px solid #c3e6cb !important;
}

.contact-form-wrapper .wpcf7-validation-errors {
	background: #f8d7da !important;
	color: #721c24 !important;
	border: 1px solid #f5c6cb !important;
}

.contact-form-wrapper .wpcf7-mail-sent-ng {
	background: #f8d7da !important;
	color: #721c24 !important;
	border: 1px solid #f5c6cb !important;
}

/* Loading spinner */
.contact-form-wrapper .wpcf7-spinner {
	margin-left: 10px !important;
}

/* Textarea specific styling */
.contact-form-wrapper .wpcf7-form textarea {
	min-height: 120px !important;
	resize: vertical !important;
}

/* Remove default form styling conflicts */
.contact-form-wrapper .wpcf7-form br {
	display: none !important;
}

.contact-form-wrapper .wpcf7-form label {
	display: none !important;
}

/* Title and description styling within contact form wrapper */
.contact-form-wrapper .title-widget h6 {
	color: var(--primary-700, #003252);
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
}

.contact-form-wrapper .text-muted {
	color: var(--gray-500, #737373) !important;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.contact-form-wrapper {
		padding: 24px 20px;
	}

	.contact-form-wrapper .wpcf7-form .name-row {
		flex-direction: column;
		gap: 0;
	}

	.contact-form-wrapper .wpcf7-form .name-row > p {
		min-width: 100%;
	}

	.contact-form-wrapper .wpcf7-form input[type="submit"] {
		width: 100% !important;
	}

	.contact-form-wrapper .title-widget h6 {
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.contact-form-wrapper {
		padding: 20px 16px;
	}
}
/* =========================================================
   ================ CONTACT FORM STYLING END ==============
   ========================================================= */

/* =========================================================
   ================= ADVANCE SLIDER STYLES ================
   ========================================================= */
.Advance-Slider {
	position: relative;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.Advance-Slider .img-fill {
	position: relative;
	height: 100%;
	width: 100%;
}

.Advance-Slider .item {
	overflow: hidden;
	outline: none;
}

.Advance-Slider .img-fill:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.3));
}

.Advance-Slider ul.slick-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
}

.Advance-Slider ul.slick-dots li {
	display: inline-block;
	height: auto;
	padding: 0 5px;
	line-height: 0px;
}

.Advance-Slider ul.slick-dots li button {
	height: 15px;
	width: 15px;
	border-radius: 100%;
	background: #fff;
	border: none;
	font-size: 0px;
	padding: 0px;
	opacity: 0.5;
	outline: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.Advance-Slider ul.slick-dots li.slick-active button {
	opacity: 1;
}

.Advance-Slider .item .info {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	z-index: 1;
}

.Advance-Slider .item {
	color: #fff;
}

.Advance-Slider .item h3 {
	margin: 0px;
	color: #fff;
	font-size: 2.8125em;
	font-weight: 800;
	text-transform: capitalize;
}

.Advance-Slider .item .contain-wrapper .info {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.Advance-Slider .item h3 {
	animation: fadeOutRight 1s both;
}

.Advance-Slider .item.slick-active h3 {
	animation: fadeInDown 1s both 1s;
}

/* Full Height Arrow Styles */
.slick-custom-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	height: 100% !important;
	z-index: 2;
	cursor: pointer;
	border: none;
	outline: none;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	font-size: 24px;
	color: white;
}

.slick-custom-arrow:hover {
	color: rgba(255, 255, 255, 0.9);
}

.slick-custom-arrow-left {
	left: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
	justify-content: flex-start;
	padding-left: 20px;
}

.slick-custom-arrow-left:hover {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
}

.slick-custom-arrow-right {
	right: 0;
	background: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
	justify-content: flex-end;
	padding-right: 20px;
}

.slick-custom-arrow-right:hover {
	background: linear-gradient(to left, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
}

.slick-custom-arrow i {
	font-size: 24px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
	.Advance-Slider .item h3 {
		font-size: 1.5em;
	}

	.slick-custom-arrow {
		width: 60px;
	}

	.slick-custom-arrow-left {
		padding-left: 15px;
	}

	.slick-custom-arrow-right {
		padding-right: 15px;
	}

	.slick-custom-arrow i {
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.slick-custom-arrow {
		width: 50px;
	}

	.slick-custom-arrow-left {
		padding-left: 10px;
	}

	.slick-custom-arrow-right {
		padding-right: 10px;
	}

	.slick-custom-arrow i {
		font-size: 18px;
	}
}
/* =========================================================
   ================ ADVANCE SLIDER STYLES END =============
   ========================================================= */

/* for  bottom floating buttons */
#goToTopBtn {
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	border: 1px solid var(--primary-600);
	outline: none;
	background: var(--primary);
	color: white;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 18px;
	width: 48px;
	height: 48px;
	display: none;
	transition: all 0.3s ease;
}

#goToTopBtn:hover {
	background-color: var(--primary-700);
}

/* Chat Widget */
.chat-widget {
	position: fixed;
	bottom: 20px;
	left: 30px;
	z-index: 99;
	display: flex;
	gap: 12px;
	flex-direction: column-reverse;
	align-items: flex-start;
}

.chat-main-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	color: white;
	border: 1px solid var(--primary-600);
	outline: none;
	cursor: pointer;
	padding: 12px 18px;
	border-radius: 25px;
	font-size: 16px;
	width: auto;
	min-width: 80px;
	height: 48px;
	transition: width 0.3s ease-out, min-width 0.3s ease-out, padding 0.3s ease-out,
		border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
	position: relative;
	overflow: hidden;
}

.chat-main-btn i {
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: 32px;
}

.chat-main-btn:hover {
	background-color: var(--primary-700);
}

.chat-main-btn .chat-text {
	font-size: 16px;
	font-weight: 500;
	margin-left: 8px;
	white-space: nowrap;
	opacity: 1;
	width: auto;
	transition: opacity 0.3s ease, width 0.3s ease, margin-left 0.3s ease;
}

.chat-platforms {
	display: none;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
	transform: translateY(60px);
	opacity: 0;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.chat-platform-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	color: white !important;
	text-decoration: none !important;
	font-size: 18px;
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.1s ease-in-out;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transform: translateY(30px);
	opacity: 0;
}

.chat-platform-btn:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.chat-platform-btn:hover i {
	transform: scale(1.1);
}

.chat-platform-btn i {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white !important;
	font-size: 20px;
	line-height: 1;
}

/* Active state for click functionality */
.chat-widget.chat-active .chat-main-btn .chat-text {
	width: 0;
	opacity: 0;
	margin-left: 0;
}

.chat-widget.chat-active .chat-main-btn {
	width: 48px;
	min-width: 48px;
	border-radius: 24px;
	padding: 12px;
}

.chat-widget.chat-active .chat-icon {
	display: none !important;
}

.chat-widget.chat-active .close-icon {
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.chat-widget.chat-active .chat-platforms {
	display: flex;
	transform: translateY(0);
	opacity: 1;
}

.chat-widget.chat-active .chat-platform-btn {
	transform: translateY(0);
	opacity: 1;
}

.chat-widget.chat-active .chat-platform-btn:nth-child(1) {
	transition-delay: 0.2s;
}

.chat-widget.chat-active .chat-platform-btn:nth-child(2) {
	transition-delay: 0.3s;
}

.chat-widget.chat-active .chat-platform-btn:nth-child(3) {
	transition-delay: 0.4s;
}

.chat-widget.chat-active .chat-platform-btn:nth-child(4) {
	transition-delay: 0.5s;
}

/* Responsive adjustments for chat widget */
@media (max-width: 576px) {
	.chat-widget {
		left: 20px;
		bottom: 15px;
	}

	.chat-main-btn {
		min-width: 75px;
		font-size: 14px;
	}

	.chat-main-btn .chat-text {
		font-size: 15px;
		margin-left: 6px;
	}
}

/* =========================================================
   ================= CTA SECTION STYLES ===================
   ========================================================= */
.section-cta {
	background: var(--primary, #004c6d);
}

.cta-quote-container {
	height: auto;
	width: 100%;
	padding-top: 18px;
	padding-bottom: 18px;
	background: var(--primary, #004c6d);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	display: flex;
	text-align: center;
}

.cta-quote-text {
	color: white;
	font-size: 24px;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	word-wrap: break-word;
	text-shadow: 0px 1px 10px rgba(0, 0, 0, 1);
}

.cta-quote-highlight {
	color: white;
	font-size: 24px;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	word-wrap: break-word;
	text-shadow: 0px 1px 10px rgba(0, 0, 0, 1);
}

.cta-buttons-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	padding-top: 16px;
	padding-bottom: 16px;
	line-height: normal;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.cta-quote-container {
		padding-top: 16px;
		padding-bottom: 16px;
	}
	.cta-quote-text,
	.cta-quote-highlight {
		font-size: 18px;
	}

	.cta-buttons-container {
		gap: 16px;
		padding-top: 12px;
		padding-bottom: 12px;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.cta-quote-container {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.cta-quote-text,
	.cta-quote-highlight {
		font-size: 16px;
	}
}
/* =========================================================
   ================ CTA SECTION STYLES END ================
   ========================================================= */
