/* NEXORA BLUE AESTHETIC - Modern Streetwear & Tech Portfolio Theme */

:root {
  --nexora-canvas-bg: #f3f7fd;
  --nexora-blue-primary: #2563eb;
  --nexora-blue-secondary: #3b82f6;
  --nexora-blue-dark: #1d4ed8;
  --nexora-blue-deep: #0f172a;
  --nexora-blue-card: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  --nexora-text-main: #0f172a;
  --nexora-text-muted: #64748b;
  --nexora-font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --nexora-radius-xl: 36px;
  --nexora-radius-lg: 24px;
  --nexora-radius-pill: 9999px;
}

/* Light / Canvas Base for Nexora Style */
.nexora-page-wrapper {
  background-color: var(--nexora-canvas-bg);
  color: var(--nexora-text-main);
  font-family: var(--nexora-font-display);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Canvas Header Navigation */
.nexora-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
}

.nexora-nav-brand {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--nexora-text-main);
  text-transform: uppercase;
  text-decoration: none;
}

.nexora-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nexora-nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nexora-nav-link:hover {
  color: var(--nexora-blue-primary);
}

.nexora-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nexora-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nexora-icon-btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.nexora-badge-btn {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--nexora-radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--nexora-blue-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nexora-badge-btn:hover {
  background: var(--nexora-blue-primary);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

/* Giant Typography Header Banner */
.nexora-hero-header-banner {
  max-width: 1240px;
  margin: 1rem auto 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.nexora-banner-text {
  font-size: clamp(2.5rem, 5.5vw, 5.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #0f172a;
  text-transform: uppercase;
}

.nexora-text-highlight {
  color: var(--nexora-blue-primary);
  font-weight: 900;
  display: block;
}

.nexora-star-accent {
  font-size: 2rem;
  color: var(--nexora-blue-primary);
  animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hero Rounded Blue Card Container */
.nexora-card-wrapper {
  max-width: 1240px;
  margin: 1.5rem auto 3rem auto;
  padding: 0 1.5rem;
  position: relative;
}

.nexora-blue-card {
  background: var(--nexora-blue-card);
  border-radius: var(--nexora-radius-xl);
  padding: 3rem 2.5rem 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(37, 99, 235, 0.35);
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: center;
  gap: 1.5rem;
}

/* Organic Background Wave Shapes inside Card */
.nexora-card-blob-1 {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.nexora-card-blob-2 {
  position: absolute;
  bottom: -30%;
  right: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.4) 0%, rgba(96, 165, 250, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

.nexora-card-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}

/* Central Overlapping Character Image */
.nexora-character-container {
  position: relative;
  z-index: 25;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.nexora-character-img {
  width: 100%;
  max-width: 320px;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  margin-top: -90px;
  border-radius: 28px;
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.38);
  border: 4px solid rgba(255, 255, 255, 0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  pointer-events: auto;
}

.nexora-character-img:hover {
  transform: scale(1.03) translateY(-6px);
}

/* Left Card Content */
.nexora-left-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-col: column;
  flex-direction: column;
  gap: 1.25rem;
  color: #ffffff;
}

.nexora-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0f172a;
  padding: 0.45rem 1rem;
  border-radius: var(--nexora-radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nexora-card-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nexora-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 600;
  max-width: 330px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.nexora-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #0f172a;
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: var(--nexora-radius-pill);
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
}

.nexora-cta-btn:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.nexora-avatar-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #0f172a;
  padding: 0.55rem 1.1rem;
  border-radius: var(--nexora-radius-pill);
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nexora-avatar-group {
  display: flex;
  align-items: center;
}

.nexora-avatar-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  margin-left: -8px;
  object-fit: cover;
}

.nexora-avatar-thumb:first-child {
  margin-left: 0;
}

.nexora-avatar-text {
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
}

/* Right Card Content */
.nexora-right-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.nexora-features-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #ffffff;
}

.nexora-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.nexora-feature-icon {
  font-size: 1.25rem;
}

.nexora-feature-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Featured Project White Card Widget */
.nexora-project-card {
  background: #ffffff;
  border-radius: var(--nexora-radius-lg);
  padding: 1rem;
  width: 100%;
  max-width: 260px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nexora-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.25);
}

.nexora-project-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nexora-project-card-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--nexora-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nexora-project-img-wrapper {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: #f1f5f9;
  position: relative;
}

.nexora-project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.nexora-project-card:hover .nexora-project-img {
  transform: scale(1.06);
}

.nexora-project-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.nexora-project-sub {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.nexora-project-btn {
  background: var(--nexora-blue-card);
  color: #ffffff;
  border: none;
  border-radius: var(--nexora-radius-pill);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
  margin-top: 0.25rem;
}

.nexora-project-btn:hover {
  opacity: 0.92;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .nexora-blue-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .nexora-character-img {
    margin-top: 0;
    max-width: 320px;
  }

  .nexora-left-content {
    align-items: center;
  }

  .nexora-right-content {
    align-items: center;
  }

  .nexora-card-desc {
    max-width: 100%;
  }

  .nexora-nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .nexora-banner-text {
    font-size: 2.2rem;
  }

  .nexora-blue-card {
    border-radius: 24px;
    padding: 2rem 1.25rem;
  }

  .nexora-project-card {
    max-width: 100%;
  }
}

/* ==========================================================================
   NEXORA BLUE LIGHT CANVAS - BLACK / DARK TEXT OVERRIDES
   ========================================================================== */

/* Section Layouts on Light Canvas */
#about,
#projects,
#skills,
#certificates,
#contact,
#github {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  background: transparent;
  color: #0f172a;
  position: relative;
}

/* All Headings in Black / Dark Navy */
#about h2, #projects h2, #skills h2, #certificates h2, #contact h2, #github h2,
#about h3, #projects h3, #skills h3, #certificates h3, #contact h3, #github h3,
#about h4, #projects h4, #skills h4, #certificates h4, #contact h4, #github h4,
#about h5, #projects h5, #skills h5, #certificates h5, #contact h5, #github h5 {
  color: #0f172a !important;
  font-weight: 800;
}

/* Subtitles, Paragraphs, Descriptions in Crisp Dark Slate */
#about p, #projects p, #skills p, #certificates p, #contact p, #github p,
#about span, #projects span, #skills span, #certificates span, #contact span, #github span {
  color: #334155;
}

/* Glass Panels Turned into Crisp White Cards with Dark Text */
.glass-panel {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
  color: #0f172a !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.glass-panel:hover {
  background: #ffffff !important;
  border-color: rgba(37, 99, 235, 0.35) !important;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12) !important;
}

/* Timeline Left Border & Badges */
#about .border-l {
  border-left-color: #cbd5e1 !important;
}

/* Badges & Tags in White Cards */
.bg-white\/5,
.bg-white\/10 {
  background-color: #f1f5f9 !important;
  color: #1e293b !important;
  border-color: #cbd5e1 !important;
}

/* Contact Inputs & Floating Labels for Light Theme */
.form-input {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
  font-weight: 600 !important;
}

.form-input:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.15) !important;
}

.floating-label {
  color: #64748b !important;
  font-weight: 700 !important;
}

/* Footer Styling on Light Canvas */
footer {
  max-width: 1240px;
  margin: 3rem auto 2rem auto;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: #0f172a;
}

/* GitHub Contribution Graph Grid Styling */
.github-contribution-graph {
  display: flex !important;
  gap: 3px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0.4rem 0 !important;
  width: max-content !important;
}

.contribution-day {
  width: 10px !important;
  height: 10px !important;
  border-radius: 2px !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.contribution-day:hover {
  transform: scale(1.4) !important;
  z-index: 10 !important;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3) !important;
}

/* Green Level Colors for Github Contribution Squares */
.level-0 {
  background-color: #ebedf0 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.level-1 {
  background-color: #9be9a8 !important;
}

.level-2 {
  background-color: #40c463 !important;
}

.level-3 {
  background-color: #30a14e !important;
}

.level-4 {
  background-color: #216e39 !important;
}



