
    :root{
      --primary:#3264ff;
      --text:#111827;
      --muted:#6b7280;
      --bg-soft:#f5f6fb;
      --soft-bg: #f5f6fb;
      --text-main: #1f2933;
    }


    body{
      margin:0;
      font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    }

    /* FULL HEIGHT */
    .login-page{
      height:100vh;
      overflow:hidden;
    }

    /* LEFT IMAGE */
    .login-image{
      background:var(--bg-soft);
      height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:2rem;
    }

    .login-image img{
      max-width:90%;
      height:auto;
    }

    /* RIGHT FORM */
    .login-form{
      height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:2rem;
    }

    .login-box{
      width:100%;
      max-width:420px;
    }

    .login-title{
      font-size:1.45rem;
      font-weight:800;
      color:var(--text);
      margin-bottom:1.5rem;
      line-height:1.2;
    }

    .form-label{
      font-size:.78rem;
      color:var(--muted);
    }

    .form-control{
      border-radius:.9rem;
      padding:.7rem .85rem;
      font-size:.9rem;
    }

    .btn-primary{
      background:var(--primary);
      border-color:var(--primary);
      border-radius:.9rem;
      padding:.65rem;
      font-weight:600;
    }

    .btn-primary:hover{
      background:#2755e6;
      border-color:#2755e6;
    }

    .link-soft{
      font-size:.78rem;
      color:var(--primary);
      font-weight:600;
      text-decoration:none;
    }

    .divider{
      display:flex;
      align-items:center;
      gap:.75rem;
      font-size:.75rem;
      color:#9ca3af;
      margin:1.2rem 0;
    }

    .divider::before,
    .divider::after{
      content:"";
      flex:1;
      height:1px;
      background:#e5e7eb;
    }

    .socials{
      display:flex;
      justify-content:center;
      gap:.6rem;
    }

    .social-btn{
      width:42px;
      height:36px;
      border-radius:.7rem;
      border:1px solid #e5e7eb;
      display:flex;
      align-items:center;
      justify-content:center;
      background:#fff;
    }

    .small-text{
      font-size:.78rem;
      color:var(--muted);
    }

    /* MOBILE: hide image */
    @media (max-width: 991.98px){
      .login-image{
        display:none;
      }
      .login-form{
        width:100%;
      }
    }

/* FULL HEIGHT */
    .auth-page{
      height:100vh;
      overflow:hidden;
    }

    /* LEFT IMAGE */
    .auth-image{
      background:var(--bg-soft);
      height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:2rem;
    }

    .auth-image img{
      max-width:90%;
      height:auto;
    }

    /* RIGHT FORM */
    .auth-form{
      height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:2rem;
    }

    .auth-box{
      width:100%;
      max-width:420px;
    }

    .auth-title{
      font-size:1.45rem;
      font-weight:800;
      color:var(--text);
      margin-bottom:.5rem;
      line-height:1.2;
    }

    .auth-subtitle{
      font-size:.85rem;
      color:var(--muted);
      line-height:1.55;
      margin-bottom:1.4rem;
    }

    .form-label{
      font-size:.78rem;
      color:var(--muted);
    }

    .form-control{
      border-radius:.9rem;
      padding:.7rem .85rem;
      font-size:.9rem;
    }

    .btn-primary{
      background:var(--primary);
      border-color:var(--primary);
      border-radius:.9rem;
      padding:.65rem;
      font-weight:600;
    }

    .btn-primary:hover{
      background:#2755e6;
      border-color:#2755e6;
    }

    .link-soft{
      font-size:.78rem;
      color:var(--primary);
      font-weight:600;
      text-decoration:none;
    }

    .small-text{
      font-size:.78rem;
      color:var(--muted);
    }

    /* MOBILE: hide image */
    @media (max-width: 991.98px){
      .auth-image{ display:none; }
      .auth-form{ width:100%; }
    }

/* DASHBOARD WIDGETS  */




    body {
      font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
      background-color: #ffffff;
      color: var(--text-main);
    }

    a {
      text-decoration: none;
    }

    /* NAVBAR */
    .brand-logo {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: linear-gradient(135deg, #ff6b6b, #feca57, #54a0ff, #5f27cd);
      margin-right: .45rem;
    }

    .brand-name {
      font-weight: 700;
      font-size: 1.1rem;
    }

    .search-wrapper {
      position: relative;
    }

    .search-wrapper i {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: .9rem;
      color: #9e9e9e;
    }

    .search-bar {
      border-radius: 999px;
      border: 1px solid #e0e0e0;
      padding-left: 2.7rem;
      background-color: #fff;
    }

    .btn-pill {
      border-radius: 999px;
    }

    /* HERO */
    .hero-section {
      padding: 4.5rem 0 4rem;
      background: radial-gradient(circle at 15% 0, #eef2ff 0, #ffffff 60%);
    }

    .hero-title {
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: .98rem;
      color: #6b7280;
      max-width: 420px;
    }

    .hero-cta {
      margin-top: 1.8rem;
    }

    .hero-cta .btn-primary {
      padding-inline: 1.9rem;
    }

    .hero-stat {
      font-size: .85rem;
      color: #6b7280;
    }

    .hero-stat strong {
      font-size: 1.05rem;
      color: #111827;
    }

    .hero-images {
      position: relative;
      min-height: 260px;
    }

    .hero-card {
      position: absolute;
      width: 260px;
      border-radius: 1.4rem;
      box-shadow: 0 24px 60px rgba(15, 23, 42, .25);
      overflow: hidden;
      background-color: #e5e7eb;
      background-size: cover;
      background-position: center;
    }

    .hero-card.card-top {
      top: 0;
      right: 18%;
      transform: rotate(-6deg);
    }

    .hero-card.card-bottom {
      bottom: 0;
      left: 8%;
      transform: rotate(6deg);
    }

    .hero-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15,23,42,.45), transparent 40%);
    }

    .hero-card-label {
      position: absolute;
      left: 14px;
      bottom: 14px;
      color: #fff;
      font-size: .8rem;
      font-weight: 500;
    }

    /* SECTION TITLES */
    .section-title {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: .5rem;
    }

    .section-subtitle {
      color: #6b7280;
      font-size: .95rem;
      max-width: 560px;
      margin: 0 auto 2rem;
    }

    /* FEATURES */
    .feature-icon {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #eef2ff;
      color: var(--primary);
      font-size: 1.2rem;
      margin-bottom: .75rem;
    }

    .feature-card {
      background-color: #fff;
      border-radius: 1.1rem;
      padding: 1.4rem 1.3rem;
      box-shadow: 0 16px 40px rgba(15, 23, 42, .05);
      height: 100%;
    }

    /* CATEGORY CARDS */
    .category-card {
      border-radius: 1.1rem;
      background-color: #fff;
      box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
      overflow: hidden;
      height: 100%;
    }

    .category-thumb {
      height: 160px;
      background-size: cover;
      background-position: center;
    }

    .category-body {
      padding: 1.1rem 1.2rem 1.2rem;
    }

    .category-title {
      font-weight: 600;
      margin-bottom: .35rem;
    }

    .category-text {
      font-size: .85rem;
      color: #6b7280;
      margin-bottom: .7rem;
    }

    /* INSTRUCTORS GRID */
    .teachers-grid img {
      border-radius: 1.1rem;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* TESTIMONIALS */
    .testimonials-strip {
      background: linear-gradient(135deg, #eef2ff, #e0f2fe);
      border-radius: 2rem;
      padding: 2.3rem 2rem 2.1rem;
      margin-top: 1rem;
    }

    .testimonial-card {
      background-color: #fff;
      border-radius: 1.1rem;
      padding: 1.2rem 1.2rem 1.1rem;
      box-shadow: 0 14px 40px rgba(15, 23, 42, .08);
      height: 100%;
      font-size: .9rem;
    }

    .stars {
      color: #fbbf24;
      font-size: .85rem;
      margin-bottom: .35rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      margin-top: .75rem;
      font-size: .82rem;
      color: #6b7280;
    }

    .testimonial-author span:first-child {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: #e5e7eb;
      margin-right: .55rem;
    }

    /* COURSE CARDS */
    .course-card {
      border-radius: 1.1rem;
      overflow: hidden;
      background-color: #fff;
      box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
      height: 100%;
    }

    .course-thumb {
      height: 160px;
      background: radial-gradient(circle at 20% 0, #4f46e5, #0f172a);
    }

    .course-body {
      padding: 1.1rem 1.2rem 1.2rem;
      font-size: .87rem;
    }

    .course-meta {
      font-size: .77rem;
      color: #9ca3af;
    }

    .course-title {
      font-weight: 600;
      margin: .4rem 0 .35rem;
    }

    /* STATS */
    .stats-block {
      background-color: #f9fafb;
      border-radius: 1.2rem;
      padding: 2.2rem 2rem;
    }

    .stat-pill {
      border-radius: 1rem;
      background-color: #ffffff;
      padding: 1.1rem 1.2rem;
      text-align: center;
      box-shadow: 0 12px 32px rgba(15, 23, 42, .04);
    }

    .stat-number {
      font-size: 1.4rem;
      font-weight: 700;
    }

    .stat-label {
      font-size: .8rem;
      color: #6b7280;
    }

    /* FAQ */
    .faq-section {
      background-color: #f9fafb;
      border-radius: 1.6rem;
      padding: 2.3rem 2rem;
    }

    .faq-section h3 {
      font-size: 1.4rem;
      margin-bottom: .5rem;
    }

    /* BLOG CARDS */
    .blog-card {
      border-radius: 1.1rem;
      overflow: hidden;
      background-color: transparent !important;
      /* box-shadow: 0 14px 40px rgba(15, 23, 42, .06); */
      height: 100%;
    }

    .blog-thumb {
      height: 120px;
      background-size: cover;
      background-position: center;
    }

    .blog-body {
      padding: .9rem 1rem 1rem;
      font-size: .85rem;
    }

    /* NEWSLETTER */
    .newsletter-section {
      background: linear-gradient(135deg, #eef2ff, #e0f2fe);
      border-radius: 2rem;
      padding: 2.6rem 2.5rem;
      margin-top: 3rem;
    }

    .newsletter-photo {
      border-radius: 1.6rem;
      background: #e5e7eb;
      width: 220px;
      height: 220px;
      background-position: center;
      background-size: cover;
    }

    /* FOOTER */
    .footer-main {
      background-color: #050505;
      color: #f8f9fa;
      padding: 3rem 0 1.5rem;
      margin-top: 3.5rem;
      font-size: .9rem;
    }

    .footer-logo {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      /* background: linear-gradient(135deg, #ff6b6b, #feca57, #54a0ff, #5f27cd); */
      margin-bottom: .75rem;
    }

    .footer-title {
      font-weight: 600;
      margin-bottom: .75rem;
      font-size: .95rem;
    }

    .footer-main a {
      color: #f8f9fa;
      opacity: .8;
    }

    .footer-main a:hover {
      opacity: 1;
    }

    .social-btn {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(248, 249, 250, .35);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: .4rem;
      font-size: .9rem;
    }

    @media (max-width: 991.98px) {
      .hero-section {
        padding-top: 3.25rem;
      }
      .hero-title {
        font-size: 2.1rem;
      }
      .hero-images {
        margin-top: 2rem;
      }
      .hero-card {
        position: static;
        transform: none;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 320px;
      }
      .hero-card-wrapper {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
      }
    }

    /* ===== Home sections (features + categories) ===== */
.home-section {
  padding: 4rem 0;
}

.home-kicker {
  font-size: .95rem;
  color: #6b7280;
  max-width: 720px;
  margin: .5rem auto 0;
}

.features-grid {
  margin-top: 2.25rem;
}

.feature-item {
  text-align: center;
  padding: 1.25rem 1rem;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eef2ff;
  color: #3264ff;
  margin-bottom: .75rem;
}

.feature-title {
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .4rem;
  color: #111827;
}

.feature-text {
  font-size: .82rem;
  color: #6b7280;
  margin: 0 auto;
  max-width: 260px;
  line-height: 1.45;
}

/* subtle separators like screenshot */
.feature-sep {
  border-top: 1px solid #eef2f7;
}

/* Categories */
.categories-wrap {
  padding-top: 2.25rem;
}

.cat-lead {
  font-size: .85rem;
  color: #6b7280;
  line-height: 1.6;
  margin-top: .65rem;
}

.course-card {
  border: 1px solid #eef2f7;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  height: 100%;
}

.course-thumb {
  height: 215px;
  background: #e5e7eb;
  background-size: cover;
  background-position: center;
}

.course-body {
  padding: .9rem 1rem 1rem;
}

.course-name {
  font-weight: 600;
  font-size: .92rem;
  margin: 0;
  color: #111827;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: .35rem;
  font-size: .78rem;
  color: #6b7280;
}

.course-rating i {
  color: #fbbf24;
  margin-right: .25rem;
}

.btn-soft-primary {
  background: #3264ff;
  border-color: #3264ff;
  color: #fff;
  border-radius: 999px;
  padding: .35rem 1.05rem;
  font-size: .78rem;
}

.btn-soft-primary:hover {
  background: #2755e6;
  border-color: #2755e6;
}

.cat-all-link {
  font-size: .8rem;
  color: #3264ff;
  font-weight: 600;
}

.cat-all-link i {
  vertical-align: -1px;
}

@media (max-width: 991.98px) {
  .feature-item { padding: 1.1rem .75rem; }
  .home-section { padding: 3rem 0; }
}

/* ===== Featured courses + Impact stats ===== */
.section-pad {
  padding: 3.5rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: #111827;
}

.section-head p {
  margin: 0 auto;
  max-width: 680px;
  font-size: .9rem;
  color: #6b7280;
}

/* Featured course card (small) */
.fcourse-card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(15, 23, 42, .07);
  height: 100%;
}

.fcourse-thumb {
  height: 215px;
  background: #e5e7eb;
  background-position: center;
  background-size: cover;
}

.fcourse-body {
  padding: .85rem .9rem 1rem;
}

.fcourse-title {
  font-size: .82rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.25;
  margin-bottom: .45rem;
  min-height: 2.4em; /* align heights */
}

.fcourse-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .72rem;
  color: #6b7280;
  margin-bottom: .7rem;
}

.fcourse-meta .star {
  color: #fbbf24;
}

.fcourse-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}

.icon-soft-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #e6ebff;
  background: #f3f6ff;
  color: #3264ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-pill {
  background: #3264ff;
  border-color: #3264ff;
  color: #fff;
  border-radius: 999px;
  padding: .35rem .95rem;
  font-size: .75rem;
  white-space: nowrap;
}

.btn-primary-pill:hover {
  background: #2755e6;
  border-color: #2755e6;
}

/* Explore link */
.explore-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: #3264ff;
  font-weight: 600;
}

/* Impact section */
.impact-wrap {
  padding-top: 2.5rem;
  border-top: 1px solid #eef2f7;
}

.impact-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: .6rem;
}

.impact-text {
  color: #6b7280;
  font-size: .85rem;
  line-height: 1.6;
  max-width: 420px;
}

.impact-grid .impact-card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .05);
  height: 100%;
  text-align: center;
}

.impact-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: .25rem;
}

.impact-label {
  font-size: .78rem;
  color: #6b7280;
  margin: 0;
}

/* ===== FAQ / Blog / Newsletter ===== */
.block-pad {
  padding: 3.5rem 0;
}

.center-head {
  text-align: center;
  margin-bottom: 1.6rem;
}

.center-head h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: #111827;
}

.center-head p {
  margin: 0 auto;
  max-width: 720px;
  font-size: .88rem;
  color: #6b7280;
}

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.accordion.faq-acc .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #eef2f7;
}

.accordion.faq-acc .accordion-button {
  background: transparent;
  padding: .95rem 0;
  font-size: .92rem;
  font-weight: 600;
  color: #111827;
  box-shadow: none;
}

.accordion.faq-acc .accordion-button::after {
  /* make icon small + purple-ish */
  transform: scale(.9);
  opacity: .7;
}

.accordion.faq-acc .accordion-button:not(.collapsed) {
  color: #111827;
}

.accordion.faq-acc .accordion-body {
  padding: 0 0 1rem 0;
  font-size: .85rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Blog */
.blog-kicker {
  font-size: .72rem;
  color: #3264ff;
  font-weight: 600;
  text-align: center;
  margin-bottom: .35rem;
}

.blog-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.6rem;
  color: #111827;
}

.blog-card {
  /* border: 1px solid #eef2f7; */
  border-radius: 1.1rem;
  overflow: hidden;
  background: transparent !important;
  /* box-shadow: 0 14px 42px rgba(15,23,42,.06); */
  height: 100%;
}

.blog-thumb {
  height: 200px;
  background: #e5e7eb;
  background-size: cover;
  background-position: center;
}

.blog-body {
  padding: .85rem .9rem 1rem;
}

.blog-body h6 {
  font-size: .85rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.25;
}

/* Newsletter */
.newsletter-box {
  background: #eef2f6;
  border-radius: 1.7rem;
  padding: 2.3rem 2.2rem;
  overflow: hidden;
  position: relative;
}

.newsletter-box::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(50,100,255,.25);
  border-radius: 999px;
}

.newsletter-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: .6rem;
}

.newsletter-box p {
  font-size: .85rem;
  color: #6b7280;
  max-width: 420px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.news-input {
  border-radius: 999px;
  height: 38px;
  font-size: .85rem;
}

.btn-join {
  border-radius: 999px;
  height: 38px;
  padding: 0 1.2rem;
  font-size: .8rem;
  background: #3264ff;
  border-color: #3264ff;
}

.btn-join:hover {
  background: #2755e6;
  border-color: #2755e6;
}

.news-person {
  width: 240px;
  height: 240px;
  border-radius: 1.4rem;
  background: #e5e7eb;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991.98px) {
  .blog-title { font-size: 1.35rem; }
  .newsletter-box { padding: 1.8rem 1.4rem; }
  .news-person { width: 220px; height: 220px; margin-top: 1rem; }
}

/* ===== Instructors + Testimonials (clean) ===== */
.block-pad {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: .6rem;
}

.section-text {
  font-size: .88rem;
  color: #6b7280;
  line-height: 1.65;
}

.link-primary-soft {
  font-size: .82rem;
  font-weight: 700;
  color: #3264ff;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

/* Instructors mosaic */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  align-items: stretch;
}

.mosaic-item {
  border-radius: 1.1rem;
  overflow: hidden;
  background: #e5e7eb;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
  aspect-ratio: 1 / 1;  /* square tiles like screenshot */
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Make mosaic closer to screenshot (some tiles taller) */
.mosaic-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.mosaic-item.wide {
  grid-column: span 2;
}

@media (max-width: 991.98px) {
  .mosaic { grid-template-columns: repeat(3, 1fr); }
  .mosaic-item.tall { grid-row: span 1; }
}
@media (max-width: 575.98px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); }
}

/* Testimonials strip */
.testi-strip {
  background: linear-gradient(135deg, #eef2ff, #e6f2ff);
  border-radius: 2rem;
  padding: 2.2rem 2rem 2rem;
}

.testi-kicker {
  text-align: center;
  font-size: .78rem;
  color: #6b7280;
  margin-bottom: .35rem;
}

.testi-head {
  text-align: center;
  margin-bottom: 1.4rem;
}

.testi-head h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: .35rem;
}

.testi-card {
  background: #fff;
  border-radius: 1.15rem;
  padding: 1.15rem 1.15rem 1.05rem;
  border: 1px solid rgba(226,232,240,.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, .08);
  height: 100%;
}

.stars {
  color: #fbbf24;
  font-size: .85rem;
  margin-bottom: .55rem;
}

.testi-text {
  font-size: .88rem;
  color: #374151;
  line-height: 1.55;
  margin-bottom: .9rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.testi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-name {
  font-size: .82rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.testi-role {
  font-size: .76rem;
  color: #6b7280;
  margin: 0;
}

.btn-soft-outline {
  border-radius: 999px;
  font-size: .78rem;
  padding: .35rem 1.05rem;
}

.menu-round-btn .round-btn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  background: #fff;
  position: relative;
  padding: 0;
}

.menu-round-btn .round-btn:hover{
  background:#f9fafb;
}

.menu-round-btn .round-btn img{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
}

.menu-round-btn .badge-dot{
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 11px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#dc3545;
  color:#fff;
}
.w-300{
  width: 300px;
}

/* AUTH BUTTONS HEADER */
.btn-auth {
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 10px; /* légèrement arrondi */
    transition: all .2s ease-in-out;
}

/* Sign In (outline) */
.btn-auth-outline {
    color: #3C5CEC;
    border: 1px solid #3C5CEC;
    background: transparent;
}

.btn-auth-outline:hover {
    background: rgba(60, 92, 236, 0.08);
    color: #3C5CEC;
}

/* Sign Up (plein) */
.btn-auth-primary {
    background: #3C5CEC;
    border: 1px solid #3C5CEC;
    color: #fff;
}

.btn-auth-primary:hover {
    background: #324fd6;
    border-color: #324fd6;
    color: #fff;
}
.font-dark {
  color:#18181B !important;
}
.fs60 {
  font-size:60px !important;
}
.fs50 {
  font-size:50px !important;
}
.fs40 {
  font-size:40px !important;
}
.fs16 {
  font-size:16px !important;
}
.fs20 {
  font-size:20px !important;
}
/* ===== HERO search (like mockup) ===== */
.hero-search { max-width: 520px; }

.hero-search-group{
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
}

.hero-search-icon{
  background: transparent;
  border: 0;
  padding-left: 14px;
  padding-right: 10px;
  color: #9ca3af;
}

.hero-search-input{
  border: 0;
  box-shadow: none !important;
  padding: 12px 12px;
  font-size: .9rem;
  color: #111827;
}

.hero-search-input::placeholder{
  color: #9ca3af;
}

.hero-search-btn{
  border: 0;
  border-left: 1px solid #e5e7eb;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 0; /* important: keep straight edge like mockup */
  background: #3264ff;
}
.hero-search-btn:hover{
  background: #2755e6;
}

/* ===== HERO mini stats (like mockup) ===== */
.hero-mini-stats{
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-mini-stat{
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-mini-value{
  font-weight: 800;
  font-size: 1.6rem;    /* close to mockup */
  line-height: 1;
  color: #111827;
  min-width: 64px;
}

.hero-mini-label{
  font-size: .78rem;
  line-height: 1.15;
  color: #6b7280;
}

.hero-mini-divider{
  width: 1px;
  height: 34px;
  background: #e5e7eb;
}

/* Responsive: keep it clean */
@media (max-width: 575.98px){
  .hero-search{ max-width: 100%; }
  .hero-mini-stats{ gap: 12px; }
  .hero-mini-value{ font-size: 1.45rem; min-width: 56px; }
}
.rounded-10{
  border-radius: 10px !important;
}
.bg-blue{
  background: #3C5CEC !important;
}
