.sidebar {
  width: 240px;
  background: #192231;
  color: #fff;
  min-height: 100vh;
  padding: 20px;
}
.sidebar .profile {
  text-align: center;
}
.sidebar .profile img {
  width: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.sidebar .profile .status {
  font-size: 12px;
}
.sidebar .profile .status i {
  color: #2ecc71;
}
.sidebar nav ul {
  list-style: none;
  margin-top: 30px;
}
.sidebar nav ul li {
  margin: 15px 0;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar nav ul li i {
  width: 20px;
}

.navbar {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .user-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}
.navbar .user-menu .icon {
  font-size: 20px;
  cursor: pointer;
}
.navbar .user-menu .user-mini {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .user-menu .user-mini img {
  width: 35px;
  border-radius: 50%;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.cards-row .stat-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.cards-row .stat-card i {
  font-size: 35px;
  margin-bottom: 10px;
}
.cards-row .stat-card .icon-blue {
  color: #007bff;
}
.cards-row .stat-card .icon-orange {
  color: #ff8c00;
}
.cards-row .stat-card .icon-green {
  color: #28a745;
}
.cards-row .stat-card .icon-red {
  color: #dc3545;
}

.layout {
  display: flex;
  flex-wrap: wrap;
}

.social-row {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.social-row .social {
  padding: 30px;
  border-radius: 10px;
  color: white;
  text-align: center;
}
.social-row .social i {
  font-size: 40px;
  margin-bottom: 10px;
}
.social-row .fb {
  background: #3b5998;
}
.social-row .tw {
  background: #1da1f2;
}
.social-row .in {
  background: #0077b5;
}
.social-row .gp {
  background: #db4437;
}

.main {
  flex: 1;
  background: #f5f6fa;
  padding: 20px;
}

/* ---------------- BIG CHART SECTION ---------------- */
.big-chart {
  width: 100%;
  margin-top: 30px;
}

.chart-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.chart-header h3 {
  margin: 0;
  font-size: 20px;
}

.chart-header p {
  margin: 5px 0 15px;
  color: gray;
  font-size: 14px;
}

.chart-area {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 220px;
  gap: 20px;
}

.bar {
  width: 25px;
  background: rgba(57, 89, 255, 0.25);
  border-radius: 6px;
}

.line-chart {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.chart-labels {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
}

/* ---------------- TESTIMONIAL + PROGRESS ROW ---------------- */
.testimonial-progress {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 20px;
  /* ---------------- TESTIMONIAL BOX ---------------- */
  /* ---------------- PROGRESS BOX ---------------- */
}
.testimonial-progress .testimonial-box {
  background: #0f2b4c;
  padding: 20px;
  border-radius: 10px;
  color: white;
}
.testimonial-progress .testimonial-box h3 {
  margin-bottom: 15px;
  font-weight: 600;
}
.testimonial-progress .testimonial-box .testimonial-content {
  text-align: center;
}
.testimonial-progress .testimonial-box .testimonial-content img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.testimonial-progress .testimonial-box .testimonial-content .text {
  max-width: 80%;
  margin: 10px auto;
  font-size: 14px;
  opacity: 0.9;
}
.testimonial-progress .testimonial-box .testimonial-content h4 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}
.testimonial-progress .testimonial-box .testimonial-content .role {
  font-size: 14px;
  opacity: 0.7;
}
.testimonial-progress .testimonial-box .testimonial-content .social-icons {
  margin-top: 15px;
}
.testimonial-progress .testimonial-box .testimonial-content .social-icons i {
  margin: 0 8px;
  font-size: 16px;
  cursor: pointer;
}
.testimonial-progress .progress-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
}
.testimonial-progress .progress-box h3 {
  margin-bottom: 20px;
  font-weight: 600;
}
.testimonial-progress .progress-box .progress-item {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 120px 1fr 50px;
  align-items: center;
}
.testimonial-progress .progress-box .progress-item span {
  font-size: 14px;
}
.testimonial-progress .progress-box .progress-item .value {
  text-align: right;
}
.testimonial-progress .progress-box .progress-item .bar {
  background: #e2e2e2;
  height: 6px;
  border-radius: 5px;
  overflow: hidden;
}
.testimonial-progress .progress-box .progress-item .bar div {
  height: 100%;
  background: #0abf72;
}

/* -------------- RESPONSIVE ---------------- */
@media (max-width: 992px) {
  .testimonial-progress {
    grid-template-columns: 1fr;
  }
  .big-chart .chart-container {
    height: 350px;
  }
}
.task-updates-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
}

.card-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  padding-bottom: 20px;
  overflow: hidden;
}
.card-box .card-header {
  background-color: #0f2b4c;
  background-size: cover;
  padding: 22px 25px;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-box .card-header .add-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  background: #21d098;
  color: #fff;
  cursor: pointer;
}
.card-box .subtitle {
  padding: 18px 25px;
  font-size: 15px;
  color: #777;
}

.task-item,
.update-item {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  border-bottom: 1px solid #f3f3f3;
  position: relative;
}
.task-item::before,
.update-item::before {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 3px;
}
.task-item h4,
.update-item h4 {
  font-size: 15px;
  margin: 0;
}
.task-item p,
.update-item p {
  margin: 0;
  font-size: 13px;
  color: #7a7a7a;
}
.task-item .time,
.update-item .time {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  display: block;
  margin-top: 4px;
}

.update-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 15px;
}
.update-item .time-right {
  margin-left: auto;
  font-size: 13px;
  color: #777;
}

/* Color bars */
.color-1::before {
  background: #ffb300;
}

.color-2::before {
  background: #00aaff;
}

.color-3::before {
  background: #b47fff;
}

.color-4::before {
  background: #ff4f7a;
}

.color-5::before {
  background: #3ed3a3;
}

/* Read More button */
.read-more {
  text-align: center;
  margin-top: 20px;
}
.read-more button {
  background: #21d098;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.read-more button:hover {
  background: #1ab080;
}/*# sourceMappingURL=style.css.map */