/* ============================================
   CAREPLUS - Complete Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --primary:        #0ea5e9;
  --primary-dark:   #0284c7;
  --primary-light:  #e0f2fe;
  --secondary:      #06b6d4;
  --text-dark:      #0f172a;
  --text-gray:      #475569;
  --text-light:     #94a3b8;
  --white:          #ffffff;
  --bg-light:       #f8fafc;
  --border:         #e2e8f0;
  --shadow:         0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover:   0 12px 40px rgba(14,165,233,0.18);
  --transition:     all 0.3s ease;
  --radius:         14px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text-gray); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { color: var(--text-dark); font-weight: 700; line-height: 1.3; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 9px 0;
  font-size: 0.82rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 20px; }
.topbar-right { display: flex; gap: 18px; }
.topbar-left span, .topbar-right a { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.8); }
.topbar-right a:hover { color: var(--primary); }
.topbar i { font-size: 0.8rem; color: var(--primary); }

/* ============ NAVBAR ============ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0;
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 2rem; line-height: 1; }
.logo-text .brand { font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1; }
.logo-text .tagline { font-size: 0.7rem; color: var(--text-light); font-weight: 500; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500; color: var(--text-gray);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary); background: var(--primary-light);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(14,165,233,0.3); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ============ HERO ============ */
.hero { position: relative; height: 92vh; min-height: 580px; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.75) 0%, rgba(14,165,233,0.25) 100%); }
.hero-slide.active { opacity: 1; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; color: white;
  animation: fadeInUp 0.8s ease;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,0.25); border: 1px solid rgba(14,165,233,0.5);
  color: #7dd3fc; padding: 7px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-content h1 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.2; margin-bottom: 18px; color: white; }
.hero-content h1 span { color: #7dd3fc; }
.hero-content p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: white; padding: 8px 16px; border-radius: 50px;
  font-size: 0.8rem; backdrop-filter: blur(8px);
}
.hero-badge i { color: #fbbf24; }
.slider-arrows { position: absolute; bottom: 40px; right: 40px; display: flex; gap: 10px; z-index: 10; }
.slider-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
  color: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); backdrop-filter: blur(8px);
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); }
.slider-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); }
.dot.active { background: white; width: 24px; border-radius: 4px; }

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  background: var(--primary-light); color: var(--primary);
  padding: 5px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.5px; margin-bottom: 12px;
  text-transform: uppercase;
}
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.section-header p { color: var(--text-gray); max-width: 580px; margin: 0 auto; }
.divider { width: 60px; height: 4px; background: var(--primary); border-radius: 2px; margin: 14px auto; }
.divider-left { margin: 14px 0; }

/* ============ GRIDS ============ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============ CARDS ============ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
}
.card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-hover); transform: translateY(-4px); }

/* ============ SERVICE CARDS ============ */
.service-card { text-align: left; }
.icon-box {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 18px;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text-dark); }
.service-card p { font-size: 0.88rem; color: var(--text-gray); margin-bottom: 16px; line-height: 1.7; }
.service-card a { color: var(--primary); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.service-card a:hover { gap: 10px; }

/* ============ BLOG CARDS ============ */
.blog-card { padding: 0; overflow: hidden; }
.blog-card img { width: 100%; height: 200px; object-fit: cover; transition: var(--transition); }
.blog-card:hover img { transform: scale(1.04); }
.blog-body { padding: 22px; }
.blog-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.blog-body h3 { font-size: 0.97rem; margin-bottom: 10px; color: var(--text-dark); line-height: 1.5; transition: var(--transition); }
.blog-body h3:hover { color: var(--primary); }
.blog-body p { font-size: 0.85rem; color: var(--text-gray); margin-bottom: 14px; }
.read-more { color: var(--primary); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }

/* ============ TESTIMONIALS ============ */
.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 2px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); }
.stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }
.testi-quote { font-size: 0.9rem; color: var(--text-gray); line-height: 1.8; font-style: italic; }
.testi-header { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-light); }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.testi-service { font-size: 0.78rem; color: var(--text-light); }

/* ============ STATS ============ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; padding: 32px 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border-bottom: 4px solid var(--primary); transition: var(--transition); }
.stat-item:hover { transform: translateY(-4px); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.88rem; color: var(--text-gray); font-weight: 500; }

/* ============ PAGE HERO ============ */
.page-hero {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1e3a5f 100%);
  color: white; padding: 70px 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?w=1600') center/cover;
  opacity: 0.08;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: white; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 20px; font-size: 1rem; }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 0.7rem; }
.breadcrumb span { color: var(--primary); font-weight: 600; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 0; text-align: center; color: white;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: white; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 32px; font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-name { font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.social-links a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
.footer h4 { color: white; font-size: 0.95rem; margin-bottom: 18px; font-weight: 700; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.65); font-size: 0.87rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer ul li a i { font-size: 0.7rem; color: var(--primary); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact .icon { color: var(--primary); margin-top: 2px; font-size: 0.88rem; flex-shrink: 0; }
.footer-contact span, .footer-contact a { font-size: 0.86rem; color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 20px 0; font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--primary); }

/* ============ FLOATING BUTTONS ============ */
.float-buttons { position: fixed; bottom: 28px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); border: none;
}
.whatsapp-btn { background: #25D366; color: white; }
.call-btn { background: var(--primary); color: white; }
.top-btn { background: var(--text-dark); color: white; opacity: 0; pointer-events: none; transition: var(--transition); }
.top-btn.visible { opacity: 1; pointer-events: all; }
.float-btn:hover { transform: translateY(-4px) scale(1.08); }

/* ============ BADGES ============ */
.badge { display: inline-block; padding: 3px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-green { background: #dcfce7; color: #16a34a; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: 10px;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem;
  color: var(--text-dark); background: var(--white);
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.1); }
.form-control.is-invalid { border-color: #ef4444; }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { cursor: pointer; }

/* ============ ALERTS ============ */
.alert-success, .alert-error {
  position: fixed; top: 80px; right: 20px; z-index: 9999;
  padding: 14px 20px; border-radius: 10px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-size: 0.9rem; font-weight: 500; max-width: 380px;
  animation: fadeInUp 0.4s ease;
}
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-success button, .alert-error button { background: none; border: none; cursor: pointer; color: inherit; margin-left: auto; font-size: 1rem; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.15s; }
.animate-delay-2 { transition-delay: 0.3s; }
.animate-delay-3 { transition-delay: 0.45s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar .topbar-left span:last-child { display: none; }
  .nav-menu {
    display: none; position: fixed; inset: 70px 0 0 0;
    background: white; flex-direction: column; align-items: stretch;
    padding: 20px; gap: 4px; overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 13px 18px; border-radius: 10px; font-size: 0.95rem; }
  .hamburger { display: flex; }
  .nav-actions { display: none; }
  .hero { height: 75vh; min-height: 500px; }
  .hero-content h1 { font-size: 1.8rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 55px 0; }
  .slider-arrows { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-badges { display: none; }
  .float-buttons { bottom: 16px; right: 14px; }
  .float-btn { width: 46px; height: 46px; font-size: 1rem; }
}

/* ===== MOBILE MENU ===== */
.nav-icon { display: none; }
.nav-close-item { display: none; }
.nav-book-item  { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--primary-light, #e0f2fe);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary, #0ea5e9);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
  backdrop-filter: blur(3px);
}
.nav-overlay.open { display: block; }

.nav-close-btn {
  background: #fee2e2;
  color: #dc2626;
  border: none;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.nav-close-btn:hover { background: #dc2626; color: white; }

/* Flash Alert */
.alert-flash {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 300px;
  max-width: 90vw;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  animation: slideDown 0.3s ease;
}
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.alert-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.6;
  font-size: 0.85rem;
  padding: 2px 4px;
}
.alert-close:hover { opacity: 1; }

@keyframes slideDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 768px) {
  .hamburger   { display: flex; }
  .nav-actions { display: none; }
  .nav-icon    { display: inline; margin-right: 8px; color: var(--primary); font-size: 0.85rem; }

  .nav-close-item {
    display: block !important;
    list-style: none;
  }
  .nav-book-item {
    display: block !important;
    list-style: none;
    padding: 16px 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100dvh;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -6px 0 30px rgba(0,0,0,0.15);
    list-style: none;
  }
  .nav-menu.open { right: 0; }

  .nav-menu li { list-style: none; }

  .nav-menu li a.nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.92rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s;
  }
  .nav-menu li a.nav-link:hover {
    background: #f0f9ff;
    color: var(--primary);
    padding-left: 26px;
  }
  .nav-menu li a.nav-link.active {
    color: var(--primary);
    background: #e0f2fe;
    border-left: 3px solid var(--primary);
    font-weight: 600;
  }
}

