* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f4f6f9;
  color: #1f2933;
  line-height: 1.7;
}

/* GLOBAL */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.center-text {
  text-align: center;
}

.space-top {
  margin-top: 60px;
}

/* NAVBAR */
.navbar {
  background: #0f172a;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  color: #eab308;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: #eab308;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: white;
  padding: 90px 0;
}

.hero-sub {
  margin: 12px 0;
}

.hero-meta span {
  display: inline-block;
  margin: 6px 10px;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.primary {
  background: #eab308;
  color: #0f172a;
}

.outline {
  border: 2px solid #eab308;
  color: #eab308;
}

.btn:hover {
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section.light {
  background: white;
}

/* SKILLS */
.skill-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.skill-card {
  background: white;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.skill-card h3 {
  margin-bottom: 14px;
  color: #0f172a;
}

.skill-card ul {
  padding-left: 18px;
}

.skill-card li {
  margin-bottom: 8px;
}

/* SOFT SKILLS */
.soft-skill-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.soft-skill-card {
  background: linear-gradient(135deg, #facc15, #eab308);
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}

/* EXPERIENCE */
.experience-card {
  background: white;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  margin-top: 30px;
}

.meta {
  font-size: 0.85rem;
  color: #6b7280;
}
/* =====================
   ANALYTICS GRAPHS
===================== */

.graph-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.graph-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.graph-card h3 {
  margin-bottom: 20px;
  color: #0f172a;
}

/* BAR CHART */
.bar-chart {
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.bar {
  flex: 1;
  background: linear-gradient(180deg, #facc15, #eab308);
  border-radius: 8px 8px 0 0;
  text-align: center;
  font-size: 0.85rem;
  padding-bottom: 8px;
  animation: grow 1.2s ease;
}

@keyframes grow {
  from { height: 0; }
}

/* PROGRESS BARS */
.progress {
  margin-bottom: 18px;
}

.progress span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.progress-bar {
  background: #e5e7eb;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
}
/* =====================
   VISIBLE CARD ANIMATION
===================== */

.skill-card,
.experience-card,
.graph-card {
  opacity: 0;
  transform: translateY(30px);
  animation: cardFade 0.9s ease forwards;
}

.skill-card:nth-child(1),
.experience-card:nth-child(1),
.graph-card:nth-child(1) {
  animation-delay: 0.2s;
}

.skill-card:nth-child(2),
.experience-card:nth-child(2),
.graph-card:nth-child(2) {
  animation-delay: 0.4s;
}

.skill-card:nth-child(3),
.experience-card:nth-child(3),
.graph-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes cardFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FOOTER */
.footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 20px;
}
