
.goals-page-bg {

    background-color: #fff;

    min-height: 100vh;

    padding: 40px;

    border-radius: 30px;

    position: relative;

    overflow: hidden;

}
.goals-top-section {

    text-align: center;

    margin-bottom: 40px;

}


.goals-main-heading {

    font-size: 40px;

    font-weight: 700;

    color: #111827;

    margin-bottom: 20px;

}


.goals-summary-card {

    display: inline-block;

    background: rgba(255,255,255,0.8);

    padding: 20px 40px;

    border-radius: 999px;

    font-size: 28px;

    color: #1f3b6d;


    box-shadow:
    0 -4px 12px rgba(0,0,0,0.03),
    0 10px 20px rgba(0,0,0,0.06);



}

.goals-green {

    color: #16a34a;

    font-weight: 700;

}

.goals-purple {

    color: #9333ea;

    font-weight: 700;

}



.goal-card {

    background: #eadcf4;

    border-radius: 30px;

    padding: 28px;

    display: flex;
    align-items: flex-start;

    gap: 22px;

    max-width: 100%;

    box-shadow: 0 10px 20px rgba(0,0,0,0.05);

}


.goal-icon {

    width: 100px;
    height: 100px;

    border-radius: 28px;

    background: rgba(255,255,255,0.45);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 48px;

    color: #9333ea;

    flex-shrink: 0;

}

.goal-content {

    flex: 1;

}

.goal-title {

    font-size: 25px;

    font-weight: 700;

    color: #111827;

    margin-bottom: 10px;

}

.goal-time {

    font-size: 16px;

    color: #6b7280;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 8px;

    background: rgba(255,255,255,0.45);

    padding: 8px 14px;

    border-radius: 999px;

}

.goal-time i {

    color: #f59e0b;

}


.goal-description {

    font-size: 16px;

    color: #4b5563;

    margin-bottom: 40px;

}


.goal-progress-btn {

    width: 100%;

    border: none;

    background: rgba(255,255,255,0.55);

    border-radius: 20px;

    padding: 10px;

    font-size: 24px;

    color: #4b5563;

    font-weight: 500;

    transition: 0.2s ease;
    cursor: pointer;

}

.goal-progress-btn:hover {

    background: white;

    transform: translateY(-2px);

}


.goal-card-blue {

    background: #dbeafe;

}


.goal-card-pink {

    background: #fce7f3;

}
.goal-card-peach {

    background: #fde7d7;

}
.goal-card-green {

    background: #dcfce7;

}

.progress-circle2 {
  width: 32px;
  height: 32px;
  border-radius: 50%;

  background: conic-gradient(  #a855f7 0% 30%, #e5e7eb 30% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 8px;
}

@media (max-width: 768px) {

  .goals-page-bg {
    padding: 20px 14px;
    border-radius: 20px;
  }

  .goals-top-section {
    margin-bottom: 28px;
  }

  .goals-main-heading {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .goals-summary-card {
    width: 100%;
    padding: 16px 18px;
    font-size: 18px;
    border-radius: 20px;
    line-height: 1.5;
  }

  .goal-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 24px;
    gap: 18px;
  }

  .goal-icon {
    width: 74px;
    height: 74px;
    font-size: 34px;
    border-radius: 22px;
  }

  .goal-content {
    width: 100%;
  }

  .goal-content .d-flex.justify-content-between {
    flex-direction: column;
    align-items: center !important;
    gap: 14px;
  }

  .goal-title {
    font-size: 22px;
    margin-bottom: 0;
  }

  .goal-description {
    font-size: 15px;
    margin-top: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .goal-time {
    font-size: 14px;
    padding: 7px 12px;
  }

  .goal-progress-btn {
    font-size: 18px;
    padding: 12px;
    border-radius: 16px;
  }

  .progress-circle2 {
    width: 36px;
    height: 36px;
  }

  .inner {
    width: 26px;
    height: 26px;
    font-size: 9px;
  }
  .goal-card .d-flex.align-items-center {
    justify-content: center;
    width: 100%;
    margin-top: 10px ;
  }
  .goal-card .d-flex.align-items-center {
  gap: 10px;
}
}