/* 
 * DMFT Bokaro - Custom Stylesheet
 * District Mineral Foundation Trust, Bokaro, Jharkhand
 * Design Theme: Modern Government Portal (Forest Green & Steel Blue with Mineral Gold Accents)
 */

/* ==========================================================================
   1. Design System & CSS Variables
   ========================================================================== */
:root {
  /* Colors */
  --primary-color: #1b4332;       /* Forest Green */
  --primary-rgb: 27, 67, 50;
  --secondary-color: #0f4c81;     /* Steel Blue */
  --secondary-rgb: 15, 76, 129;
  --accent-color: #d4af37;        /* Mineral Gold */
  --accent-rgb: 212, 175, 55;
  --dark-color: #212529;          /* Deep Slate */
  --light-bg: #f8f9fa;            /* Soft Warm White */
  --white: #ffffff;
  --gray-200: #e9ecef;
  --gray-600: #6c757d;
  
  /* Layout Spacing */
  --transition-speed: 0.3s;
  --font-base-size: 1rem;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --box-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   2. Font Scaling & Typography
   ========================================================================== */
body {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-base-size);
  color: var(--dark-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-speed), color var(--transition-speed);
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover, a:focus {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Accessibility Focus Outline */
*:focus-visible {
  outline: 3px solid var(--accent-color) !important;
  outline-offset: 3px;
}

/* Font Sizing Controls */
body.font-scale-down {
  --font-base-size: 0.9rem;
}
body.font-scale-up {
  --font-base-size: 1.15rem;
}

/* ==========================================================================
   3. Accessibility & High Contrast Override
   ========================================================================== */
body.high-contrast {
  --primary-color: #00ff66;       /* Bright Green */
  --secondary-color: #00ffff;     /* Cyan */
  --accent-color: #ffff00;        /* Bright Yellow */
  --dark-color: #ffffff;
  --light-bg: #121212;
  --white: #000000;
  --gray-200: #333333;
  --gray-600: #cccccc;
  background-color: #000000 !important;
  color: #ffffff !important;
}

body.high-contrast h1, 
body.high-contrast h2, 
body.high-contrast h3, 
body.high-contrast h4, 
body.high-contrast h5, 
body.high-contrast h6,
body.high-contrast p,
body.high-contrast span,
body.high-contrast div,
body.high-contrast td,
body.high-contrast th,
body.high-contrast a,
body.high-contrast button {
  color: #ffffff !important;
}

body.high-contrast .bg-light,
body.high-contrast .card,
body.high-contrast header,
body.high-contrast footer,
body.high-contrast nav,
body.high-contrast .modal-content {
  background-color: #121212 !important;
  border: 1px solid #ffffff !important;
  box-shadow: none !important;
}

body.high-contrast .btn-primary {
  background-color: #00ff66 !important;
  color: #000000 !important;
  border: 2px solid #ffffff !important;
}

body.high-contrast .btn-secondary {
  background-color: #00ffff !important;
  color: #000000 !important;
  border: 2px solid #ffffff !important;
}

body.high-contrast .badge {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   4. Government Header & Nav styling
   ========================================================================== */
.top-bar {
  background-color: #112d22;
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 2px solid var(--accent-color);
}

.top-bar a {
  color: #e2e8f0;
}

.top-bar a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.main-header {
  padding: 15px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.gov-emblem {
  height: 65px;
  object-fit: contain;
}

.dmft-logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dmft-title-box {
  line-height: 1.2;
}

.dmft-title-box h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--primary-color);
}

.dmft-title-box p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--secondary-color);
  font-weight: 600;
}

/* Custom Accessibility Controls Group */
.accessibility-ctrls .btn {
  padding: 2px 8px;
  font-size: 0.85rem;
  border-color: var(--gray-600);
  color: var(--gray-600);
}

.accessibility-ctrls .btn:hover {
  background-color: var(--gray-200);
}

/* Sticky Main Navigation */
.navbar-custom {
  background-color: var(--secondary-color);
  padding: 0;
  border-bottom: 4px solid var(--accent-color);
  box-shadow: var(--box-shadow);
}

.navbar-custom .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color var(--transition-speed), color var(--transition-speed);
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active,
.navbar-custom .navbar-nav .nav-link:focus {
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
}

.navbar-custom .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  margin: 8px 15px;
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown styling */
.navbar-custom .dropdown-menu {
  background-color: var(--white);
  border: 2px solid var(--secondary-color);
  border-radius: 0;
  margin-top: 0;
  box-shadow: var(--box-shadow-hover);
}

.navbar-custom .dropdown-item {
  color: var(--dark-color);
  font-weight: 500;
  padding: 10px 20px;
  border-bottom: 1px solid var(--gray-200);
}

.navbar-custom .dropdown-item:last-child {
  border-bottom: none;
}

.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

/* ==========================================================================
   5. Hero Section & Stat Overlay
   ========================================================================== */
.hero-wrapper {
  position: relative;
  background-image: linear-gradient(rgba(15, 76, 129, 0.8), rgba(27, 67, 50, 0.85)), url('../images/bokaro_bg.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 0 100px 0;
  text-align: center;
}

.hero-title {
  font-size: 2.8rem;
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Overlapping Stats Panel */
.stats-overlay-container {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.stat-dashboard-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: none;
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.1);
  padding: 24px;
  text-align: center;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  border-bottom: 4px solid var(--secondary-color);
}

.stat-dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.stat-dashboard-card.completed { border-bottom-color: #28a745; }
.stat-dashboard-card.ongoing { border-bottom-color: #ffc107; }
.stat-dashboard-card.expenditure { border-bottom-color: #dc3545; }

.stat-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.stat-dashboard-card.completed .stat-icon { color: #28a745; }
.stat-dashboard-card.ongoing .stat-icon { color: #ffc107; }
.stat-dashboard-card.expenditure .stat-icon { color: #dc3545; }

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--dark-color);
  margin-bottom: 2px;
}

.stat-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gray-600);
  letter-spacing: 0.5px;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 4px;
  margin-bottom: 0;
}

/* ==========================================================================
   6. Custom Card Styling (Rounded, Soft Shadows, Dynamic Hover)
   ========================================================================== */
.card-custom {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-hover);
}

.card-custom-body {
  padding: 20px;
}

/* Bokaro Block Cards (No Map UI) */
.block-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  position: relative;
  cursor: pointer;
  height: 220px;
}

.block-card-front {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: opacity var(--transition-speed);
}

.block-card-front h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.block-card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.block-card-metric-item {
  font-size: 0.8rem;
  font-weight: 500;
}

.block-card-metric-item span {
  font-weight: 700;
  color: var(--primary-color);
}

.block-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.block-card:hover .block-card-back {
  transform: translateY(0);
}

.block-card-back p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

.block-card-back .btn-details {
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  align-self: flex-start;
  padding: 4px 12px;
}

.block-card-back .btn-details:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Major Scheme Cards */
.scheme-card {
  border-left: 5px solid var(--secondary-color);
  transition: all var(--transition-speed);
}

.scheme-card:hover {
  border-left-color: var(--accent-color);
  background-color: var(--light-bg);
}

.scheme-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(15, 76, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 16px;
  transition: background-color var(--transition-speed), color var(--transition-speed);
}

.scheme-card:hover .scheme-icon-container {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ==========================================================================
   7. Tables, Badges, and Government Lists
   ========================================================================== */
.table-responsive-custom {
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 24px;
}

.table-custom {
  margin-bottom: 0;
}

.table-custom th {
  background-color: var(--primary-color);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  border: none;
}

.table-custom td {
  padding: 14px 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--gray-200);
}

.table-custom tr:last-child td {
  border-bottom: none;
}

.table-custom tbody tr:hover {
  background-color: var(--light-bg);
}

/* Status Badges */
.badge-status {
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
}

.badge-completed {
  background-color: rgba(40, 167, 69, 0.15);
  color: #28a745;
}

.badge-ongoing {
  background-color: rgba(255, 193, 7, 0.15);
  color: #856404;
}

.badge-proposed {
  background-color: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

/* ==========================================================================
   8. Scrolling Notification Ticker
   ========================================================================== */
.ticker-container {
  background-color: #fff9e6;
  border-top: 1px solid #ffeeba;
  border-bottom: 2px solid var(--accent-color);
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.ticker-label {
  background-color: var(--accent-color);
  color: var(--dark-color);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  text-transform: uppercase;
  margin-right: 15px;
  position: relative;
  z-index: 5;
  border-radius: 4px;
}

.ticker-scroll-window {
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-scroll-content {
  display: inline-block;
  animation: ticker-animation 30s linear infinite;
  padding-left: 100%;
}

.ticker-item {
  display: inline-block;
  margin-right: 40px;
  font-size: 0.9rem;
  font-weight: 600;
}

@keyframes ticker-animation {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* ==========================================================================
   9. Photo & Video Gallery Grid
   ========================================================================== */
.gallery-grid-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  margin-bottom: 24px;
}

.gallery-grid-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.gallery-grid-item:hover img {
  transform: scale(1.05);
}

.gallery-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 67, 50, 0.8);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  padding: 20px;
  text-align: center;
  transition: opacity var(--transition-speed);
}

.gallery-grid-item:hover .gallery-grid-overlay {
  opacity: 1;
}

.gallery-grid-overlay h4 {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.gallery-grid-overlay p {
  font-size: 0.8rem;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}

/* ==========================================================================
   10. Custom Breadcrumbs & Section Headers
   ========================================================================== */
.section-header-custom {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-header-custom h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header-custom h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header-custom p {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb-custom {
  background-color: var(--light-bg);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 40px;
}

.breadcrumb-custom ol {
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   11. Government Multi-Column Footer
   ========================================================================== */
.footer-government {
  background-color: #111b15;
  color: #adb5bd;
  padding: 60px 0 20px 0;
  border-top: 6px solid var(--accent-color);
  font-size: 0.9rem;
}

.footer-government h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-government h4::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer-government ul {
  padding-left: 0;
  list-style: none;
}

.footer-government ul li {
  margin-bottom: 12px;
}

.footer-government ul li a {
  color: #adb5bd;
  transition: color var(--transition-speed);
}

.footer-government ul li a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  background-color: #0b110e;
  padding: 20px 0;
  color: #868e96;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom a {
  color: #868e96;
  margin-left: 15px;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ==========================================================================
   12. Transparency Badges & Miscellaneous Layout elements
   ========================================================================== */
.transparency-item {
  text-align: center;
  padding: 30px;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  background-color: var(--white);
  height: 100%;
  transition: all var(--transition-speed);
}

.transparency-item:hover {
  box-shadow: var(--box-shadow);
  border-color: var(--secondary-color);
}

.transparency-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.transparency-item h4 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* Sidebar Document download widgets */
.download-widget {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  padding: 24px;
}

.download-widget-title {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 16px;
  font-weight: 700;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--gray-200);
}

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

.download-icon {
  font-size: 1.5rem;
  color: #dc3545;
}

.download-info {
  flex-grow: 1;
}

.download-info h5 {
  font-size: 0.85rem;
  margin: 0;
  color: var(--dark-color);
  font-weight: 600;
}

.download-info span {
  font-size: 0.75rem;
  color: var(--gray-600);
}

/* Primary buttons override */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  transition: all var(--transition-speed);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #112d22;
  border-color: #112d22;
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.25);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  transition: all var(--transition-speed);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #0c3961;
  border-color: #0c3961;
  box-shadow: 0 4px 12px rgba(15, 76, 129, 0.25);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--dark-color) !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 4px;
  transition: all var(--transition-speed);
}

.btn-accent:hover, .btn-accent:focus {
  background-color: #bfa130;
  border-color: #bfa130;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Pagination Styles */
.pagination-custom .page-link {
  color: var(--secondary-color);
  border-color: var(--gray-200);
  padding: 8px 16px;
}

.pagination-custom .page-item.active .page-link {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.pagination-custom .page-link:hover {
  background-color: var(--light-bg);
}

/* ==========================================================================
   13. Key Officials Component Styling
   ========================================================================== */
.section-key-officials {
  background-color: #f4f7f5;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.officials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .officials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .officials-grid {
    grid-template-columns: 1fr;
  }
}

.official-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: var(--box-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.official-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.official-photo-wrapper {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #e9ecef;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.official-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.official-placeholder-icon {
  font-size: 5rem;
  color: #a0aec0;
}

.official-card-body {
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.official-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.official-designation {
  font-size: 0.95rem;
  color: var(--dark-color);
  line-height: 1.5;
  font-weight: 600;
}

.official-sub-designation {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed var(--gray-200);
  display: block;
  font-weight: 500;
}

