@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --bg-primary: #050505;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #121212;
  --card-bg: rgba(18, 18, 18, 0.65);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);
  
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.15);
  --gold-glow-intense: 0 0 35px rgba(212, 175, 55, 0.4);
  --blue-glow: 0 0 20px rgba(0, 210, 255, 0.15);
  --blue-glow-intense: 0 0 35px rgba(0, 210, 255, 0.4);
  
  --accent-gold: #e5c158;
  --accent-blue: #00d2ff;
  
  --font-inter: 'Inter', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- RESET & BASICS --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  user-select: none;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-inter);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-poppins);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* --- THREE.JS BACKGROUND --- */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

/* --- LION SVG/CANVAS BACKGROUND --- */
#lion-container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 700px;
  height: 700px;
  z-index: -1;
  opacity: 0.3;
  pointer-events: none;
}

/* --- GLASS CONTAINER LAYOUT --- */
.app-container {
  position: relative;
  width: 100%;
  z-index: 1;
}

/* --- NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 100;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  background: rgba(5, 5, 5, 0.4);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  text-shadow: var(--gold-glow);
}

.admin-link-btn {
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}
.admin-link-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary) !important;
  box-shadow: var(--gold-glow);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 60px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  gap: 4rem;
}

.hero-left {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-frame {
  position: relative;
  width: 320px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--gold-glow);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

.profile-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(5, 5, 5, 0.8) 100%);
  z-index: 1;
}

.profile-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.profile-frame:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--gold-glow-intense);
}

.profile-frame:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.hero-right {
  flex: 1.2;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.hero-right h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-right h2 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-right p {
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}

.btn-primary:hover {
  background: transparent;
  color: #ffffff;
  box-shadow: var(--gold-glow-intense);
  border-color: var(--accent-gold);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
}

/* --- INFINITE MARQUEE --- */
.marquee-container {
  width: 100vw;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  gap: 4rem;
}

.marquee-content span {
  font-family: var(--font-poppins);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.marquee-content span:hover {
  color: var(--accent-gold);
  text-shadow: var(--gold-glow);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- SECTIONS --- */
section {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  display: inline-block;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-left {
  flex: 1;
}

.about-right {
  flex: 1.5;
}

.about-img-frame {
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--blue-glow);
}

.about-img-frame img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  backdrop-filter: blur(15px);
}

.stat-card h4 {
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.about-bio {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.highlight-box {
  border-left: 3px solid var(--accent-blue);
  padding-left: 1.5rem;
  font-style: italic;
  font-weight: 500;
}

/* --- PROJECTS SECTION --- */
.filter-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.project-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: var(--blue-glow);
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.05);
}

.project-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.project-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.project-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.tool-tag {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  color: var(--text-secondary);
}

/* --- COLLABORATIONS --- */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.collab-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.collab-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.collab-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.collab-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.collab-card p {
  font-size: 0.85rem;
}

/* --- EXPERIENCE & TIMELINE --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: var(--bg-primary);
  border: 4px solid var(--accent-gold);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left {
  left: 0;
  text-align: right;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -8px;
}

.timeline-content {
  padding: 1.5rem;
  background: var(--card-bg);
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.timeline-content h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.timeline-content h4 {
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.timeline-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

/* --- SKILLS --- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.skill-tag-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.skill-tag-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-gold);
  box-shadow: var(--gold-glow);
}

/* --- DIRA.AI PREMIUM SECTION --- */
.dira-section {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(0, 210, 255, 0.15);
  padding: 4rem;
  background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.08), transparent 60%), rgba(10, 10, 10, 0.8);
  box-shadow: var(--blue-glow);
  backdrop-filter: blur(20px);
  overflow: hidden;
  max-width: 1100px;
  margin: 80px auto;
}

.dira-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.dira-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.dira-sphere {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,210,255,0.4) 0%, rgba(0,102,255,0.1) 70%, transparent 100%);
  position: relative;
  animation: floatSphere 6s ease-in-out infinite;
  box-shadow: 0 0 50px rgba(0, 210, 255, 0.3);
}

@keyframes floatSphere {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-15px) scale(1.05); }
}

/* --- CONTACT SECTION --- */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-list {
  list-style: none;
  margin-top: 2rem;
}

.contact-info-list li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 24px;
  backdrop-filter: blur(15px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-inter);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: var(--gold-glow);
}

/* --- SOCIAL LINKS --- */
.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: var(--gold-glow);
  transform: translateY(-3px);
}

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem 5%;
  text-align: center;
  background: #000000;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- PREMIUM PROJECT DETAIL MODAL --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  width: 90%;
  max-width: 800px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--blue-glow-intense);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: #fff;
  color: #000;
}

.modal-body {
  max-height: 85vh;
  overflow-y: auto;
}

.modal-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.modal-content {
  padding: 2.5rem;
}

/* --- TOAST NOTIFICATIONS --- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--accent-gold);
  box-shadow: var(--gold-glow);
  padding: 1rem 2rem;
  border-radius: 12px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- ADMIN PANEL / AUTH SPECIFICS --- */
.admin-login-body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
}

.admin-login-card {
  width: 100%;
  max-width: 420px;
  padding: 3rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: var(--gold-glow);
  backdrop-filter: blur(20px);
}

.dashboard-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: #000000;
  border-right: 1px solid var(--border-color);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-menu button {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  font-family: var(--font-inter);
  transition: var(--transition-fast);
}

.sidebar-menu button.active,
.sidebar-menu button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-gold);
}

.admin-main {
  padding: 3rem;
  background: var(--bg-primary);
  overflow-y: auto;
  height: 100vh;
}

.dashboard-section {
  display: none;
}

.dashboard-section.active {
  display: block;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.admin-table th, .admin-table td {
  border-bottom: 1px solid var(--border-color);
  padding: 1rem;
  text-align: left;
}

.admin-table th {
  color: var(--accent-gold);
  font-weight: 600;
}

.admin-btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.admin-btn-sm.delete-btn {
  border-color: #ff3b30;
  color: #ff3b30;
}
.admin-btn-sm.delete-btn:hover {
  background: #ff3b30;
  color: #fff;
}

.admin-form-group {
  margin-bottom: 1.2rem;
}

.admin-form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #fff;
}

.admin-form-group input:focus,
.admin-form-group textarea:focus {
  border-color: var(--accent-gold);
  outline: none;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .about-grid {
    flex-direction: column;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .dira-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .dira-right {
    margin-top: 2rem;
  }
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    text-align: left !important;
  }
  .timeline-item::after {
    left: 23px;
  }
  .timeline-left {
    left: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .dashboard-wrapper {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  .admin-main {
    height: auto;
  }
}
