#csr-platform-hero-section {
  position: relative;
  min-height: 90vh;
  z-index: 1;
  padding: 0;
  margin: 0;
}

.csr-platform-hero-animation {
  position: absolute;
  top: -208px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: grid;
  justify-content: center;
  align-content: center;
  pointer-events: none;
  overflow: hidden;
}

.csr-platform-hero-animation .dot {
  width: 6px;
  height: 6px;
  background-color: #cbd5e148;
  border-radius: 50%;
  will-change: transform;
}

#csr-platform-hero-section .hero-section-image {
  width: 100%;
  height: 90vh;
  background-color: #ffffff;
  background-image:
    radial-gradient(rgba(100, 116, 139, 0.3) 2.5px, transparent 2.5px),
    radial-gradient(rgba(100, 116, 139, 0.2) 2px, transparent 2px),
    radial-gradient(rgba(100, 116, 139, 0.1) 1.5px, transparent 1.5px);
  background-size: 35px 35px, 55px 55px, 80px 80px;
  background-repeat: repeat, repeat, repeat;
  background-position: 0 0, 0 0, 0 0;
  position: relative;
  margin: 0;
  margin-top: -75px !important;
  animation: abstractDots 25s ease-in-out infinite alternate;
}

@keyframes abstractDots {
  0% {
    background-position: 0 0, 0 0, 0 0;
    background-size: 35px 35px, 55px 55px, 80px 80px;
  }

  50% {
    background-position: 50px 25px, -30px 40px, 20px -20px;
    background-size: 38px 38px, 50px 50px, 85px 85px;
  }

  100% {
    background-position: 100px 100px, -60px 80px, 40px -40px;
    background-size: 35px 35px, 55px 55px, 80px 80px;
  }
}

#csr-platform-hero-section .hero-section-image::before {
  content: '';
  position: absolute;
  /* inset: 0; */
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* background: #FFF; */
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(0, 212, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
  left: 0;
  right: 0;
  top: 0;
  opacity: 0.9;
}

.browser-window {
  max-width: 1400px;
  width: 95%;
  margin: auto;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 29px rgb(0 0 0 / 43%);
  margin-top: 50px;
}

/*========================
TOP BAR
========================*/

.browser-window .browser-top {
  height: 40px;
  background: #f7f8fb;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid #e8edf5;
}

.browser-window .browser-left {
  display: flex;
  align-items: center;
  width: 100%;
}

.browser-window .browser-buttons {
  display: flex;
  gap: 10px;
  margin-right: 25px;
}

.browser-window .browser-buttons span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
}

.browser-window .close {
  background: #ff605c;
}

.browser-window .minimize {
  background: #ffbd44;
}

.browser-window .maximize {
  background: #00ca4e;
}

.browser-window .browser-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-window .tab {
  height: 28px;
  padding: 0 10px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
}

.browser-window .tab i {
  color: #555;
}

.browser-window .close-tab {
  font-size: 12px;
  opacity: .5;
}

.browser-window .new-tab {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
}

.browser-window .new-tab:hover {
  background: #ececec;
}

/*======================
ADDRESS BAR
======================*/

.browser-window .browser-toolbar {
  height: 38px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #edf0f6;
  background: #fff;
}

.browser-window .toolbar-left {
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: #555;
}

.browser-window .address-bar {
  flex: 1;
  margin: 0 22px;
  height: 30px;
  background: #f5f7fb;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  gap: 12px;
  color: #777;
  font-size: 13px;
}

.browser-window .address-bar i {
  color: #4CAF50;
}

.browser-window .toolbar-right {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 14px;
  color: #666;
}

.browser-window .profile {
  width: 28px;
  height: 28px;
  background: #1b4fc8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/*=====================
HEADER
=====================*/

.browser-window .site-header {
  height: 45px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #edf0f6;
}

.browser-window .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-window .logo img {
  width: 90px;
}

.browser-window .logo h3 {
  font-size: 34px;
  font-weight: 700;
  color: #2b5db8;
}

.browser-window .site-header h2 {
  font-size: 17px;
  color: #2357b8;
  font-weight: 600;
  margin-bottom: 0;
}

.browser-window .header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.browser-window .notification {
  position: relative;
  font-size: 15px;
  cursor: pointer;
}

.browser-window .notification span {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ff3b30;
  color: #fff;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.browser-window .user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 12px;
}

.browser-window .user img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
}

/*=====================
BODY
=====================*/

/* .browser-window .dashboard-body {
  height: 760px;
  background: #f7f9fd;
  display: flex;
} */
.browser-window .dashboard-body {
  height: 560px;
  background: #f7f9fd;
  display: flex;
}

/*=========================
HEADER (DASHBOARD)
=========================*/

.browser-window .dashboard-header {
  height: 74px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid #e9edf5;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Left */

.browser-window .header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.browser-window .menu-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 7px;
  background: #0b4ea2;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: .3s;
}

.browser-window .menu-btn:hover {
  background: #083b7d;
}

.browser-window .logo-text h2 {
  font-size: 28px;
  color: #0b4ea2;
  margin: 0;
  font-weight: 700;
  line-height: 1;
}

.browser-window .logo-text span {
  font-size: 13px;
  color: #888;
}

/* Center */

.browser-window .header-center {
  flex: 1;
  text-align: center;
}

.browser-window .header-center h1 {
  font-size: 32px;
  font-weight: 700;
  color: #1656b8;
  margin: 0;
}

/* Right */

.browser-window .header-icon {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #f5f7fc;
  font-size: 18px;
  cursor: pointer;
  color: #4d5c76;
  position: relative;
  transition: .3s;
}

.browser-window .header-icon:hover {
  background: #0b4ea2;
  color: #fff;
}

.browser-window .notification .badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  background: #ff3d3d;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.browser-window .profile-dropdown {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: #f7f9fc;
  border-radius: 40px;
  cursor: pointer;
  transition: .3s;
}

.browser-window .profile-dropdown:hover {
  background: #edf2fb;
}

.browser-window .profile-dropdown img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
}

.browser-window .profile-info h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.browser-window .profile-info span {
  font-size: 13px;
  color: #7b8798;
}

.browser-window .profile-dropdown i {
  font-size: 12px;
  color: #888;
}

/*=========================
SIDEBAR
=========================*/

.browser-window .sidebar {
  width: 195px;
  height: calc(100vh - 74px);
  background: linear-gradient(180deg, #0A2F6B, #123C82);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 12px;
  overflow: auto;
  min-width: 195px;
}

/* Logo */

.browser-window .sidebar-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.browser-window .sidebar-logo img {
  width: 48px;
}

.browser-window .sidebar-logo h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 2px;
}

.browser-window .sidebar-logo span {
  font-size: 13px;
  opacity: .7;
}

/* Menu */

.browser-window .sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.browser-window .sidebar-menu li {
  margin-bottom: 8px;
}

.browser-window .sidebar-menu li a {
  display: flex;
  align-items: center;
  padding: 9px 4px;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  transition: .35s;
  font-size: 11px;
  font-weight: 500;
}

.browser-window .sidebar-menu li a i:first-child {
  width: 11px;
  font-size: 12px;
  margin-right: 10px;
}

.browser-window .arrow {
  margin-left: auto;
  font-size: 8px;
  opacity: .7;
}

/* Hover */

.browser-window .sidebar-menu li a:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateX(4px);
}

/* Active */

.browser-window .sidebar-menu li.active a {
  background: linear-gradient(90deg, #2B7CFF, #4A90FF);
  box-shadow: 0 12px 25px rgba(43, 124, 255, .45);
}

/* Support */

.browser-window .support-card {
  margin-top: auto;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.browser-window .support-icon {
  width: 65px;
  height: 65px;
  margin: auto;
  background: #2B7CFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.browser-window .support-card h4 {
  margin-bottom: 10px;
  font-size: 22px;
}

.browser-window .support-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: .8;
  margin-bottom: 20px;
}

.browser-window .support-card a {
  display: block;
  background: #fff;
  color: #0A2F6B;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.browser-window .support-card a:hover {
  background: #2B7CFF;
  color: #fff;
}

/*=========================
Dashboard Layout
=========================*/

.browser-window .dashboard-layout {
  width: 100%;
  overflow-y: scroll;
}

.browser-window .dashboard-main {
  padding: 16px;
  background: #f5f7fc;
  /* min-height: 100vh; */
}

/* Header */

.browser-window .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.browser-window .page-header h2 {
  font-size: 18px;
  margin-bottom: 0px;
  color: #23304d;
  text-align: left;
}

.browser-window .page-header p {
  color: #8b95a9;
  font-size: 12px;
  margin-bottom: 0px;
}

.browser-window .header-actions {
  display: flex;
  gap: 15px;
}

.browser-window .btn-light,
.browser-window .btn-primary {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
}

.browser-window .btn-light {
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .05);
}

.browser-window .btn-primary {
  background: #2b7cff;
  color: #fff;
}

/* KPI Cards */

.browser-window .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.browser-window .info-card {
  background: #fff;
  border: 1px solid #dce7f7;
  border-radius: 9px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 95px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
  transition: .35s;
}

.browser-window .info-card .icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.browser-window .education {
  background: #ff6b6b;
}

.browser-window .health {
  background: #20bf6b;
}

.browser-window .empowerment {
  background: #ff9f43;
}

.browser-window .beneficiary {
  background: #6c5ce7;
}

.browser-window .content span {
  color: #888;
  font-size: 16px;
}

.browser-window .content h3 {
  font-size: 34px;
  margin: 8px 0;
}

.browser-window .content small {
  color: #999;
  font-size: 14px;
}

/* Dashboard Grid */

.browser-window .dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr 350px;
  gap: 25px;
}

/* Card */

.browser-window .dashboard-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
  margin-bottom: 25px;
}

.browser-window .dashboard-card h3 {
  margin-bottom: 20px;
}

/* Placeholder */

.browser-window .chart-placeholder {
  height: 300px;
  background: #f4f7fb;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: #999;
}

/* Productivity */

.browser-window .day-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  background: #f8fbff;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* Right Menu */

.browser-window .quick-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.browser-window .quick-menu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  margin-bottom: 15px;
  background: #f7f9fd;
  border-radius: 12px;
  cursor: pointer;
  transition: .3s;
}

.browser-window .quick-menu li:hover {
  background: #2b7cff;
  color: #fff;
}

/*=========================
Responsive Adjustments for Laptops & Mobile
=========================*/
@media (max-width: 1400px) {
  .browser-window {
    width: 98%;
  }

  .browser-window .dashboard-grid {
    grid-template-columns: 2fr 1.5fr 300px;
  }
}

@media (max-width: 1250px) {
  .browser-window .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .browser-window .dashboard-grid> :last-child {
    grid-column: 1 / -1;
  }

  .browser-window .stats-grid {
    gap: 15px;
  }

  .browser-window .content h3 {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .browser-window .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .browser-window .sidebar {
    position: absolute;
    left: -300px;
    z-index: 1000;
  }

  .browser-window .dashboard-main {
    padding: 20px;
  }

  .browser-window .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .browser-window .dashboard-grid> :last-child {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .browser-window .stats-grid {
    grid-template-columns: 1fr;
  }

  .browser-window .header-center h1 {
    font-size: 20px;
  }

  .browser-window .logo h3 {
    font-size: 24px;
  }

  .browser-window .site-header h2 {
    font-size: 18px;
  }

  .browser-window .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .browser-window .browser-toolbar {
    display: none;
    /* Hide address bar on very small mobile for cleaner look */
  }

  .browser-window .site-header {
    padding: 0 15px;
  }

  .browser-window .header-right {
    gap: 15px;
  }

  .browser-window .user span {
    display: none;
    /* Hide admin text */
  }
}

/*=========================
PILLAR INFORMATION
=========================*/

.browser-window .pillar-information {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 25px 0;
}



.browser-window .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}



/* Icon Colors */

.browser-window .education {
  background: #FFEAEA;
  color: #ff3b30;
}

.browser-window .health {
  background: #E9FFF5;
  color: #22b573;
}

.browser-window .empowerment {
  background: #FFF5E8;
  color: #f4a000;
}

.browser-window .beneficiary {
  background: #F3ECFF;
  color: #7C3AED;
}

/* Content */

.browser-window .info-content {
  flex: 1;
  text-align: left;
}

.browser-window .info-content h4 {
  margin: 0;
  font-size: 14px;
  color: #222;
  font-weight: 600;
}

.browser-window .info-content h2 {
  margin: 1px 0;
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.browser-window .info-content p {
  margin: 0;
  font-size: 10px;
  color: #666;
}

.browser-window .info-content strong {
  display: block;
  margin-top: 0px;
  font-size: 14px;
}

/* Total Card */

.browser-window .total-card {
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  text-align: left;
  align-items: start;
}

.browser-window .total-card h5 {
  margin-bottom: 5px;
  font-size: 13px;
}

.browser-window .total-card small {
  display: block;
  color: #777;
  margin: 1px 0 0px;
  font-size: 12px;
}

.browser-window .total-card .value {
  font-size: 14px;
  font-weight: 700;
}

.browser-window .watermark {
  position: absolute;
  right: -10px;
  top: 10px;
  opacity: .15;
}

.browser-window .watermark img {
  width: 90px;
}

/* Responsive */

@media(max-width: 1400px) {
  .browser-window .pillar-information {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 992px) {
  .browser-window .pillar-information {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .browser-window .pillar-information {
    grid-template-columns: 1fr;
  }
}

/*==============================
Beneficiaries Overview Card
==============================*/

.browser-window .chart-card {
  background: #ffffff;
  border: 1px solid #e5edf8;
  border-radius: 11px;
  padding: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

.browser-window .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.browser-window .card-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #222;
}

/* Legend */

.browser-window .chart-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.browser-window .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
}

.browser-window .legend-color {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.browser-window .legend-color.education {
  background: #ff3b30;
}

.browser-window .legend-color.health {
  background: #20bf6b;
}

.browser-window .legend-color.empowerment {
  background: #f4a000;
}

/* Chart */

.browser-window .chart-body {
  height: 320px;
}

.browser-window .chart-body canvas {
  width: 100% !important;
  height: 100% !important;
}

/*==================================
Statistics Card
==================================*/

.browser-window .statistics-card {
  background: #fff;
  border: 1px solid #e7eef9;
  border-radius: 12px;
  padding: 13px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.browser-window .statistics-header {
  margin-bottom: 20px;
}

.browser-window .statistics-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  text-align: left;
}

/* Layout */

.browser-window .statistics-body {
  display: flex;
  align-items: center;
  gap: 45px;
}

/* Circle */

.browser-window .statistics-circle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.browser-window .circle-progress {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: conic-gradient(#0f9d78 0deg,
      #0f9d78 220deg,
      #9bd64d 290deg,
      #edf2f8 290deg,
      #edf2f8 360deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.browser-window .circle-progress::before {
  content: "";
  width: 112px;
  height: 112px;
  background: #fff;
  border-radius: 50%;
}

.browser-window .circle-center {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #dff6ad;
  display: flex;
  justify-content: center;
  align-items: center;
}

.browser-window .circle-center img {
  width: 35px;
}

/* Right */

.browser-window .statistics-content {
  flex: 1;
}

.browser-window .progress-item {
  margin-bottom: 26px;
}

.browser-window .progress-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.browser-window .progress-title span {
  font-size: 15px;
  color: #555;
  font-weight: 600;
}

.browser-window .progress-title strong {
  color: #333;
}

.browser-window .progress-bar {
  width: 100%;
  height: 7px;
  background: #edf2f8;
  border-radius: 30px;
  overflow: hidden;
}

.browser-window .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #14b485, #108a67);
  border-radius: 30px;
}

.browser-window .fill85 {
  width: 85%;
}

.browser-window .fill98 {
  width: 98%;
}

.browser-window .fill48 {
  width: 48%;
}

/* Responsive */

@media(max-width: 768px) {
  .browser-window .statistics-body {
    flex-direction: column;
  }
}

.progress-fill {

  animation: progress 1.5s ease;

}

@keyframes progress {

  from {

    width: 0;

  }

}

/*==========================
Productivity Card
==========================*/

.browser-window .productivity-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 15px;
  border-radius: 18px;
  background: linear-gradient(90deg, #e8ff9d 0%, #d8f56b 50%, #d8f56b 100%);
  box-shadow: 0 8px 20px rgba(180, 210, 60, .18);
  border: 1px solid rgba(190, 220, 90, .4);
}

/* Date */

.browser-window .date-box {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .08);
}

.browser-window .date-box span {
  font-size: 14px;
  color: #555;
  font-weight: 600;
  margin-bottom: 4px;
}

.browser-window .date-box h2 {
  margin: 0;
  font-size: 38px;
  color: #222;
  font-weight: 700;
}

/* Information */

.browser-window .info-box {
  flex: 1;
  position: relative;
}

.browser-window .info-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -4px;
  width: 1px;
  height: 60px;
  background: rgba(0, 0, 0, .08);
}

.browser-window .info-box p {
  margin: 0 0 9px;
  font-size: 13px;
  color: #4f5b38;
  font-weight: 500;
}

.browser-window .info-box h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

/* Hover */

.browser-window .productivity-card {
  transition: .35s;
  margin-top: 20px;
}

.browser-window .productivity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(160, 190, 60, .28);
}

/* Responsive */

@media(max-width: 768px) {
  .browser-window .productivity-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .browser-window .info-box {
    width: 100%;
  }

  .browser-window .info-box::after {
    display: none;
  }

  .browser-window .date-box {
    width: 100%;
  }
}

.browser-window .admin-wrapper {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  overflow: hidden;
}

.browser-window .table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 28px;
  border-bottom: 1px solid #edf0f5;
}

.browser-window .table-header h2 {
  font-size: 16px;
  font-weight: 600;
}

.browser-window .table-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.browser-window .table-filter select {
  padding: 5px 7px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 12px;
}

.browser-window .table-responsive {
  overflow-x: auto;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #bfc6d4 #f3f4f6;
}

/* Chrome, Edge, Safari */
.browser-window .table-responsive::-webkit-scrollbar {
  height: 6px;
  /* Horizontal scrollbar thickness */
}

.browser-window .table-responsive::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 10px;
}

.browser-window .table-responsive::-webkit-scrollbar-thumb {
  background: #bfc6d4;
  border-radius: 10px;
}

.browser-window .table-responsive::-webkit-scrollbar-thumb:hover {
  background: #8d99ae;
}

.browser-window table {
  width: 100%;
  border-collapse: collapse;
}

.browser-window thead {
  background: #fafbfc;
}

.browser-window thead th {
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  color: #6b7280;
  white-space: nowrap;
}

.browser-window tbody td {
  padding: 11px 12px;
  border-top: 1px solid #f1f1f1;
  font-size: 11px;
  white-space: nowrap;
}

.browser-window tbody tr:hover {
  background: #fafcff;
}

.browser-window .user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-window .user-info img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.browser-window .user-info h5 {
  font-size: 12px;
  font-weight: 600;
}

.browser-window .verified {
  color: #22c55e;
  font-size: 13px;
  margin-left: 5px;
}

.browser-window .badge {
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.browser-window .super {
  background: #e8efff;
  color: #2563eb;
}

.browser-window .admin {
  background: #ede9fe;
  color: #6d28d9;
}

.browser-window .manager {
  background: #dcfce7;
  color: #16a34a;
}

.browser-window .editor {
  background: #fff2db;
  color: #f59e0b;
}

.browser-window .viewer {
  background: #f3e8ff;
  color: #9333ea;
}

.browser-window .status {
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}




.browser-window .action-btns {
  display: flex;
  gap: 8px;
}

.browser-window .action-btns a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #edf0f5;
  text-decoration: none;
  transition: .3s;
}

.browser-window .action-btns a:nth-child(1) {
  color: #2563eb;
}

.browser-window .action-btns a:nth-child(2) {
  color: #f59e0b;
}

.browser-window .action-btns .delete {
  color: #ef4444;
}

.browser-window .action-btns a:hover {
  background: #2563eb;
  color: #fff;
}

.browser-window .table-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-top: 1px solid #edf0f5;
  font-size: 14px;
}

.browser-window .pagination {
  display: flex;
  gap: 8px;
  align-items: center;
}

.browser-window .pagination a,
.browser-window .pagination span {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  color: #666;
}

.browser-window .pagination .active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

@media(max-width:992px) {

  /* Scoped body adjustments inside browser-window if applicable, 
     otherwise targets the component layout directly */
  .browser-window {
    padding: 15px;
  }

  .browser-window .table-header,
  .browser-window .table-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}



/* ============================================
   TechCSR Platform - FAQ Section
   ============================================ */

.faq-section .dash-faq-section {
  margin: 0 auto;
}

.clients.clients-csr-platform .owl-carousel.owl-theme.customer-logos .hexagon-avatar-img {
  height: 75px;
}

.smart-csr-budget-management-slider {
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
  border-radius: 15px;
  border: 2px solid #f3e8ff;
  padding: 3px;
}

.smart-csr-budget-management-slider.mobile-app-img-slider .owl-dots {
  display: none;

}

/* csr-platform-banner-slider */
.csr-platform-banner-slider {
  background: #fff;
  border-radius: 22px;
  /* overflow: hidden; */
  box-shadow: 0 6px 29px rgb(0 0 0 / 43%);
  margin-top: 50px;
}

.csr-platform-banner-slider img {
  width: 100%;
  max-width: 100% !important;
  border-radius: 20px;
  overflow: hidden;
}

.csr-platform-banner-slider .item {
  width: 100% !important;


}

.owl-carousel.csr-platform-banner-slider .owl-item img {
  max-width: initial !important;
  margin: initial !important;
}

.csr-platform-banner-slider .owl-nav {
  position: absolute;
  bottom: 0;
  right: 0;
}

.csr-platform-banner-slider .owl-dots {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.csr-platform-banner-slider .owl-dot {
  outline: none;
}

.csr-platform-banner-slider .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0;
  border-radius: 30px;
  background: rgb(132 155 52);
  transition: all .4s ease;
  display: block;
}

.csr-platform-banner-slider .owl-dot.active span {
  width: 38px;
  background: rgb(132 155 52)
}

.csr-platform-banner-slider .owl-dot:hover span {
  background: rgb(132 155 52);
}

.gis-need-assessment-style .item {
  box-shadow: 0 10px 24px rgb(0 0 0 / 30%);
  border-radius: 15px;
  border: 2px solid #f3e8ff;
  margin: 3px;
  overflow: hidden;
}

.gis-need-assessment-style.mobile-app-img-slider .owl-dots {
  display: none;
  margin-top: 0px !important;
}

/* Progress Bar Start*/

.progress {
  z-index: 999;
  position: fixed;
  top: 76px;
  left: 0;
  height: 6px;
  background-color: var(--secondary);
  transition: all linear 0.1s;
  min-width: 0;
  border-radius: 0;
}

/* Progress Bar End*/