  /* --- Stats Section --- */
  .stats-section {
      padding: 120px 0 60px 0;
      position: relative;
      background-color: #eef5ff;
  }

  .stats-section .container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
      max-width: 1200px;
      /* Keep stats container normal width */
  }

  .stats-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image:
          linear-gradient(rgba(5, 110, 182, 0.1) 1px, transparent 1px),
          linear-gradient(90deg, rgba(5, 110, 182, 0.1) 1px, transparent 1px);
      background-size: 40px 40px;
      animation: backgroundGrid 2s linear infinite;
      z-index: 1;
  }

  .map-wrapper {
      position: relative;
      width: 600px;
      height: 600px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 10px;
      overflow: hidden;

      animation: fadeIn 1s ease-out 0.5s;
      animation-fill-mode: backwards;
      transition: transform 0.3s ease;
  }

  .map-wrapper:hover {
      transform: scale(1.02);
  }

  .map-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
  }

  .map-label {
      position: absolute;
      background-color: rgba(0, 0, 0, 0.65);
      color: white;
      padding: 4px 8px;
      border-radius: 5px;
      font-size: 0.8rem;
      font-weight: 500;
      pointer-events: none;
      white-space: nowrap;
      box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      z-index: 5;
      transform: translate(-50%, -50%);
  }

  #label-rangpur {
      top: 15%;
      left: 33%;
  }

  #label-rajshahi {
      top: 39%;
      left: 35%;
  }

  #label-mymensingh {
      top: 30%;
      left: 42%;
  }

  #label-sylhet {
      top: 33%;
      left: 70%;
  }

  #label-dhaka {
      top: 50%;
      left: 50%;
  }

  #label-khulna {
      top: 65%;
      left: 40%;
  }

  #label-barisal {
      top: 70%;
      left: 55%;
  }

  #label-chittagong {
      top: 65%;
      left: 75%;
  }

  /* Dashboard Styles */
  .stats-dashboard {
      flex: 1;
      min-width: 400px;
      text-align: center;
  }

  .stats-dashboard .dashboard-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 5px;
      color: var(--dark-blue);
  }

  .stats-dashboard .dashboard-subtitle {
      font-size: 1rem;
      color: var(--text-light);
      margin-bottom: 30px;
  }

  .gauges-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
  }

  .gauge-card,
  .stat-card {
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: fadeIn 1s ease-out 0.7s;
      animation-fill-mode: backwards;
  }

  .gauge-card:hover,
  .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  }

  .gauge {
      position: relative;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin: 0 auto 10px auto;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .gauge.approval {
      background: conic-gradient(var(--primary-blue) 90%, #e0e0e0 90%);
  }

  .gauge.satisfaction {
      background: conic-gradient(var(--primary-blue) 10%, #e0e0e0 10%);
  }

  .gauge-inner {
      width: 95px;
      height: 95px;
      background-color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
  }

  .gauge-percent {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--text-dark);
  }

  .gauge-icon {
      font-size: 1.5rem;
  }

  .gauge-icon.check {
      color: var(--primary-blue);
  }

  .gauge-icon.smile {
      color: var(--text-light);
  }

  .gauge-title {
      font-weight: 600;
      color: var(--text-dark);
  }

  .cards-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      text-align: left;
  }

  .stat-card {
      display: flex;
      align-items: center;
      gap: 15px;
  }

  .stat-card-icon {
      font-size: 1.8rem;
      color: var(--primary-blue);
      flex-shrink: 0;
  }

  .stat-card-info .title {
      color: var(--text-light);
      font-size: 0.9rem;
      margin: 0;
  }

  .stat-card-info .value {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-dark);
      margin: 0;
  }

  /* --- Table Section --- */
  .table-section {
      padding: 60px 0;
      background-color: #fff;
  }

  .section-header {
      text-align: center;
      margin-bottom: 40px;
  }

  .section-title {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--dark-blue);
      margin-bottom: 5px;
  }

  .section-subtitle {
      font-size: 1rem;
      color: var(--text-light);
  }

  .table-wrapper {
      overflow-x: auto;
      border-radius: 8px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
      background: #fff;
  }

  table {
      width: 100%;
      border-collapse: collapse;
      min-width: 1200px;
  }

  th,
  td {
      padding: 15px 12px;
      text-align: center;
      border-bottom: 1px solid #e8e8e8;
      white-space: nowrap;
      font-family: 'Hind Siliguri', sans-serif;
  }

  thead {
      background-color: #f7f9fc;
      color: #333;
      font-weight: 600;
      font-size: 0.9rem;
  }

  thead th {
      border-bottom: 2px solid var(--primary-blue);
  }

  tbody tr:nth-child(even) {
      background-color: #f8faff;
  }

  tbody tr:hover {
      background-color: #f0f4ff;
  }

  td {
      color: var(--text-dark);
      font-size: 1rem;
  }

  .serial {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      color: var(--primary-blue);
      background-color: #e6f1f9;
      font-weight: 600;
  }

  .action-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background-color: #28a745;
      color: #fff;
      text-decoration: none;
      transition: background-color 0.3s ease;
  }

  .action-btn:hover {
      background-color: #218838;
  }

  .table-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 10px;
      margin-top: 15px;
      background-color: #fff5e6;
      border-radius: 8px;
      font-size: 0.9rem;
  }

  .last-updated {
      color: var(--text-light);
  }

  .download-btn {
      color: var(--dark-blue);
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .download-btn:hover {
      color: var(--primary-blue);
  }

  .download-btn i {
      margin-left: 5px;
  }

  .source-info {
      text-align: left;
      margin-top: 20px;
  }

  .source-info a {
      color: var(--text-light);
      text-decoration: none;
      font-size: 0.9rem;
  }

  .source-info a i {
      margin-left: 5px;
      transition: transform 0.3s ease;
  }

  .source-info a:hover i {
      transform: translateY(2px);
  }

  /* --- Responsive Adjustments --- */
  @media (max-width: 992px) {
      .stats-section .container {
          flex-direction: column;
      }

      .map-wrapper {
          width: 100%;
          max-width: 800px;
          height: auto;
          aspect-ratio: 1 / 1;
      }

      .map-wrapper img {
          width: 100%;
          height: auto;
      }
  }

  @media (max-width: 768px) {
      .main-header .container {
          flex-direction: column;
          gap: 15px;
      }

      .header-right {
          flex-direction: column;
          gap: 10px;
          align-items: center;
      }

      .header-buttons {
          justify-content: center;
      }

      .hero-section {
          height: auto;
          min-height: 85vh;
          padding-top: 40px;
          padding-bottom: 150px;
      }

      .hero-content h1 {
          font-size: 2.2rem;
      }

      .hero-content p {
          font-size: 0.95rem;
      }

      .cta-buttons {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 15px;
      }

      .cta-buttons .btn {
          width: 90%;
          max-width: 350px;
          margin: 0;
      }

      .filter-section-wrapper {
          width: 90%;
      }

      .filter-form {
          flex-direction: column;
          align-items: stretch;
      }

      .stats-section {
          padding-top: 180px;
      }
  }

  @media (max-width: 576px) {

      .gauges-container,
      .cards-container {
          grid-template-columns: 1fr;
      }

      .stats-dashboard {
          min-width: 100%;
      }

      .map-label {
          font-size: 0.65rem;
          padding: 3px 5px;
      }

      #label-rangpur {
          top: 23%;
          left: 38%;
      }

      #label-rajshahi {
          top: 41%;
          left: 28%;
      }

      #label-mymensingh {
          top: 38%;
          left: 55%;
      }

      #label-sylhet {
          top: 35%;
          left: 75%;
      }

      #label-dhaka {
          top: 55%;
          left: 50%;
      }

      #label-khulna {
          top: 70%;
          left: 32%;
      }

      #label-barisal {
          top: 75%;
          left: 58%;
      }

      #label-chittagong {
          top: 65%;
          left: 78%;
      }
  }