/* ==========================================================================
   praveshaAI.css - Styles for WakinSoftwares Admission CRM Page (Pravesha AI)
   ========================================================================== */

:root {
  --badge-bg: #eff6ff;
  --feature-card-shadow: 0 10px 30px rgba(0, 51, 153, 0.05);
}

/* ---- Custom Grid (5 Columns on Desktop) ---- */
@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* ---- Breadcrumbs ---- */
.breadcrumb-container {
  padding-top: 100px;
  /* Offset for fixed navbar */
  padding-bottom: 10px;
  background-color: #f8fafc;
}

.breadcrumb {
  margin-bottom: 0;
  font-size: 0.88rem;
  font-weight: 500;
}

.breadcrumb-item a {
  color: #64748b;
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-item.active {
  color: var(--primary);
  font-weight: 600;
}

/* ---- Hero Section ---- */
.pravesha-hero-section {
  padding: 10px 0 40px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.badge-solution {
  background-color: var(--badge-bg);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.pravesha-hero-section .hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.pravesha-hero-section .hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.pravesha-hero-section .hero-desc {
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-demo {
  padding: 0.8rem 2.2rem;
  font-weight: 600;
  border-radius: 50px;
}

.btn-pricing {
  padding: 0.8rem 2.2rem;
  font-weight: 600;
  border-radius: 50px;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 3rem;
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background-color: var(--badge-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.hero-feature-item .feature-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-feature-item .feature-text strong {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.hero-feature-item .feature-text span {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
}

/* ---- Mockups Grid Layout ---- */
.hero-illustration-wrapper {
  position: relative;
  width: 100%;
  margin-left: 0;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pravesha-dashboard-mockup {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 51, 153, 0.08), 0 5px 15px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 520px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pravesha-dashboard-mockup:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(0, 51, 153, 0.12), 0 8px 20px rgba(0, 0, 0, 0.03);
}

.mockup-header {
  background-color: #f8fafc;
  padding: 8px 16px;
  display: flex;
  gap: 5px;
  border-bottom: 1px solid #e2e8f0;
}

.mockup-header .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.dot.red {
  background-color: #ff5f56;
}

.dot.yellow {
  background-color: #ffbd2e;
}

.dot.green {
  background-color: #27c93f;
}

.mockup-body {
  display: flex;
  flex: 1;
  overflow: hidden;
  height: calc(100% - 26px);
}

.mockup-sidebar {
  width: 155px;
  min-width: 155px;
  background-color: #ffffff;
  border-right: 1px solid #f1f5f9;
  padding: 15px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.72rem;
}

.sidebar-logo i {
  font-size: 1rem;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sidebar-menu li {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s, color 0.2s;
}

.sidebar-menu li.active {
  background-color: #eff6ff;
  color: var(--primary);
}

.sidebar-menu li:hover:not(.active) {
  background-color: #f8fafc;
  color: #0f172a;
}

.mockup-content {
  flex: 1;
  background-color: #f8fafc;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mockup-content::-webkit-scrollbar {
  display: none;
}

.content-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.welcome-text h5 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}

.date-badge {
  font-size: 0.58rem;
  color: #64748b;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 3px;
  display: inline-block;
  cursor: pointer;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 0.85rem;
}

.topbar-actions i {
  cursor: pointer;
}

.admin-avatar {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #ffffff;
  padding: 2px 8px 2px 2px;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
}

.avatar-img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.admin-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: #0f172a;
}

.mockup-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.stat-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 8px 10px;
  border: 1px solid #f1f5f9;
}

.stat-label {
  font-size: 0.6rem;
  color: #64748b;
  display: block;
  margin-bottom: 2px;
}

.stat-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.trend-up {
  font-size: 0.55rem;
  color: #22c55e;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.mockup-split-row {
  display: grid;
  grid-template-columns: 1.154fr 0.846fr;
  gap: 12px;
}

.split-col-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-col-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.split-col-card h6 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.performance-svg-chart {
  width: 100%;
  height: auto;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  font-size: 0.55rem;
  color: #94a3b8;
}

/* Admission Funnel CSS */
.funnel-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 4px 0;
}

.funnel-layer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.6rem;
  border-radius: 4px;
}

.funnel-layer.l-1 {
  background-color: #6366f1;
  width: 100%;
}

.funnel-layer.l-2 {
  background-color: #3b82f6;
  width: 85%;
}

.funnel-layer.l-3 {
  background-color: #10b981;
  width: 70%;
}

.funnel-layer.l-4 {
  background-color: #f59e0b;
  width: 55%;
}

.funnel-name {
  font-weight: 600;
}

.funnel-val {
  font-weight: 700;
}

/* Campaigns list */
.campaign-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.campaign-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.62rem;
  padding: 4px 0;
  border-bottom: 1px solid #f1f5f9;
}

.campaign-item:last-child {
  border-bottom: none;
}

.campaign-name {
  color: #64748b;
  font-weight: 500;
}

.campaign-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.campaign-meta strong {
  color: #0f172a;
}

.campaign-meta .percent {
  color: #3b82f6;
  font-weight: 600;
}

/* Donut Chart */
.enrolment-body {
  display: flex;
  align-items: center;
  gap: 10px;
}

.donut-chart-container {
  width: 70px;
  height: 70px;
}

.donut-chart-svg {
  width: 100%;
  height: 100%;
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.legend-item {
  font-size: 0.58rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.legend-item span.bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.bullet.blue {
  background-color: #003399;
}

.bullet.lightblue {
  background-color: #3b82f6;
}

.bullet.purple {
  background-color: #a855f7;
}

.bullet.green {
  background-color: #10b981;
}

.bullet.orange {
  background-color: #f59e0b;
}

/* ---- Overlapping Phone Mockup ---- */
.overlapping-phone {
  position: absolute;
  bottom: -25px;
  right: -5px;
  z-index: 10;
  width: 200px;
}

.phone-frame {
  background-color: #ffffff;
  border: 7px solid #1e293b;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  height: 395px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-topbar {
  background-color: #ffffff;
  padding: 4px 12px 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.58rem;
  font-weight: 600;
  color: #0f172a;
}

.phone-icons {
  display: flex;
  gap: 4px;
}

.phone-appheader {
  background-color: #ffffff;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.72rem;
}

.phone-content-body {
  flex: 1;
  background-color: #f8fafc;
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.phone-content-body::-webkit-scrollbar {
  display: none;
}

/* Phone lead details */
.lead-detail-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #f1f5f9;
  position: relative;
}

.lead-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
}

.lead-info {
  display: flex;
  flex-direction: column;
}

.lead-info strong {
  font-size: 0.7rem;
  color: #0f172a;
}

.lead-info span {
  font-size: 0.52rem;
  color: #64748b;
  line-height: 1.25;
}

.hot-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #fee2e2;
  color: #ef4444;
  font-size: 0.48rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
}

/* Score Card Gauge */
.score-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.score-card .lbl {
  font-size: 0.58rem;
  font-weight: 700;
  color: #64748b;
  align-self: flex-start;
}

.radial-gauge-container {
  width: 65px;
  height: 65px;
}

.radial-gauge-svg {
  width: 100%;
  height: 100%;
}

.gauge-center-num {
  font-size: 20px;
  font-weight: 800;
  text-anchor: middle;
  fill: #0f172a;
}

.gauge-center-num .pct {
  font-size: 10px;
  font-weight: 600;
  fill: #64748b;
}

.next-action-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.next-action-card span {
  font-size: 0.52rem;
  color: #94a3b8;
}

.next-action-card strong {
  font-size: 0.72rem;
  color: #0f172a;
  font-weight: 700;
}

.next-action-card .time {
  font-size: 0.55rem;
  color: #3b82f6;
  font-weight: 600;
  margin-top: 1px;
}

.phone-actions-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 4px;
}

.phone-btn {
  border: none;
  padding: 6px;
  border-radius: 6px;
  font-size: 0.52rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: transform 0.15s;
}

.phone-btn:active {
  transform: scale(0.95);
}

.phone-btn.call {
  background-color: #1a73e8;
}

.phone-btn.whatsapp {
  background-color: #25d366;
}

.phone-btn.email {
  background-color: #64748b;
}

/* ---- Features Section ---- */
.pravesha-features-section {
  background-color: #ffffff;
  padding: 50px 0;
}

.pravesha-section-header {
  margin-bottom: 3.5rem;
}

.pravesha-section-tag {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.pravesha-features-section .section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.pravesha-features-section .section-subtitle {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 2.25rem 1.25rem;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--feature-card-shadow);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 51, 153, 0.15);
  box-shadow: 0 15px 35px rgba(0, 51, 153, 0.08);
}

.feature-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background-color: #f0f5ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}

.feature-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature-card-desc {
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---- Why Choose & Perfect For Section ---- */
.pravesha-why-section {
  padding: 50px 0;
  background-color: #f8fafc;
}

.why-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
}

.why-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.5rem 0;
}

.why-checklist li i {
  color: var(--primary);
  font-size: 1.2rem;
}

.why-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-brochure {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0;
}

.btn-brochure:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.why-illustration-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pravesha-robot-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.05));
  animation: floatPraveshaWhy 3.5s ease-in-out infinite alternate;
}

@keyframes floatPraveshaWhy {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.perfect-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.perfect-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.perfect-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(0, 51, 153, 0.08);
  transform: translateY(-2px);
}

.perfect-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 10px;
  background-color: #f0f5ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.perfect-card-text {
  display: flex;
  flex-direction: column;
}

.perfect-card-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.perfect-card-text p {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ---- Who We Serve Section ---- */
.pravesha-serve-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.serve-cards-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.serve-card {
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serve-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 51, 153, 0.08);
}

.serve-img-wrapper {
  position: relative;
  height: 135px;
}

.serve-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.serve-card:hover .serve-img {
  transform: scale(1.08);
}

.serve-icon-badge {
  position: absolute;
  bottom: -15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.serve-icon-badge.purple {
  background-color: #8b5cf6;
}

.serve-icon-badge.green {
  background-color: #10b981;
}

.serve-icon-badge.red {
  background-color: #ef4444;
}

.serve-icon-badge.blue {
  background-color: #3b82f6;
}

.serve-icon-badge.orange {
  background-color: #f59e0b;
}

.serve-card-body {
  padding: 22px 14px 18px;
  text-align: left;
}

.serve-card-body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.serve-card-body p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ---- Responsive CSS ---- */
@media (max-width: 1199.98px) {
  .serve-cards-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991.98px) {
  .breadcrumb-container {
    padding-top: 85px;
  }

  .pravesha-hero-section {
    text-align: center;
    padding-bottom: 40px;
  }

  .pravesha-hero-section .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin-top: 3rem;
    padding-top: 2.5rem;
  }

  .hero-illustration-wrapper {
    margin-top: 2.5rem;
    max-width: 640px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .mockup-content {
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .mockup-content::-webkit-scrollbar {
    display: none;
  }

  .pravesha-why-section {
    text-align: center;
  }

  .why-checklist {
    max-width: 320px;
    margin: 0 auto 2rem;
    text-align: left;
  }

  .why-buttons {
    justify-content: center;
    margin-bottom: 3rem;
  }

  .why-illustration-wrapper {
    max-width: 320px;
    margin: 0 auto 3rem;
  }

  .perfect-cards-stack {
    text-align: left;
    max-width: 480px;
    margin: 0 auto;
  }

  .serve-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .mockup-body {
    position: relative;
  }

  .mockup-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 175px;
    min-width: 175px;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.08);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 18px 12px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .mockup-sidebar::-webkit-scrollbar {
    display: none;
  }

  .mockup-sidebar.open {
    transform: translateX(0);
  }

  .sidebar-logo .logo-text,
  .sidebar-menu .menu-text {
    display: inline !important;
  }

  .sidebar-logo {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .sidebar-logo i {
    font-size: 1.1rem;
  }

  .sidebar-menu {
    width: 100%;
    align-items: flex-start;
    gap: 4px;
  }

  .sidebar-menu li {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding: 8px 12px;
    border-radius: 8px;
  }

  .sidebar-menu li i {
    font-size: 0.8rem;
    margin-right: 8px;
  }
}

@media (max-width: 575.98px) {
  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .hero-illustration-wrapper {
    width: 100%;
    margin-left: 0;
    max-width: none;
  }

  .pravesha-dashboard-mockup {
    width: 100%;
    height: 420px;
  }

  .mockup-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .stat-card {
    padding: 6px 8px;
  }

  .stat-value {
    font-size: 0.78rem;
    font-weight: 700;
  }

  .trend-up {
    font-size: 0.5rem;
  }

  .mockup-split-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .split-col-card {
    padding: 10px;
  }

  .performance-svg-chart {
    height: 60px;
  }

  .serve-cards-row {
    grid-template-columns: 1fr;
  }
}

/* ---- Medium Screens (Laptops) ---- */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .mockup-sidebar {
    width: 130px;
    min-width: 130px;
  }

  .sidebar-logo span {
    font-size: 0.62rem;
  }

  .mockup-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .mockup-split-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pravesha-dashboard-mockup {
    height: 480px;
  }
}

@media (max-width: 479.98px) {
  .hero-features-grid {
    grid-template-columns: 1fr;
  }
}