body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: #f0f0f0;
  overflow-x: hidden;
}

.container {
  display: flex;
  height: 100vh;
  width: 100vw;
}

.sidebar {
  background-color: #1a1a1a;
  width: 220px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: width 0.3s ease;
}

.sidebar.collapsed {
  width: 60px;
}

.logo {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-text {
  font-weight: bold;
  color: #ffffff;
}

.menu a {
  color: #ccc;
  text-decoration: none;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: 0.3s ease;
  border-radius: 12px;
  padding: 0.5rem;
}

.menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  box-shadow: 0 0 10px #ffffff20;
}

.content {
  flex-grow: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

header p {
  font-size: 1rem;
  color: #bcbcbc;
}

.stats-section {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.stat-card {
  background: #111;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

.stat-card i {
  font-size: 2rem;
  color: #ffffff;
}

.stat-card h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #ffffff;
}

.stat-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #aaa;
}

.why-choose {
  margin-top: 2rem;
}

.why-choose h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.why-choose ul {
  list-style: none;
  padding: 0;
}

.why-choose li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: 0.3s;
}

.why-choose li i {
  color: #fff;
}

.why-choose li:hover {
  color: #ffffff;
  transform: translateX(5px);
}

/* Feedback Section */
.feedback-section {
  margin-top: 2rem;
}

.feedback-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.feedback-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1rem;
  flex: 1 1 200px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.03);
  color: #ccc;
  transition: 0.3s ease;
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.footer {
  margin-top: 2rem;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #333;
}

.counter {
  color: #ffffff;
  font-weight: bold;
}

.glow {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4), 0 0 12px rgba(255, 255, 255, 0.1);
}

/* Reset & Base */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: #f0f0f0;
  overflow-x: hidden;
}

/* Loader Animation */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 1s ease forwards;
  animation-delay: 2.2s;
}

.loader-icon {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
  animation: flicker 1.2s infinite alternate;
}

.loader-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  animation: flicker 1.2s infinite alternate;
}

.loader-bar {
  width: 240px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px #fff1;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #fff, #999);
  animation: loadBar 2s forwards;
}

@keyframes loadBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes flicker {
  from { opacity: 0.2; text-shadow: 0 0 2px #fff; }
  to { opacity: 1; text-shadow: 0 0 20px #fff; }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

/* Container */
.container {
  display: flex;
  min-height: 100vh;
  width: 100vw;
}

/* Sidebar */
.sidebar {
  background-color: #1a1a1a;
  width: 220px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: width 0.3s ease;
}

.sidebar.collapsed {
  width: 60px;
}

.logo {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-text {
  font-weight: bold;
  color: #ffffff;
}

.menu a {
  color: #ccc;
  text-decoration: none;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: 0.3s ease;
  border-radius: 12px;
  padding: 0.5rem;
}

.menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  box-shadow: 0 0 10px #ffffff20;
}

.content {
  flex-grow: 1;
  padding: 2rem;
  animation: fadeIn 1s ease-in-out;
}

