/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: radial-gradient(
    circle at top left,
    #1f1f1f 0%,
    #141414 40%,
    #0e0e0e 100%
  );
  color: #ededed;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 16px 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* Premium glass effect */
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 18, 0.75),
    rgba(18, 18, 18, 0.55)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  z-index: 1000;
}

/* Logo */
.navbar .logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #ffffff;
}

/* Menu */
.navbar ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

/* Links */
.navbar a {
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #06b6d4);
  transition: width 0.3s ease;
}

.navbar a:hover {
  color: #ffffff;
}

.navbar a:hover::after {
  width: 100%;
}

/* Active link (optional) */
.navbar a.active {
  color: #ffffff;
}

.navbar a.active::after {
  width: 100%;
}
/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 8% 80px;

  display: flex;
  align-items: center;
  justify-content: center;

 background: linear-gradient(
  180deg,
  #0e0e0e 0%,
  #0b0b0b 60%,
  #080808 100%
);
  overflow: hidden;
}

/* soft background glow (right) */
.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.10),
    transparent 60%
  );
  filter: blur(90px);
  z-index: 0;
}

/* soft background glow (left) */
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.10),
    transparent 60%
  );
  filter: blur(80px);
  z-index: 0;
}

/* hero inner layout */
.hero-content {
  position: relative;
  z-index: 1;

  max-width: 1200px;
  width: 100%;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

/* text block */
.hero-text {
  max-width: 560px;
}

/*role of hero work*/
.hero-role {
  display: block;          /* VERY IMPORTANT */
  margin-bottom: 14px;

  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.6);
}
.hero-text h1 {
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -2px;
  color: #ffffff;
}

.hero-text p {
  margin-top: 3px;
  font-size: 18px;
  line-height: 1.7;
  color: #9ca3af;
}

/* resume button */
.hero-buttons {
  margin-top: 36px;
}

.btn.primary {
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;

  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);

  transition: all 0.3s ease;
}

.btn.primary:hover {
  background: #ffffff;
  color: #000000;
}

/* hero image */
.hero-img img {
  width: 280px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-img img:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.75);
}

/* section divider*/
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  margin: 80px 0;
}
/*scroll indicator*/
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.4);
}


/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .hero {
    padding: 140px 6% 60px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .hero-text h1 {
    font-size: 44px;
  }
}

/* ================= MARQUEE ================= */
.marquee {
  position: absolute;
  bottom: 60px;
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 12s linear infinite;
}

.marquee span {
  font-size: 120px;
  opacity: 0.15;
  margin-right: 40px;
  white-space: nowrap;
}

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

/* ================= SECTIONS ================= */
.section {
  padding: 50px 40px;
  text-align: center;
}

.section.dark {
  background: #0a0a0a;
}

.section-text {
  max-width: 700px;
  margin: 20px auto 80px;
  color: #aaa;
  line-height: 1.6;
}

.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  display: block;
  margin-bottom: 12px;
  text-align: center;
}

/* ================= ABOUT CARDS (3D) ================= */
.cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
}

.card {
  width: 260px;
  height: 300px;
  background: radial-gradient(circle at top left, #0f172a, #020617);
  border-radius: 22px;
  padding: 30px 20px;
  text-align: left;
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 25px rgba(168, 85, 247, 0.3),
    0 0 45px rgba(6, 182, 212, 0.2);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 0;
  color: #fff;
}

.card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #a855f7, #06b6d4);
}

.card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
}

.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  object-fit: contain;
}

.card:hover .card-icon {
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
}

/* ===== JOURNEY TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 80px auto;
}

/* center vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}

.timeline-year {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 80px;
}

.timeline-year:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-year:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-year h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #fff;
}

.timeline-item {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 22px;
  border-radius: 14px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.timeline-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.5;
}

.timeline-item:nth-child(2) { transition-delay: 0.1s; }
.timeline-item:nth-child(3) { transition-delay: 0.2s; }
.timeline-item:nth-child(4) { transition-delay: 0.3s; }

.timeline-dot {
  position: absolute;
  top: 6px;
  right: -10px;
  width: 14px;
  height: 14px;
  background: linear-gradient(90deg, #a855f7, #06b6d4);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.timeline-year:nth-child(even) .timeline-dot {
  left: -10px;
  right: auto;
}

/* ===== SCROLL REVEAL BASE ===== */
.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.reveal.show .timeline-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal.show .timeline-dot {
  transform: scale(1);
}

.year-title {
  font-size: 26px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.year-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #a855f7, #06b6d4);
  transition: width 0.6s ease;
}

.reveal.show .year-title::after {
  width: 100%;
}

/* ================= SKILLS ================= */
.skills-section {
  padding: 120px 80px;
  text-align: center;
}

.skills-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 35px;
}

.skill {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 15px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.15);
}

.skill:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 20px rgba(168, 85, 247, 0.35),
    0 0 40px rgba(6, 182, 212, 0.2);
}

.skill:active {
  transform: scale(0.95);
}

.skill-icon {
  width: 55px;
  height: 55px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.skill-icon:hover {
  transform: scale(1.1);
}

.skill-icon.jump {
  animation: jump 0.6s ease;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.8));
}

@keyframes jump {
  0% {
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-25px) scale(1.1);
  }
  60% {
    transform: translateY(0) scale(0.95);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.skill span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #ddd;
  letter-spacing: 0.5px;
}

.skills-subtext {
  margin-top: 10px;
  color: #aaa;
  font-size: 15px;
}

/* ================= PROJECTS ================= */
.projects {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.project-card {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  width: 260px;
}

.project-card img {
  width: 100%;
  border-radius: 10px;
}
/*line before contact section*/
/* ===== SECTION DIVIDER LINE ===== */
.section-line {
  width: 100%;
  max-width: 900px;
  height: 1px;
  margin: 0 auto 80px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
}

/* ================= CONTACT (SMALL & PROFESSIONAL) ================= */

.contact-section {
  padding: 90px 20px;
  display: flex;
  justify-content: center;
}

/* CARD */
.contact-card {
  max-width: 620px;
  width: 100%;
  padding: 36px;
  border-radius: 16px;

  background: linear-gradient(
    145deg,
    rgba(12, 12, 20, 0.9),
    rgba(18, 18, 30, 0.9)
  );

  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);

  text-align: center;
}

/* TITLE */
.contact-card h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.contact-subtext {
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 22px;
}

.contact-subtext.small {
  font-size: 13px;
  margin-bottom: 16px;
}

/* DIVIDER */
.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 26px 0;
}

/* PRIMARY BUTTON */
.contact-primary-btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 999px;

  background: #ffffff;
  color: #0f0f1a;

  font-size: 13px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.25s ease;
}

.contact-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* EMAIL FORM */
.email-box {
  display: flex;
  gap: 10px;
}

.email-box input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  outline: none;

  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 13px;
}

.email-box input::placeholder {
  color: #9a9a9a;
}

.email-box button {
  padding: 11px 20px;
  border-radius: 8px;
  border: none;

  
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;

  cursor: pointer;
  transition: background 0.25s ease;
}

.email-box button:hover {
  background: rgba(255,255,255,0.22);
}

/* REVEAL */
.contact-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.contact-show {
  opacity: 1;
  transform: translateY(0);
}


/* ===== TOP BLOGS ===== */

.blogs-header {
  height: 250px;                 /* adjust section height */
  display: flex;
  flex-direction: column;
  justify-content: center;       /* vertical center */
  align-items: center;           /* horizontal center */
  text-align: center;
  background: linear-gradient(to right, #000000, #1a1a1a);
}

.blogs-header h1 {
  color: white;
  font-size: 40px;               /* adjust title size */
  margin-bottom: 10px;           /* space below title */
}

.blogs-header p {
  color: #cccccc;
  font-size: 16px;               /* subtitle size */
}

#blogs,
.blogs-section {
  padding-top: 40px;
}


.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.blogs-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 720px;
}

.blog-item {
  display: flex;
  gap: 20px;
  text-decoration: none;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-date {
  color: #A3A3A3;
  font-size: 14px;
  min-width: 50px;
}

.section-title {
  margin-bottom: 14px; /* adjust: 10–20px */
}

/*-- BLOG DETAIL (HIDDEN BY DEFAULT) --*/
/* ===== BLOG VISIBILITY ===== */
.hidden {
  display: none;
}

/* ===== BLOG LIST ===== */
.blog-item {
  cursor: pointer;
  transition: color 0.3s ease;
}

.blog-item:hover {
  color: #a855f7;
}

/* ===== BLOG DETAIL PAGE ===== */
.blog-detail {
  min-height: 100vh;
  padding: 120px 20px;
  background: #0f0f0f;
}

/* Center content */
.blog-detail h1,
.blog-detail .blog-meta,
.blog-detail .blog-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Title */
#blog-title {
  font-size: 40px;
  margin-bottom: 12px;
}

/* Meta */
#blog-meta {
  color: #a3a3a3;
  margin-bottom: 40px;
}

/* Content */
.blog-content p {
  line-height: 1.8;
  margin-bottom: 18px;
  color: #ddd;
}

.blog-content h3 {
  margin-top: 40px;
  margin-bottom: 12px;
}

/* Back button */
.back-btn {
  display: block;
  max-width: 900px;
  margin: 0 auto 30px;
  background: none;
  border: none;
  color: #a855f7;
  font-size: 16px;
  cursor: pointer;
}

.blog-detail {
  min-height: 100vh;
  padding: 120px 20px;
  background: #0f0f0f;
}

#blog-content {
  max-width: 900px;
  margin: 0 auto;
}

#blog-content pre {
  background: #0b1220;
  padding: 18px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 20px 0;
}

blockquote {
  border-left: 3px solid #a855f7;
  padding-left: 16px;
  color: #ccc;
  margin: 20px 0;
}
.blog-cover {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 40px auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.blog-divider {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 50px 0;
}

#blog-content pre {
  background: #0b1220;
  padding: 20px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 20px 0;
}

#blog-content code {
  color: #c7d2fe;
  font-family: monospace;
}

#blog-content blockquote {
  border-left: 4px solid #a855f7;
  padding-left: 16px;
  margin: 30px 0;
  color: #ddd;
  font-style: italic;
}
/*card around blog*/
.blog-item-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px 26px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.blog-item-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* LEFT SIDE */
.blog-left h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 6px;
}

.blog-left p {
  color: #bdbdbd;
  font-size: 14px;
  max-width: 520px;
}

/* RIGHT SIDE */
.blog-right {
  text-align: right;
  min-width: 140px;
}

.blog-date {
  display: block;
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 6px;
}

.blog-read {
  color: #9ca3af;
  font-size: 14px;
}
/*Spacing between blog cards*/
.blogs-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}


/*Project*/
/* PROJECT SECTION */
.projects-section {
  padding: 120px 80px;
}

.projects-title {
  font-size: 48px;
  margin-bottom: 10px;
}

.projects-subtitle {
  color: #aaa;
  margin-bottom: 60px;
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* PROJECT CARD */
.project-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}

/* IMAGE */
.project-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 18px;
  transition: transform 0.45s ease;
}

/* TITLE */
.project-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

/* DESC */
.project-card p {
  font-size: 14px;
  color: #ccc;
}

/* TECH STACK */
.tech-stack {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.45s ease;
  pointer-events: none;
}

/* TECH BADGES */
.tech {
  padding: 6px 16px;
  font-size: 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

/* HOVER EFFECT */
.project-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.25),
    0 0 80px rgba(255, 255, 255, 0.15);
}

/* IMAGE ZOOM */
.project-card:hover img {
  transform: scale(1.03);
}

/* SHOW TECH STACK ON HOVER */
.project-card:hover .tech-stack {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===============================
   PROJECTS – PREMIUM IMPROVEMENTS
================================ */

/* Center grid better */
.projects-grid {
  max-width: 1200px;
  margin: auto;
}

/* Equal height cards */
.project-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Image frame upgrade */
.project-card img {
  background: #000;
  padding: 6px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 10px 30px rgba(0,0,0,0.6);
}

/* Smooth premium hover */
.project-card:hover {
  transform: translateY(-14px) scale(1.015);
  box-shadow:
    0 0 30px rgba(255,255,255,0.25),
    0 0 120px rgba(255,255,255,0.12);
}

/* Tech stack motion */
.project-card:hover .tech {
  transform: translateY(-4px);
}

/* Tech pills polish */
.tech {
  transition: all 0.35s ease;
}

.tech:hover {
  background: rgba(255,255,255,0.22);
}

/* Click hint (no text) */
.project-card::after {
  content: "↗";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover::after {
  opacity: 1;
}

/* ======================
   SIMPLE SOCIAL SECTION
====================== */

.socials {
  text-align: center;
  padding: 80px 20px 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.socials h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 30px;
}

.social-links a {
  color: #ddd;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

/* subtle underline on hover */
.social-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #a855f7;
  transition: width 0.3s ease;
}

.social-links a:hover {
  color: #fff;
}

.social-links a:hover::after {
  width: 100%;
}

.footer-text {
  font-size: 13px;
  color: #888;
}

/* ===== FINAL HERO ROLE FIX ===== */

.hero-text {
  position: relative;
  z-index: 5;
}

.hero-role {
  display: block !important;
  margin-bottom: 14px;

  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;

  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* =========================
   LIGHT MODE (ONLY ADDED)
   DO NOT CHANGE ORIGINAL
========================= */

body.light {
  background: radial-gradient(
    circle at top left,
    #f5f5f5 0%,
    #eaeaea 40%,
    #dcdcdc 100%
  );
  color: #111;
}

/* Navbar */
body.light .navbar {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.65)
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light .navbar .logo,
body.light .navbar a.active {
  color: #000;
}

body.light .navbar a {
  color: rgba(0, 0, 0, 0.7);
}

/* Hero */
body.light .hero {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3f3f3 60%,
    #e8e8e8 100%
  );
}

body.light .hero-role {
  color: rgba(0, 0, 0, 0.6);
}

body.light .hero-text h1 {
  color: #000;
}

body.light .hero-text p {
  color: #555;
}

/* Sections */
body.light .section.dark {
  background: #f4f4f4;
}

body.light .section-text,
body.light .skills-subtext,
body.light .projects-subtitle {
  color: #555;
}

/* Cards */
body.light .card,
body.light .skill,
body.light .project-card,
body.light .blog-item-card {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .card h3,
body.light .project-card h3,
body.light .blog-left h3 {
  color: #000;
}

body.light .card p,
body.light .project-card p,
body.light .blog-left p {
  color: #555;
}

/* Contact */
body.light .contact-card {
  background: linear-gradient(
    145deg,
    #ffffff,
    #f3f3f3
  );
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light .contact-subtext {
  color: #555;
}

body.light .email-box input {
  background: rgba(0, 0, 0, 0.04);
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

body.light .email-box button {
  background: rgba(0, 0, 0, 0.08);
  color: #000;
}

/* Blog Detail */
body.light .blog-detail {
  background: #ffffff;
}

body.light .blog-content p {
  color: #333;
}

body.light blockquote {
  border-left: 3px solid #a855f7;
  color: #444;
}

/* Footer */
body.light .social-links a {
  color: #333;
}

body.light .social-links a:hover {
  color: #000;
}

body.light .footer-text {
  color: #555;
}