@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

/* colors */
.green{
  color: #aeb884;
  text-decoration: none;
}

.soil{
  color: #e0a46e;
  text-decoration: none;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  color: #2b2b2b;
}

/* HEADER */
.header {
  background: #fff;
  padding: 20px 20px;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #194a33;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  z-index: 1000;
}

.menu a {
  text-decoration: none;
  color: #e0a46e;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  transition: 0.3s all;
}

.menu a:hover{
  color: #aeb884;
}

.menu li button{
  background-color: #aeb884;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 8px;
  transition: 0.3s all;
}

.menu li button:hover{
  background-color: #e0a46e;
}

#nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #194a33;
  border-radius: 2px;
}

@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    display: none;
  }

  #nav-toggle:checked ~ .menu {
    display: flex;
  }
}


/* HERO */
.hero {
  background: linear-gradient(135deg, #fdfbf2, #f0fcf4);
  color: #fff;
  height: 90vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: #000;
}

.hero p {
  margin-bottom: 25px;
  color: #2c2c2c;

}

.hero .btn-solid{
    padding: 10px 20px;
    border: 2px solid #e0a46e;
    color: #fff;
    font-weight: bold;
    background-color: #e0a46e;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    transition: 0.3s all;
}

.hero .btn-solid:hover{
  transform: translateY(-5px);
}

.hero .btn-outlined{
    padding: 10px 20px;
    border: 2px solid #e0a46e;
    color: #e0a46e;
    font-weight: bold;
    background-color: #fff;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    transition: 0.3s all;
}

.hero .btn-outlined:hover{
    transform: translateY(-5px);

}

.section-title{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-title h3{
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.section-title-underline{
    border: 2px solid #e0a46e;
    background-color: #e0a46e;
    height: 5px;
    width: 50px;
    border-radius: 5px;
}

@media (max-width: 768px) {
  .section-title h3{
      text-align: center;
  }
}


/* FEATURES */
.features {
  padding: 80px 0;
  background: #f6f9f7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* CONTENT */
.content {
  padding: 80px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.image-box {
  height: 350px;
  background: #194a33;
  border-radius: 25px;
}

/* CTA */
.cta {
  background: #194a33;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.btn.light {
  background: #fff;
  color: #194a33;
}

/* FOOTER */
.footer {
  padding: 40px 20px;
  background: #2e2e2e;
  color: #aaa;
}

.footer-title{
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  margin-bottom: 15px;
}

.footer p{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #a7a6b4;
}

footer ul{
  margin-left: -30px;
}

.footer ul li{
  list-style: none;
  line-height: 2em;
}

.footer ul a{
  color: #a7a6b4;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  transition: 0.3s all;
}

.footer ul a:hover{
  color: #dddde8;
}

.footer .social-icons a{
  font-size: 20px;
  text-decoration: none;
  color: #a7a6b4;
}

.footer2 {
  padding: 20px 20px;
  background: #2e2e2e;
  color: #aaa;
}

.auth-icon1{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  background-color: #f4e5d7;
  color: #d68e4f;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  margin-bottom: 20px;
}

.auth-icon2{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  background-color: #e9f0d0;
  color: #aeb884;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  margin-bottom: 20px;
}

.btn-large1{
  position: relative;
  background-color: #e0a46e;
  border: none;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s all;
}

.btn-large1:hover{
  transform: translateY(-5px);
}

.btn-large2{
  background-color: #aeb884;
  border: none;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s all;
}

.btn-large2:hover{
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }
}

/*******************************
  Eligible Section
*******************************/
.eligible-section .card{
  border: 1px solid #f9f1cd;
  padding: 20px;
  transition: 0.3s all;
  height: 100%;
  box-shadow: 1px 1px 5px 1px #f5f4eb;
} 
.eligible-section .card:hover{
  transform: translateY(-5px)
}

.eligible-section-card-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  width: 50px;
  height: 50px;
  background-color: #eecbad ;
  color: #c56c1e;
  border-radius: 8px;
  margin-bottom: 25px;
}

/*********************************
  Assesment Section
*********************************/
:root {
  --base: #fdfbf2;
  --dusk: #2c2c2c;
  --soil: #e0a46e;
  --green: #7d8a54;
  --green-soft: #eef1e6;
}
.assessment-section {
  /* background: linear-gradient(180deg, #ffffff 0%, var(--green-soft) 100%); */
  padding: 5rem 0;
}

.section-title h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--dusk);
  letter-spacing: -0.5px;
}

.section-title-underline {
  width: 80px;
  height: 3px;
  background: var(--soil);
  margin-top: 10px;
  border-radius: 2px;
}

.assessment-section p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}
.assessment-card {
  margin-top: -30px;
  border: none !important;
  border-radius: 18px;
  background: #fff;
  height: 100%;
  transition: all 0.35s ease;
  /* box-shadow: 0 12px 30px rgba(0,0,0,0.06); */
  background-color: #fdfbf2;
}

.assessment-card:hover{
  transform: translateY(-5px);
}

.assessment-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.2rem;
}

/* .assessment-card i {
  font-size: 28px;
  color: var(--soil);
  margin-bottom: 15px;
} */

.assessment-card h5 {
  font-size: 18px;
  color: var(--dusk);
  margin-bottom: 12px;
}

.assessment-card p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.assessment-card-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 22px;
  background-color: #bac688;
  color: #586136;
  border-radius: 50%;
  margin-bottom: 20px;
}

/* .assessment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    var(--green-soft) 100%
  );
} */

/* .assessment-card:hover i {
  color: var(--green);
} */

/********************************
  Dark Section
********************************/


.dark-section {
  background: radial-gradient(circle at top, #1a1a1a, #2e2e2e);
  color: #eaeaea;
}

.dark-card {
  background: linear-gradient(145deg, #1b1b1b, #323131);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 rgba(0, 255, 200, 0);
  padding: 20px;
}

.dark-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 255, 200, 0.15);
  border-color: #aeb884;
}

.dark-card h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.dark-card p {
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #dcdcdc;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #6affc7;
  font-size: 14px;
}

.dark-card-icon{
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 25px;
  background-color: #333;
  margin-bottom: 20px;
  color: #eee;
}

/***************************
    Auth Forms
****************************/

.auth-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  width: 500px;
}

.auth-card h2 {
  text-align: center;
  margin-bottom: 10px;
}

.underline {
  display: block;
  width: 60px;
  height: 4px;
  margin: 0 auto 25px;
  border-radius: 4px;
}

.inner-card {
  /* border: 1px solid #eee; */
  border-radius: 14px;
  padding: 30px;
  text-align: center;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  background-color: #e0a46e;
}

.inner-card h3 {
  margin-bottom: 5px;
}

.inner-card p {
  color: #777;
  margin-bottom: 20px;
}

.input-group {
  position: relative;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.input-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

.input-group input {
  width: 100%;
  padding: 12px 12px 12px 42px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.link {
  color: #8b9467;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  
}

.auth-card button { 
  width: 100%;
  border: none;
  background: #e0a46e; 
  border: 2px solid #e0a46e;
  border-radius: 8px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 10px 0px;
  margin-bottom: 10px ;
  transition: 0.3s all;
}

.auth-card button:hover{
  background-color: #fff;
  border: 2px solid #e0a46e;
  color: #e0a46e;
}


.switch-text {
  font-size: 14px;
}

.switch-text a {
  color: #e7a46b;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .auth-card{
    width: 100%;
    margin: 0px 20px;
    padding: 0px;
  }
}


/***************************
    Sidebar
****************************/
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 300px;
    background-color: #fdfbf2;
    padding: 20px;
    transition: all 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE & Edge */
  }

  .sidebar::-webkit-scrollbar {
    display: none;                /* Chrome, Safari */
  }

  /* Hidden state */
  .sidebar.hidden {
    left: -300px;
  }

  .sidebar h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
  }

  .sidebar ul {
    list-style: none;
  }

  .sidebar ul li {
    padding: 15px 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.2s;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .sidebar ul li a{
    text-decoration: none;
    color: #2e2e2e;
    transition: 0.3s all;
  }

  .sidebar ul li a:hover {
    color: #e0a46e;
  }

  .sidebar ul li i {
    margin-right: 10px;
  }

  /* Toggle button */
  .toggle-btn {
    /* position: fixed; */
    margin-bottom: 10px;
    left: 20px;
    background-color: #194a33;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    z-index: 1100;
    transition: all 0.3s ease;
  }

  .avatar{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 50px;
    margin-top: 30px;
  }

  /* Main content */
  .main-content {
    flex: 1;
    margin-left: 300px;
    transition: all 0.3s ease;
  }

  .sidebar.hidden ~ .main-content {
    margin-left: 0;
  }

  .v-wrapper{
    min-height: 95vh;
  }

  /* Responsive for mobile */
  @media (max-width: 768px) {
    .sidebar {
      left: -300px; /* hidden by default on mobile */
    }
    .sidebar.show {
      left: 0; /* slide in when toggled */
    }
    .main-content {
      margin-left: 0;
    }
  }

.dashboard-header{
  margin-left: 5px;
  margin-top: 30px;
}


/* Sidebar dropdown */
.sb-dropdown {
  padding: 0;
}

.sb-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 15px 10px; */
  text-decoration: none;
  color: #2e2e2e;
  cursor: pointer;
}

.sb-dropdown-toggle:hover {
  color: #e0a46e;
}

.sb-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Sub menu */
.sb-dropdown-list {
  list-style: none;
  padding-left: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* Open state */
.sb-dropdown.open .sb-dropdown-list {
  max-height: 300px; /* enough for items */
}

.sb-dropdown.open .sb-arrow {
  transform: rotate(180deg);
}

.sb-dropdown-list li {
  padding: 10px 0;
}

.sb-dropdown-list li a {
  text-decoration: none;
  font-size: 14px;
  color: #555;
  display: block;
}

.sb-dropdown-list li a:hover {
  color: #e0a46e;
}

.node-assessment {
    --base: #fdfbf2;
    --dusk: #2e2e2e;
    --soil: #e0a46e;
    --green: #aeb884;

    font-family: 'Poppins', sans-serif;
    color: var(--dusk);
    border-radius: 8px;
}

.node-assessment .page-title {
    font-weight: 800;
    letter-spacing: 0.4px;
}

.node-assessment .box {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.node-assessment .box-header {
    /* background: linear-gradient(135deg, var(--green), #c3cca0); */
    background-color: #2e2e2e;
    padding: 24px 28px;
    border-bottom: none;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.node-assessment .box-header h4 {
    font-weight: 700;
    color: #fff;
}

.node-assessment .badge-info {
    background-color: var(--dusk);
    border-radius: 20px;
    padding: 6px 14px;
    font-weight: 500;
    background-color: #e0a46e;

}

.node-assessment .progress {
    height: 10px;
    border-radius: 20px;
    background-color: #e1e2dc
}

.node-assessment .progress-bar-primary {
    background-color: var(--soil);
    border-radius: 20px;
}

.node-assessment .box-body {
    padding: 30px;
}

.node-assessment .box-title.text-info {
    color: var(--dusk) !important;
    font-weight: 700;
    border-left: 4px solid var(--soil);
    padding-left: 12px;
}

.node-assessment .form-group label {
    font-weight: 500;
    font-size: 15px;
}

.node-assessment textarea.form-control {
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
}

.node-assessment textarea.form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(174,184,132,0.25);
}

.node-assessment .c-inputs-stacked .radio {
    display: flex;
    gap: 32px;
}

.node-assessment .c-inputs-stacked label {
    font-weight: 600;
    cursor: pointer;
}

.node-assessment .alert-danger {
    background-color: #fff1f1;
    border-left: 5px solid #9e3f3f;
    color: #6b1f1f;
}

.node-assessment .box-footer {
    background: #fafafa;
    padding: 20px 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.node-assessment .btn-primary {
    background-color: var(--green);
    border: none;
    color: var(--dusk);
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 26px;
}

.node-assessment .btn-primary:hover {
    background-color: #9aa772;
}

.node-assessment .btn-warning {
    background-color: var(--soil);
    border: none;
    color: var(--dusk);
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 26px;
}

@media (max-width: 768px) {
  .node-assessment .btn-primary {
      display: flex;
      align-items: center;
      padding: 10px 20px;
      font-size: 14px;
  }

  .node-assessment .btn-warning {
    display: flex;
      align-items: center;
      padding: 5px 20px;
      font-size: 14px;

  }
}

.assessment-question-review-header{
  background-color: #2e2e2e;
  color: #fff;
  padding: 18px 28px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.assessment-question-review-sub-header{
  background-color: #aeb884;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;

}

.node-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.node-badge.success {
    background: rgba(183,192,138,0.35);
    color: #4b5c2f;
}
.node-badge.danger {
    background: rgba(224,164,110,0.35);
    color: #8a4f1f;
}

.node-submit-btn {
    background: #202020;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s all;
}
.node-submit-btn:hover {
    background: #e0a46e;
    color: #202020;
}

/***************************
  Result Page
***************************/

.node-result-page {
  --base: #fdfbf2;
  --dusk: #2c2e2e;
  --soil: #e0a46e;
  --green: #b1be8a;

  --success: #6f8f72;
  --warning: #e0a46e;
  --danger: #c96b5f;

  padding: 2rem;
  min-height: 100vh;
}

.node-result-page .result-hero {
  background: var(--green);
  border-radius: 22px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.node-result-page .result-hero h2 {
  font-weight: 800;
  color: var(--dusk);
}

.node-result-page .result-hero p {
  color: #3e3e3e;
}

.node-result-page .level-pill {
  background: var(--base);
  border-radius: 999px;
  padding: 1.4rem 3rem;
  display: inline-block;
  margin: 1.5rem 0;
  box-shadow: 0 12px 25px rgba(0,0,0,.08);
}

.node-result-page .level-pill h1 {
  margin: 0;
  font-weight: 800;
  color: var(--dusk);
}

.node-result-page .result-card {
  border: none;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

.node-result-page .card-green {
  background: #eef3ea;
}

.node-result-page .card-soil {
  background: #f6ede5;
}

.node-result-page .card-header {
  background: transparent;
  border-bottom: none;
}

.node-result-page .progress {
  height: 8px;
  border-radius: 10px;
  background: #e6e6e6;
}

.node-result-page .progress-bar-success {
  background: var(--success);
}

.node-result-page .progress-bar-warning {
  background: var(--warning);
}

.node-result-page .progress-bar-danger {
  background: var(--danger);
}

.node-result-page table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.node-result-page thead {
  background: var(--green);
}

.node-result-page th {
  color: var(--dusk);
  font-weight: 600;
  border: none;
}

.node-result-page td {
  vertical-align: middle;
}

.node-result-page .btn-primary {
  background: var(--dusk);
  border: none;
  border-radius: 10px;
}

.node-result-page .btn-success {
  background: var(--soil);
  border: none;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}


@media (max-width: 768px) {
  .node-result-page .btn-success {
    font-size: 14px;
  }
}

.node-result-page .badge-success {
    background: rgba(183, 192, 138, 0.644);
    color: #4b5c2f  !important;
}
.node-result-page .badge-danger {
    background: rgba(224,164,110,0.35);
    color: #814616 !important;
}
.node-result-page .badge-warning {
    background: rgba(255, 241, 111, 0.74);
    color: rgba(114, 95, 33) !important;
}

.node-result-page table{
  background-color: #f6ede5 !important;
  width: 100%;  
}

.node-result-page thead tr th{
  padding: 10px !important;
}

.node-result-page tr td{
  padding: 0px 10px !important;
}


/**************************************
  No Assessment Cards
**************************************/


.no-assessment-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #fdfbf2; */
}

.no-assessment-card {
    background: #ffffff;
    padding: 3rem 3.5rem;
    border-radius: 24px;
    text-align: center;
    max-width: 820px;
    box-shadow: 0 20px 40px rgba(46, 46, 46, 0.08);
    border: 1px solid rgba(160, 184, 132, 0.35); /* Greens */
}

.no-assessment-card h3 {
    color: #2e2e2e; /* Dusk */
    margin-bottom: 0.75rem;
}

.no-assessment-card p {
    color: #6b6b6b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.no-assessment-wrapper .icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: rgba(160, 184, 132, 0.2); /* Greens */
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-assessment-wrapper .icon-circle i {
    font-size: 28px;
    color: #2e2e2e; /* Dusk */
}

.no-assessment-wrapper .start-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 2.5rem;
    border-radius: 999px;
    background: #e0a46e; /* Soil */
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(224, 164, 110, 0.35);
}

.no-assessment-wrapper .start-btn i {
    transition: transform 0.3s ease;
}

.no-assessment-wrapper .start-btn:hover {
    background: #d89555;
    box-shadow: 0 14px 30px rgba(224, 164, 110, 0.45);
}

.no-assessment-wrapper .start-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
  .no-assessment-card {
      width: 100%;
      margin: 20px
  }
}

