:root {
  --primary-color: #ffdb69;
  --secondary-color: #4b3504;
  --bs-border-primary: #ffdb69;
  --bs-border-secondary: #4b3504;
  --text-color: #ffffff;
  --btn-primary-text-color: #111;
  --padding: 0.5rem 1rem;
  --border-radius: 0.25rem;

  --bs-primary: #ffdb69 !important;
  --bs-secondary: #4b3504 !important;
  --bs-text-color: #ffffff !important;
  --bs-btn-primary-text-color: #111 !important;
  --bs-padding: 0.5rem 1rem !important;
  --bs-border-radius: 0.25rem !important; 
/* === Custom Bootstrap Color Utility Overrides START === */

  /* Harmonized Semantic Colors - designed to work with golden-brown theme */
  --bs-success: #2d5016 !important;     /* Earthy Green - complements browns */
  --bs-danger: #8B2635 !important;      /* Warm Burgundy - urgent but warm */
  --bs-warning: #B7791F !important;     /* Rich Amber - perfect harmony */
  --bs-info: #1B4A72 !important;        /* Deep Navy - professional contrast */
  --bs-light: #FAF7F0 !important;       /* Warm Cream - softer than pure white */
  --bs-dark: #2C1810 !important;        /* Rich Espresso - theme consistent */
  
  /* Border colors to match semantic colors */
  --bs-border-success: #2d5016;
  --bs-border-danger: #8B2635;
  --bs-border-warning: #B7791F;
  --bs-border-info: #1B4A72;
  
  /* Text colors to match semantic colors */
  --bs-text-success: #2d5016;
  --bs-text-danger: #8B2635;
  --bs-text-warning: #B7791F;
  --bs-text-info: #1B4A72;
  
  /* Extended palette for advanced theming */
  --primary-tint: #FFF0C7;        /* Light primary variant */
  --primary-shade: #CC9B2A;       /* Dark primary variant */
  --secondary-tint: #8B6B42;      /* Light secondary variant */
  --secondary-shade: #2A1A02;     /* Dark secondary variant */
  --surface-warm: #FBF8F3;        /* Warm background surface */
  --text-muted-warm: #8B7355;     /* Warm muted text */
}
.border-success {
  border-color: var(--bs-border-success) !important;
}
.border-danger {
  border-color: var(--bs-border-danger) !important;
}
.border-warning {
  border-color: var(--bs-border-warning) !important;
}
.border-info {
  border-color: var(--bs-border-info) !important;
}

.bg-success {
  background-color: var(--bs-success) !important;
  color: #fff !important;
}
.bg-danger {
  background-color: var(--bs-danger) !important;
  color: #fff !important;
}
.bg-warning {
  background-color: var(--bs-warning) !important;
  color: #111 !important;
}
.bg-info {
  background-color: var(--bs-info) !important;
  color: #fff !important;
}

.text-success {
  color: var(--bs-text-success) !important;
}
.text-danger {
  color: var(--bs-text-danger) !important;
}
.text-warning {
  color: var(--bs-text-warning) !important;
}
.text-info {
  color: var(--bs-text-info) !important;
}

/* === ACCESSIBILITY FIX: Primary Color Context === */
/* Use darker primary shade for better contrast on light backgrounds */
.text-primary-safe {
  color: var(--primary-shade) !important; /* #CC9B2A - 4.5:1 contrast ratio */
}

/* Auto-fix text-primary on light backgrounds */
.bg-white .text-primary,
.bg-light .text-primary,
.card-body .text-primary,
.list-group-item .text-primary,
.alert-light .text-primary,
.table .text-primary {
  color: var(--primary-shade) !important;
}

/* Ensure primary text has sufficient contrast on common light backgrounds */
.bg-body .text-primary,
.bg-body-secondary .text-primary,
.bg-body-tertiary .text-primary {
  color: var(--primary-shade) !important;
}

/* Override for dark backgrounds where original primary is fine */
.bg-dark .text-primary,
.bg-secondary .text-primary,
.bg-primary .text-primary,
.navbar-dark .text-primary {
  color: var(--bs-primary) !important;
}

.btn {
  color: var(--text-color);
  padding: var(--padding);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-btn-primary-text-color, #111) !important;
}

.btn-outline-primary {
  background-color: transparent !important;
  color: var(--primary-shade) !important; /* Use darker shade for better contrast */
  border: 1px solid var(--primary-shade) !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary-shade) !important;
  border-color: var(--primary-shade) !important;
  color: #ffffff !important; /* White text on dark background */
}
.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 219, 105, 0.5) !important;
}
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: var(--btn-primary-text-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 219, 105, 0.5) !important;
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
  color: var(--bs-btn-secondary-text-color, #fff) !important;

}

.btn-outline-secondary {
  background-color: transparent !important;
  color: var(--bs-secondary) !important;
  border: 1px solid var(--bs-secondary) !important;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background-color: var(--bs-secondary) !important;
  color: #ffffff !important;
  border-color: var(--bs-secondary) !important;
}
.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(75, 53, 4, 0.5) !important;
}
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active {
  background-color: var(--bs-secondary) !important;
  border-color: var(--bs-secondary) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(75, 53, 4, 0.5) !important;
}

.text-primary {
  color: var(--bs-primary) !important;
}


.text-secondary {
  color: var(--bs-secondary) !important;
}

.border-primary {
  border-color: var(--bs-border-primary) !important;
}

.border-secondary {
  border-color: var(--bs-border-secondary) !important;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  color: var(--btn-primary-text-color) !important;
  border: 1px solid var(--primary-color) !important;
}
.btn-primary:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #ffffff !important;
}
.btn-primary:focus,
.btn-primary.focus {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--btn-primary-text-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 219, 105, 0.5) !important;
}
.btn-primary:active,
.btn-primary.active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(75, 53, 4, 0.5) !important;
}

.btn-secondary {
  background-color: var(--secondary-color) !important;
  color: #ffffff !important;
  border: 1px solid var(--secondary-color) !important;
}
.btn-secondary:hover {
  background-color: var(--primary-color) !important;
  color: var(--btn-primary-text-color) !important;
  border-color: var(--primary-color) !important;
}
.btn-secondary:focus,
.btn-secondary.focus {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(75, 53, 4, 0.5) !important;
}
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--btn-primary-text-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 219, 105, 0.5) !important;
}

/* === Complete Button Overrides === */
.btn-success {
  background-color: var(--bs-success) !important;
  color: #ffffff !important;
  border: 1px solid var(--bs-success) !important;
}
.btn-success:hover,
.btn-success:focus {
  background-color: #1e3409 !important;  /* Darker shade of harmonized green */
  border-color: #1e3409 !important;
  color: #ffffff !important;
}

.btn-danger {
  background-color: var(--bs-danger) !important;
  color: #ffffff !important;
  border: 1px solid var(--bs-danger) !important;
}
.btn-danger:hover,
.btn-danger:focus {
  background-color: #6d1e2a !important;  /* Darker shade of harmonized burgundy */
  border-color: #6d1e2a !important;
  color: #ffffff !important;
}

.btn-warning {
  background-color: var(--bs-warning) !important;
  color: #ffffff !important;            /* Changed to white for better contrast */
  border: 1px solid var(--bs-warning) !important;
}
.btn-warning:hover,
.btn-warning:focus {
  background-color: #9d6419 !important;  /* Darker shade of harmonized amber */
  border-color: #9d6419 !important;
  color: #ffffff !important;
}

.btn-info {
  background-color: var(--bs-info) !important;
  color: #ffffff !important;            /* Changed to white for better contrast */
  border: 1px solid var(--bs-info) !important;
}
.btn-info:hover,
.btn-info:focus {
  background-color: #143a5c !important;  /* Darker shade of harmonized navy */
  border-color: #143a5c !important;
  color: #ffffff !important;
}

.btn-light {
  background-color: var(--bs-light) !important;
  color: #2C1810 !important;            /* Use our harmonized dark color for text */
  border: 1px solid var(--bs-light) !important;
}
.btn-light:hover,
.btn-light:focus {
  background-color: #F5F2E8 !important;  /* Slightly darker warm cream */
  border-color: #F5F2E8 !important;
  color: #2C1810 !important;
}

.btn-dark {
  background-color: var(--bs-dark) !important;
  color: #ffffff !important;
  border: 1px solid var(--bs-dark) !important;
}
.btn-dark:hover,
.btn-dark:focus {
  background-color: #1f100a !important;  /* Even darker espresso */
  border-color: #1f100a !important;
  color: #ffffff !important;
}

/* === Outline Button Overrides === */
.btn-outline-success {
  background-color: transparent !important;
  color: var(--bs-success) !important;
  border: 1px solid var(--bs-success) !important;
}
.btn-outline-success:hover,
.btn-outline-success:focus {
  background-color: var(--bs-success) !important;
  border-color: var(--bs-success) !important;
  color: #ffffff !important;
}

.btn-outline-danger {
  background-color: transparent !important;
  color: var(--bs-danger) !important;
  border: 1px solid var(--bs-danger) !important;
}
.btn-outline-danger:hover,
.btn-outline-danger:focus {
  background-color: var(--bs-danger) !important;
  border-color: var(--bs-danger) !important;
  color: #ffffff !important;
}

.btn-outline-warning {
  background-color: transparent !important;
  color: var(--bs-warning) !important;
  border: 1px solid var(--bs-warning) !important;
}
.btn-outline-warning:hover,
.btn-outline-warning:focus {
  background-color: var(--bs-warning) !important;
  border-color: var(--bs-warning) !important;
  color: #111111 !important;
}

.btn-outline-info {
  background-color: transparent !important;
  color: var(--bs-info) !important;
  border: 1px solid var(--bs-info) !important;
}
.btn-outline-info:hover,
.btn-outline-info:focus {
  background-color: var(--bs-info) !important;
  border-color: var(--bs-info) !important;
  color: #111111 !important;
}

.btn-outline-light {
  background-color: transparent !important;
  color: var(--bs-light) !important;
  border: 1px solid var(--bs-light) !important;
}
.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: var(--bs-light) !important;
  border-color: var(--bs-light) !important;
  color: #212529 !important;
}

.btn-outline-dark {
  background-color: transparent !important;
  color: var(--bs-dark) !important;
  border: 1px solid var(--bs-dark) !important;
}
.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background-color: var(--bs-dark) !important;
  border-color: var(--bs-dark) !important;
  color: #ffffff !important;
}

/* === Button States === */
.btn:disabled,
.btn.disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  filter: grayscale(50%) !important;
}

.btn:active,
.btn.active {
  transform: translateY(1px) !important;
}

/* Remove default Bootstrap focus outline - handled by individual button classes */
.btn:focus {
  outline: none !important;
}

/* === Extended Palette Utility Classes === */
.bg-surface-warm {
  background-color: var(--surface-warm) !important;
}

.text-muted-warm {
  color: var(--text-muted-warm) !important;
}

.bg-primary-tint {
  background-color: var(--primary-tint) !important;
  color: var(--bs-secondary) !important;
}

.bg-primary-shade {
  background-color: var(--primary-shade) !important;
  color: #ffffff !important;
}

.text-primary-shade {
  color: var(--primary-shade) !important;
}

.border-primary-tint {
  border-color: var(--primary-tint) !important;
}

/* === Bootstrap Alert Overrides === */
.alert-primary {
  background-color: var(--primary-tint) !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-secondary) !important;
}

.alert-secondary {
  background-color: var(--secondary-tint) !important;
  border-color: var(--bs-secondary) !important;
  color: #ffffff !important;
}

.alert-success {
  background-color: rgba(45, 80, 22, 0.1) !important;
  border-color: var(--bs-success) !important;
  color: var(--bs-success) !important;
}

.alert-danger {
  background-color: rgba(139, 38, 53, 0.1) !important;
  border-color: var(--bs-danger) !important;
  color: var(--bs-danger) !important;
}

.alert-warning {
  background-color: rgba(183, 121, 31, 0.1) !important;
  border-color: var(--bs-warning) !important;
  color: var(--bs-warning) !important;
}

.alert-info {
  background-color: rgba(27, 74, 114, 0.1) !important;
  border-color: var(--bs-info) !important;
  color: var(--bs-info) !important;
}

.alert-light {
  background-color: var(--bs-light) !important;
  border-color: #F5F2E8 !important;
  color: var(--bs-dark) !important;
}

.alert-dark {
  background-color: rgba(44, 24, 16, 0.1) !important;
  border-color: var(--bs-dark) !important;
  color: var(--bs-dark) !important;
}

/* === Bootstrap Progress Bar Overrides === */
.progress {
  background-color: #e9ecef !important;
}

.progress-bar {
  background-color: var(--bs-primary) !important;
}

.progress-bar.bg-primary {
  background-color: var(--bs-primary) !important;
}

.progress-bar.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

.progress-bar.bg-success {
  background-color: var(--bs-success) !important;
}

.progress-bar.bg-danger {
  background-color: var(--bs-danger) !important;
}

.progress-bar.bg-warning {
  background-color: var(--bs-warning) !important;
}

.progress-bar.bg-info {
  background-color: var(--bs-info) !important;
}

/* === Bootstrap Pagination Overrides === */
.page-link {
  color: var(--bs-primary) !important;
  border-color: #dee2e6 !important;
}

.page-link:hover {
  color: var(--bs-secondary) !important;
  background-color: #e9ecef !important;
  border-color: #dee2e6 !important;
}

.page-link:focus {
  color: var(--bs-secondary) !important;
  background-color: #e9ecef !important;
  border-color: var(--bs-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 219, 105, 0.25) !important;
}

.page-item.active .page-link {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-secondary) !important;
}

.page-item.disabled .page-link {
  color: #6c757d !important;
  background-color: #fff !important;
  border-color: #dee2e6 !important;
}

/* === Bootstrap Spinner Overrides === */
.spinner-border.text-primary {
  color: var(--bs-primary) !important;
}

.spinner-border.text-secondary {
  color: var(--bs-secondary) !important;
}

.spinner-border.text-success {
  color: var(--bs-success) !important;
}

.spinner-border.text-danger {
  color: var(--bs-danger) !important;
}

.spinner-border.text-warning {
  color: var(--bs-warning) !important;
}

.spinner-border.text-info {
  color: var(--bs-info) !important;
}

/* === Bootstrap Accordion Overrides === */
.accordion-button {
  background-color: #fff !important;
  border-color: #dee2e6 !important;
  color: var(--bs-secondary) !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-tint) !important;
  color: var(--bs-secondary) !important;
  border-color: var(--bs-primary) !important;
}

.accordion-button:focus {
  border-color: var(--bs-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 219, 105, 0.25) !important;
}

.accordion-button.bg-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-secondary) !important;
  border-color: var(--bs-primary) !important;
}

.accordion-button.bg-secondary {
  background-color: var(--bs-secondary) !important;
  color: #ffffff !important;
  border-color: var(--bs-secondary) !important;
}

/* === Bootstrap Modal Overrides === */
.modal-header.bg-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-secondary) !important;
  border-bottom-color: var(--bs-primary) !important;
}

.modal-header.bg-secondary {
  background-color: var(--bs-secondary) !important;
  color: #ffffff !important;
  border-bottom-color: var(--bs-secondary) !important;
}

/* === Bootstrap Form Validation Overrides === */
.is-valid {
  border-color: var(--bs-success) !important;
}

.is-invalid {
  border-color: var(--bs-danger) !important;
}

.valid-feedback {
  color: var(--bs-success) !important;
}

.invalid-feedback {
  color: var(--bs-danger) !important;
}

.form-control:focus {
  border-color: var(--bs-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 219, 105, 0.25) !important;
}

.form-select:focus {
  border-color: var(--bs-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 219, 105, 0.25) !important;
}

/* === Bootstrap Checkbox & Radio Overrides === */
.form-check-input {
  /* background-color: #fff !important;
  border: 1px solid #ced4da !important; */
}

.form-check-input:checked {
  background-color: var(--bs-secondary) !important;
  border-color: var(--bs-primary) !important;
}

.form-check-input:focus {
  border-color: var(--bs-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 219, 105, 0.25) !important;
}

.form-check-input:checked:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 219, 105, 0.25) !important;
}

.form-check-input:indeterminate {
  /* background-color: var(--bs-primary) !important; */
  /* border-color: var(--bs-secondary) !important; */
}

/* === Bootstrap Switch/Toggle Overrides === */
.form-switch .form-check-input:checked {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-secondary) !important;
}

.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
  border-color: var(--bs-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 219, 105, 0.25) !important;
}

/* === Bootstrap Select Styling === */
.form-select {
  border-color: #ced4da !important;
}

.form-select:focus {
  border-color: var(--bs-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 219, 105, 0.25) !important;
}

.form-select[multiple]:focus,
.form-select[size]:not([size="1"]):focus {
  border-color: var(--bs-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 219, 105, 0.25) !important;
}

/* === Bootstrap Badge Overrides === */
.badge.bg-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-secondary) !important;
}

.badge.bg-secondary {
  background-color: var(--bs-secondary) !important;
  color: #ffffff !important;
}

.badge.bg-success {
  background-color: var(--bs-success) !important;
  color: #ffffff !important;
}

.badge.bg-danger {
  background-color: var(--bs-danger) !important;
  color: #ffffff !important;
}

.badge.bg-warning {
  background-color: var(--bs-warning) !important;
  color: #ffffff !important;
}

.badge.bg-info {
  background-color: var(--bs-info) !important;
  color: #ffffff !important;
}

/* === Custom Bootstrap Color Utility Overrides END === */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 14px;
  background: #fff;
  overflow-x: hidden;
}
img {
  border: 0;
  height: auto;
  /* width: auto; */
  max-width: 100%;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.container {
  position: relative;
  margin: 0 auto;
  display: block;
  max-width: 1310px;
  padding: 0 15px;
}
.body-content-bg {
  background: #f6f3ee;
}
.topbar-section {
  background-color: #fff;
  box-shadow: 0px 1px 4px 0px #d9d9d9;
  position: relative;
  border-bottom: none;
}
.topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.govBranding {
  display: flex;
  align-items: center;
}
.govBranding span {
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.govBranding ul {
  list-style: none;
  display: flex;
}
.govBranding ul li:first-child {
  border-right: 1px solid #c2c0c1;
}
.govBranding ul li a {
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 10px;
  line-height: 35px;
  color: #000;
  height: 35px;
  line-height: 15px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: 0.3s ease all;
}
.govBranding ul li a:hover {
  background-color: #d8d8d8;
}
.topbaright .accessibility-tools-drop {
  left: auto !important;
  right: 0px !important;
  top: 100% !important;
  transform: initial !important;
  background: #fff;
  z-index: 99;
  padding: 10px;
  border: 1px solid #d8d8d8;
  border: none;
  border-radius: 7px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  width: 442px;
}
.topbaright .accessibility-tools-drop ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.topbaright .accessibility-tools-drop ul li {
  border: none;
  position: relative;
}
.topbaright .accessibility-tools-drop ul li button {
  border: 1px solid transparent;
  background: none;
  text-align: center;
  width: 130px;
  height: 80px;
  margin: 5px;
  border-radius: 5px;
  transition: 0.3s linear;
  line-height: normal;
  font-size: 12.6px;
  font-weight: 400;
  padding: 2px 5px;
  color: #000000;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 0px 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.topbaright .accessibility-tools-drop ul li button svg {
  width: 40px;
  height: 40px;
  fill: #000;
}
.topbaright .accessibility-tools-drop li:first-child {
  border: none;
}
.topbaright .accessibility-tools-drop li:last-child {
  border: none;
}
.link-selected::after {
  content: "";
  background: green;
  background-image: url(./img/check1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  position: absolute;
  top: 3px;
  right: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  letter-spacing: 0;
}
.accessibility-tools-drop h5 {
  text-align: center;
  font-size: 15.4px;
  color: #000;
}
.pro-title {
  margin-top: 15px;
  font-size: 14px;
  color: #000;
  margin-left: 7px;
}
.languageCont .accessibility-tools-drop {
  width: auto;
  max-width: 100px;
  min-width: auto !important;
  padding: 0 !important;
  border-radius: 0;
}
.topbaright ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
.topbaright ul li:first-child {
  border-left: 1px solid #c2c0c1;
}
.topbaright ul li {
  border-right: 1px solid #c2c0c1;
}
.topbaright ul li a {
  color: #000;
  padding: 0 10px;
  height: 35px;
  font-weight: 600;
  display: grid;
  align-items: center;
}
.topbaright ul li a img {
  width: 28px;
  height: 24px;
}
.topbaright ul li a:hover {
  background-color: #d8d8d8;
}
/* header style */
.header-wrapper {
  padding: 15px 0;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-lefts .logo a img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px 0 0;
}
.header-lefts .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo_text {
  display: flex;
  flex-direction: column;
  color: #000;
  text-decoration: none !important;
}
.logo_text span {
  font-style: normal;
  font-size: 1.5em;
  margin: 0;
  font-weight: 700;
}
.logo_text strong {
  font-weight: 400;
  display: block;
  font-size: 17px;
  line-height: 18px;
}
.header-rights {
  display: flex;
  align-items: center;
}
.header-right {
  padding: 8px 0;
  display: flex;
  align-items: center;
}
.header-right a {
  display: inline-block;
  vertical-align: middle;
  margin: 0 25px 0 0;
}
.header-right a img {
  max-height: 88px;
}
.header-right a:last-child {
  margin: 0;
}
.header-middle {
  flex: 0 0 45%;
}
/* .menuToggle {
  display: none;
  width: 35px;
  height: 35px;
  font-size: 35px;
  line-height: 42px;
  color: #000;
} */
/* mobile menu style */
/* .mobile-menu {
  width: 100%;
  background: #4b3504;
  transition: 0.3s ease all;
}
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease;
} */
/* #myLinks {
  display: none;
} */
/* .mobile-menu.show {
  transition: max-height 0.7s ease;
  max-height: 800px; 
} */
/* .mobile-menu ul {
  width: 100%;
}
.mobile-menu ul li {
  width: 100%;
}
.mobile-menu ul li > a {
  width: 100%;
  padding: 0 19px;
  line-height: 44px;
  text-decoration: none;
  border-radius: 0 !important;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #fff;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.mobile-menu .dropdown-menu {
  position: initial !important;
  margin: 0 10px;
  transform: translate3d(0px, 0, 0px) !important;
}
.mobile-menu ul li.active > a {
  background-color: #ffdb69;
  border-radius: 50px;
  color: #4b3504;
}
.mobile-menu ul li > a:hover {
  background-color: #ffdb69;
  border-radius: 50px;
  color: #4b3504;
} */
/* search bar */

.header-middle .search-wrapper {
  max-width: 550px;
}
.search-wrapper {
  display: block;
  position: relative;
  margin: 0 0 0 12%;
}
.search-wrapper .input-group {
  width: 100%;
}
.search-wrapper .search-bar {
  width: 100%;
  padding: 10px 5px;
  padding-left: 10px !important;
  padding-right: 40px;
  font-size: 16px;
  border: 1.5px solid #4b3504;
  outline: none;
  border-bottom: 4px solid #dda73a;
  border-radius: 10px 10px 0 0 !important;
  margin: 0;
  height: 51px;
  position: relative;
}

.search-wrapper .search-icon {
  position: absolute;
  right: 20px;
  background: transparent;
  top: 12px;
  border: none;
  outline: none;
}

/* nav bar style */
/* .main-nav {
  width: 100%;
  background-color: #4b3504;
  text-transform: uppercase;
} */
/* .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.right-side-menu {
  color: #ffdb69;
  font-size: 30px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  transition: 0.3s ease all;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.right-side-menu:focus {
  color: #fff;
  background-color: transparent;
  border-color: transparent;
  box-shadow: none !important;
  outline: none;
}
.offcanvas {
  background: #4b3504;
  z-index: 9999;
  max-width: 300px;
  width: 100%;
}
.modal-backdrop {
  background-color: rgb(0 0 0 / 50%);
}
.offcanvas-body {
  padding: 0;
}
.offcanvas-body ul li ul {
  padding: 0 20px;
}
.offcanvas-body ul li a {
  color: #fff;
  padding: 10px 20px;
  display: flex;
  width: 100%;
}
.offcanvas-body ul li a:hover {
  background: rgba(0, 0, 0, 0.4);
}
.btn-close {
  color: #fff;
}
.right-side-menu:hover {
  color: #fff;
} */
/* .main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  line-height: normal;
  flex-wrap: wrap;
} */
/* .dropdown ul {
  display: none;
} */
/* .main-nav ul li {
  padding: 5px 0;
} */
/* .main-nav ul li > a {
  padding: 0 19px;
  font-size: 14px;
  line-height: normal;
  height: 44px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  white-space: nowrap;
}
.main-nav ul li.active > a {
  background-color: #ffdb69;
  border-radius: 50px;
  color: #4b3504;
}
.main-nav ul li > a:hover {
  background-color: #ffdb69;
  border-radius: 50px;
  color: #4b3504;
} */
/* .dropdown-submenu {
  position: relative;
}
.dropdown-menu {
  border: 1px solid #846110;
  border-radius: 0 0 5px 5px;
  background-color: #4b3504;
  padding: 0;
  min-width: 250px !important;
  transform: translate3d(0px, 54px, 0px) !important;
} */
/* .nav-wrap .dropdown-menu li {
  border-bottom: 1px solid #846110;
  margin: 0;
  padding: 4px;
}
.nav-wrap .dropdown-menu li a {
  height: 42px;
  font-size: 12.5px;
}
.nav-link:focus,
.nav-link:hover {
  background-color: #ffdb69;
  border-radius: 50px;
  color: #4b3504;
}
.nav-wrap .dropdown-menu ul li.active > a {
  background-color: #ffdb69;
  border-radius: 50px;
  color: #4b3504;
} */
/* .dropdown-item.active {
  background-color: #ffdb69;
  border-radius: 50px;
  color: #4b3504;
}
.dropdown-submenu .dropdown-menu {
  top: 0 !important;
  left: 100%;
  margin-top: -1px;
  display: none;
  position: absolute;
  transform: translate3d(0px, 0px, 0px) !important;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
} */

.latest-news-wrap {
  background-color: #bad1ce !important; /* keep or slightly darken for more contrast */
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 35px;
  width: 100%;
}

.latest-news-wrap .title {
  padding: 15px 15px 0px 15px;
  color: #212529;
  font-weight: 600;
  font-size: 1.75em;
  letter-spacing: 0.5px;
}

.latest-news {
  background-color: #212529; /* dark gray/black for high contrast */
  color: #fff;
  padding: 4px 10px;
  font-size: 1em;
  font-weight: 600;
  border-radius: 0.75em;
  margin-left: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  display: inline-block;
}

.news-carousel-btn {
  width: 20px;
  height: 20px;
  top: 50%;
  background: #111;
  border-radius: 4px;
  padding: 2px;
}
.news-carousel-btn.carousel-control-next {
  right: 30px;
}
.news-carousel-btn.carousel-control-prev {
  right: 60px;
  left: auto;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 100%;
  height: 100%;
}
.newsticker {
  padding: 15px;
  padding-right: 125px;
  position: relative;
}
.newsticker .carousel,
.carousel-inner {
  position: initial;
}
.newsticker .carousel-item {
  min-height: 52px;
}
.with-urlchange {
  line-height: 22px;
  color: #000;
  display: inline-block;
  margin: 3px;
  color: #000;
}

/* page banner style  */
.banner-wrap {
  padding: 0 15px;
  overflow: hidden;
}
.banner-wrap img {
  width: 100%;
  max-height: 550px;
  height: auto;
  object-fit: contain;
  /* background: radial-gradient(circle, var(--primary-color, #ffdb69) 60%, #fffbe6 100%); */
  background-color: #E0E0E0;
}
.banner-wrap .carousel-btn {
  width: auto;
  opacity: 1;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translate(0, -50%);
  background: rgba(0, 0, 0, 0.8);
  transition: 0.3s ease all;
  border-radius: 4px;
}
.banner-wrap .carousel-btn:hover {
  opacity: 1;
}
.carousel-btn.carousel-control-prev {
  left: -80px;
}
.carousel-btn.carousel-control-next {
  right: -80px;
}
.banner-wrap:hover .carousel-control-prev {
  left: 10px;
}
.banner-wrap:hover .carousel-control-next {
  right: 10px;
}
/* about section style */
.about .about-wrap {
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
}
.about .about-wrap .left {
  padding: 0 15px;
}
/* .about-wrap .left h2 {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  margin-bottom: 12px;
}
.about-wrap .left p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #000;
} */
.read-more {
  border: 1px solid #4b3504 !important;
  color: #4b3504 !important;
  background-color: #ffdb69 !important;
  border-radius: 50px;
  transition: all 0.3s;
  display: inline-block;
  margin: 0;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  padding: 5px 12px;
  font-size: 14px;
  line-height: 1.42857143;
}
.read-more:hover {
  background-color: #4b3504 !important;
  color: #fff !important;
}
.about-wrap .right {
  padding: 20px;
  padding-top: 35px;
  background-color: #ddd39b !important;
}
/* photo gallery style */

.photo-gallery-wrap {
  padding: 35px 25px;
  background: #878d8e;
}
.photo-gallery-wrap h4 {
  font-size: 24.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 17px;
}
.img-content {
  margin-right: 10px;
}
.img-content img {
  min-height: 230px;
  width: 100%;
}
.photo-carousel-wrap {
  overflow: hidden;
  padding: 0 5px;
}
.photoGalleryCarousel-btn {
  opacity: 1;
  width: 35px;
  height: 35px;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.3s ease all;
  border-radius: 4px;
  background-color: #4b3504;
  border-radius: 50%;
  padding: 6px;
}
.photoGalleryCarousel-btn.carousel-control-prev {
  left: -80px;
}
.photoGalleryCarousel-btn.carousel-control-next {
  right: -80px;
}
.photo-carousel-wrap:hover .photoGalleryCarousel-btn.carousel-control-prev {
  left: 10px;
}
.photo-carousel-wrap:hover .photoGalleryCarousel-btn.carousel-control-next {
  right: 10px;
}
.box-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.profile-box {
  flex: 1 1 180px;
  max-width: 220px;
  min-width: 180px;
  background: transparent;
  text-align: center;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.round-icon {
  width: 110px;
  height: 145px;
  border-radius: 10%;
  object-fit: cover;
  display: block;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.name-wrap {
  width: 100%;
  word-break: break-word;
  white-space: normal;
  text-align: center;
  margin-top: 8px;
}
.name-wrap span {
  font-weight: 400;
  display: block;
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 3px;
}
.name-wrap span:first-child {
  font-weight: 600;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 7px 0;
}
.social-icon a img {
  width: 14px;
  height: 14px;
}
.social-icon a img:hover {
  opacity: 0.7;
}
.card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.card-wrap .card {
  background-color: #dbd9d2;
  padding: 35px;
  min-height: 530px;
  border: none;
  border-radius: 0;
}
.card-wrap .card:first-child {
  background-color: #e1e1ea;
}
.card-wrap .card:last-child {
  background-color: #b3cec7;
  padding: 35px 15px;
}
.map iframe {
  width: 100%;
}
.card-wrap .card .title {
  font-size: 21px;
  color: #000;
  font-weight: 600;
  margin-bottom: 12px;
  padding-top: 20px;
}
.helpline-list-box {
  list-style: disc;
  padding-left: 20px;
}
.helpline-list-box li {
  margin-bottom: 5px;
  font-size: 14px;
  color: #000;
  padding: 5px 5px 5px 0;
}
.helpline-list-box li a {
  text-decoration: none;
  color: #000;
}

/* logo Scrollbar style */
.footerScrollbarWrapper {
  width: 100%;
  background: #fff;
  border-top: 1px solid #d8d8d8;
  margin-top: 35px;
}
.footerScrollbarWrapper .container {
  max-width: 1236px;
}
.carousel-item > .row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}
.logo-box {
  text-align: center;
  padding: 15px;
  border-right: 1px solid #d8d8d8;
  width: 200px;
  height: auto;
  padding: 0;
}
.logo-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
@media (max-width: 767.98px) {
  .logo-box img {
    width: 70px;
    height: 70px;
  }
}
.footerScrollbarWrapper #logoCarousel {
  overflow: hidden;
}
.footerScrollbarWrapper .caption {
  min-height: 60px;
  line-height: normal;
}
.logo-carousel-btn {
  opacity: 1;
  width: 35px;
  height: 35px;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.3s ease all;
  border-radius: 4px;
  background-color: #6c5428;
  border-radius: 50%;
  padding: 6px;
}
#logoCarousel:hover .logo-carousel-btn.carousel-control-prev {
  left: 10px;
}
#logoCarousel:hover .logo-carousel-btn.carousel-control-next {
  right: 10px;
}
.logo-carousel-btn.carousel-control-prev {
  left: -80px;
}
.logo-carousel-btn.carousel-control-next {
  right: -80px;
}
.logo-carousel-btn .carousel-control-prev-icon {
  width: 100%;
}
.logo-carousel-btn .carousel-control-next-icon {
  width: 100%;
}
.logo-box:first-child {
  border-left: 1px solid #d8d8d8;
}

/* New Footer Style */

.footer {
  background-color: rgb(17, 17, 17);
  color: #fff;
  padding: 25px 0 0;
}
.footer-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.footer-list a {
  transition: 0.3s ease all;
  padding: 5px;
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-content p {
  font-size: 11.9px;
}
.footer-content a {
  color: #a3d2f9;
}
.footer .bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 15px;
}
.copyRightsLogos a {
  padding: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
}
.copyRightsLogos a:last-child {
  padding: 15px;
  border-right: none;
}
.footer-content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-right: -205px;
}
.certification-cont {
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
  border-left: 1px solid #666666;
}
.certification-cont img {
  width: 75px;
  height: 75px;
}
.certification-cont strong {
  color: #38a3d7;
  font-weight: 600;
  display: block;
  max-width: 80px;
  font-size: 12px;
  line-height: normal;
  margin: 0 0 0 12px;
  text-align: start;
}
.caw-badge {
  max-height: 60px;
}

.midal-content {
  padding-top: 50px;
}
.midal-content a {
  color: #4b3504;
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
  /* .main-nav ul {
    flex-wrap: wrap;
  } */
  .header-middle .search-wrapper {
    max-width: 350px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 750px;
  }
  .footerScrollbarWrapper .container {
    max-width: 840px;
  }
  .footer-content-wrap {
    margin: 0;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }
  .certification-cont {
    border: none;
  }
  .midal-content {
    border: none !important;
    padding-top: 15px;
    margin-bottom: 15px;
  }
  .profile-box {
    max-width: 170px;
    padding: 10px 10px;
  }
  .header-row {
    flex-wrap: wrap;
  }
  .header-middle {
    flex: 0 0 100%;
    order: 3;
    flex: 0 0 100% !important;
    margin-top: 10px;
  }
  .header-middle .search-wrapper {
    max-width: 100%;
    margin: 0;
  }
  .newsticker {
    padding-right: 70px;
  }
  /* .dropdown-submenu .dropdown-menu {
    position: initial !important;
    transform: translate3d(0px, 2px, 0px) !important;
    margin: 0 10px;
  } */
  .thumbs-view {
    justify-content: center;
    gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .topbar-section .container {
    padding: 0;
  }
  .header-lefts .logo a img {
    height: 80px;
  }
  .topbar-wrap {
    flex-wrap: wrap;
  }
  .govBranding {
    align-items: center;
    justify-content: center;
  }
  .push-left {
    width: 100%;
    order: 2;
  }
  .topbaright {
    width: 100%;
    order: 1;
    border-bottom: 1px solid #c2c0c1;
  }
  .topbaright ul li {
    border: none;
  }
  .topbaright ul li.languageCont {
    border-left: 1px solid #c2c0c1;
    border-right: 1px solid #c2c0c1;
  }
  .topbaright ul li:first-child {
    border: none;
  }
  .about .about-wrap {
    grid-template-columns: 1fr;
  }
  .about .container {
    padding: 0;
  }
  .footer-wrap .row {
    --bs-gutter-x: 0;
  }
  .box-wrap {
    gap: 40px;
  }
  .profile-box {
    max-width: 100%;
    padding: 10px 10px;
  }
  .latest_news .container {
    padding: 0;
  }
  .photo-gallery-section .container {
    padding: 0;
  }
  .footer-list li {
    width: 100%;
  }
  .card-wrap {
    grid-template-columns: 1fr;
  }
  .card-wrap .card {
    padding: 35px;
    min-height: auto;
    margin-bottom: 20px;
  }
  .banner-wrap img {
    min-height: 200px;
  }
  .newsticker .carousel-item {
    min-height: 100px;
  }
  .topbaright .accessibility-tools-drop {
    width: 100%;
  }
  .topbaright {
    position: inherit;
  }
  .topbaright {
    position: relative;
  }
}
@media screen and (max-width: 599px) {
  .header-right {
    display: none;
  }
  .menuToggle {
    display: inline-block;
  }
  /* .main-nav {
    display: none;
  } */
  /* .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
  } */
  .right-side-menu {
    margin: 5px 0;
  }
  #myLinks {
    display: block;
  }
  .header-wrapper {
    border-bottom: 1px solid #c2c0c1;
  }
  .news-carousel-btn.carousel-control-prev {
    right: 40px;
  }
  .news-carousel-btn.carousel-control-next {
    right: 10px;
  }
  .box-wrap {
    flex-wrap: wrap;
  }
  .footer-list {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 420px) {
  .newsticker .carousel-item {
    min-height: 120px;
  }
}

/* State Government page style */

.page-wrap {
  padding: 25px 0;
  background-color: #f6f3ee;
}
.innerBanner img {
  width: 100%;
  height: 115px;
  object-fit: cover;
}
.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.left-bread,
.breadcrumbs {
  display: flex;
}
.breadcrumbs a {
  color: #000;
}
.breadcrumbs span {
  margin: 0 5px;
  display: inline-block;
}
.printShare ul {
  display: flex;
  align-items: center;
}
.printShare ul li img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.printShare ul li {
  margin: 0 3px;
}
.printShare ul li a {
  color: #000;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.printShare ul li a span {
  margin-left: 7px;
}
.page-title {
  font-size: 28px;
  color: #000;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 20px;
}
.search-main-container {
  background-color: #e1e1e1;
  margin: 0 0 20px;
  display: table;
  width: 100%;
  height: 90px;
}
.search-main-container .search-head {
  background-color: #4b3504;
  display: table-cell;
  vertical-align: middle;
  width: 25%;
  position: relative;
  padding: 0 25px;
  color: #fff;
  line-height: normal;
}
.search-main-container .search-container {
  display: table-cell;
  vertical-align: middle;
  width: 75%;
}
.search-main-container .search-head:after {
  position: absolute;
  content: "";
  top: 40%;
  right: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 10px solid #4b3504;
  border-bottom: 10px solid transparent;
  border-left-color: #4b3504;
}

.search-main-container .search-container .search-area {
  max-width: 630px;
  margin: 0 auto;
  display: flex;
}
.search-main-container .search-container .search-area .btn {
  float: right;
  display: flex;
  background-color: #4b3504;
  border-color: #4b3504;
  border-radius: 0 3px 3px 0;
  padding: 6px;
  color: #fff;
}
.search-main-container .search-container .search-area select.form-control {
  box-shadow: none;
  float: left;
  width: calc(100% - 0px);
  border-radius: 3px 0 0 3px;
  border-right: 0;
  cursor: pointer;
  font-size: 14px;
}
.form-control:focus {
  border-color: #cccccc;
  box-shadow: none;
}

.search-area .btn i {
  font-size: 14px;
  font-weight: 600;
  margin-right: 5px;
  margin-top: 2px;
}
.search-area .btn [class*=" bi-"]::before {
  font-size: 14px;
  font-weight: 600 !important;
}
.thumbs-view {
  display: flex;
  align-items: normal;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.award-listing {
  width: 100%;
  max-width: 296px;
  border: 1px solid #e1e1e1;
  transition: 0.5s ease all;
  margin: 15px 0;
  background: #fff;
  position: relative;
  color: #000;
  box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.17);
}
.press-image img {
  height: 170px;
  object-fit: inherit;
  width: 100%;
  border-radius: 0;
}
.award-content {
  padding: 15px 15px 85px;
  text-align: left;
  width: 100%;
}
.award-content h2 {
  font-size: 16.38px;
  margin-bottom: 8px;
}
.award-content h2 a {
  font-size: 16.38px;
  color: #000;
  line-height: normal;
  font-weight: 600;
}
.award-content h2 p {
  margin-bottom: 12px;
  line-height: 1.7em;
}
.details-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.details-btn-wrap a {
  color: #000;
  border: 1px solid #000;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 12px;
  cursor: pointer;
  background-image: none;
  user-select: none;
  transition: all 0.3s ease-in-out;
  line-height: 20px;
}
.details-btn-wrap a:hover {
  background: #4b3504;
  border: 1px solid #4b3504;
  border-color: #4b3504;
  color: #fff;
}
.details-btn-wrap a.active {
  background: #4b3504;
  border: 1px solid #4b3504;
  border-color: #4b3504;
  color: #fff;
}

.social-icon-wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 0;
}
.social-icon-wrap ul li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}
.social-icon-wrap ul li a img {
  width: 100%;
  height: 100%;
}
.social-icon-wrap .disable {
  cursor: unset;
}
.social-icon-wrap .disable img {
  cursor: unset;
  opacity: 0.7;
}
.pagination {
  text-align: center;
  border-top: 1px solid rgb(225, 225, 225);
  border-bottom: 1px solid rgb(225, 225, 225);
  padding: 25px 0px;
  margin: 15px 0px;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul li {
  float: left;
  list-style: none;
  padding: 0px;
  margin: 0px 0px 0px -1px;
}
.pagination ul li strong {
  font-weight: 700;
}
.pagination ul li a {
  display: block;
  color: rgb(0, 0, 0);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(225, 225, 225);
  border-image: initial;
  padding: 7px 12px;
  transition: 0.3s ease-in-out;
}
.pagination ul li:hover a,
.pagination ul li.current a {
  background-color: #e1e1e1;
  color: #000;
}

@media screen and (max-width: 991px) {
  .thumbs-view {
    justify-content: center;
    gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .search-main-container .search-head {
    display: none;
  }
  .search-main-container .search-container {
    width: 100%;
    padding: 20px;
  }
  .page-head {
    flex-wrap: wrap;
    gap: 10px;
  }
  .page-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 655px) {
  .award-listing {
    max-width: 100%;
  }
  .press-image img {
    height: auto;
  }
}

.box-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.profile-box {
  flex: 1 1 180px;
  max-width: 220px;
  min-width: 180px;
  background: transparent;
  text-align: center;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.name-wrap {
  width: 100%;
  word-break: break-word;
  white-space: normal;
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 991px) {
  .box-wrap {
    flex-direction: column;
    align-items: center;
  }
  .profile-box {
    max-width: 100%;
    min-width: 0;
  }
}

.text-justify {
    text-align: justify;
  }

  p {
    margin-bottom: 12px;
    line-height: 1.7em;
}


h1, .heading1 {
    font-size: 2em;
}
h2, .heading2{
  font-size: 1.75em;
}

h3, .heading3 {
    font-size: 1.5em;
}

a {
    color: #4b3504;
    text-decoration: none;
}

a:hover {
    color: #4b3504;
    text-decoration: underline;
}

.fixed-gallery-img {
              width: 220px;
              height: 160px;
              object-fit: cover;
              border-radius: 8px;
            }
/* Change DataTables pagination primary color TODO */
/* .dataTables_wrapper .dataTables_paginate .paginate_button {
    background: var(--bs-primary) !important;
    color: #fff !important;
    border: 1px solid var(--bs-primary) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--bs-primary) !important;
    color: #fff !important;
    border: 1px solid var(--bs-primary) !important;
} */

/* === ADDITIONAL ACCESSIBILITY FIXES FOR COMMON ELEMENTS === */

/* Fix primary text in badges and small elements */
.badge.text-primary,
.badge-primary {
  background-color: var(--primary-shade) !important;
  color: #ffffff !important;
}

/* Fix primary text in navigation and breadcrumbs */
.breadcrumb .text-primary,
.nav .text-primary,
.navbar-light .text-primary {
  color: var(--primary-shade) !important;
}

/* Fix primary text in cards and panels */
.card .text-primary,
.panel .text-primary {
  color: var(--primary-shade) !important;
}

/* Fix primary icons and small text elements */
.bi.text-primary,
.fa.text-primary,
.fas.text-primary,
.far.text-primary {
  color: var(--primary-shade) !important;
}

/* Specific fixes for hostel page elements */
.hostel-card .text-primary,
.boys-div .text-primary,
.girls-div .text-primary {
  color: var(--primary-shade) !important;
}

/* Fix primary text in tables and lists */
.table .text-primary,
.list-group .text-primary,
.list-group-item .text-primary {
  color: var(--primary-shade) !important;
}

/* Fix primary links that aren't buttons */
a.text-primary:not(.btn) {
  color: var(--primary-shade) !important;
}

a.text-primary:not(.btn):hover {
  color: var(--secondary-shade) !important; /* Even darker on hover */
}

/* === MINIMAL LINK ACCESSIBILITY FIXES === */
/* Just enough to pass Lighthouse audit */

/* Base rule: Content links get underlines */
/* a:not(.btn):not(.nav-link):not(.navbar-brand) {
  text-decoration: underline !important;
} */

/* PDF links - minimal enhancement */
a[href*=".pdf"] {
  text-decoration: underline !important;
}