/* ==================================================
   STARSPACE — Homepage CSS (index.html)
   Self-contained: globals + nav + homepage sections
   ================================================== */

/* Google Fonts are loaded in the HTML <head> */

/* --------------------------------------------------
   RESET & BASE
-------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-align: left;
  overflow-x: hidden;
}

/* --------------------------------------------------
   BACKGROUND
-------------------------------------------------- */
html {
  background:
    radial-gradient(circle at 20% 20%, rgba(0,255,196,0.45), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(0,150,255,0.40), transparent 70%),
    linear-gradient(180deg, #000 0%, #002020 100%);
}

/* Noise texture */
html::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/img/noise.svg");
  background-size: 200px 200px;
  opacity: 0.25;
  pointer-events: none;
  z-index: -2;
}

/* Dark blur overlay */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(1px);
  z-index: -1;
}

body {
  position: relative;
  z-index: 0;
}

/* --------------------------------------------------
   TYPOGRAPHY
-------------------------------------------------- */
h1, h2, h3 {
  text-shadow: 0 0 12px rgba(0,255,196,0.6);
  margin-top: 0;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 0;
}

a { color: inherit; }

/* --------------------------------------------------
   CONTAINER
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------------
   NAVIGATION
-------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 14px 20px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,255,196,0.25);
  z-index: 999;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.nav .logo {
  display: flex;
  align-items: center;
}

.nav .logo img {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,255,196,0.5));
}

.nav nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.2s;
}

.nav nav a:hover,
.nav nav a.active {
  color: #00ffc4;
  text-shadow: 0 0 10px rgba(0,255,196,0.6);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #00ffc4;
  border-radius: 2px;
  transition: 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 899px) {
  .hamburger { display: flex; }

  .nav nav {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    width: min(280px, calc(100vw - 40px));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px;
    background: rgba(0,0,0,0.92);
    border: 1px solid rgba(0,255,196,0.24);
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.45), 0 0 24px rgba(0,255,196,0.08);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
  }

  .nav nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav nav a {
    padding: 13px 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.86);
    letter-spacing: 0.3px;
  }

  .nav nav a:hover,
  .nav nav a.active {
    background: rgba(0,255,196,0.08);
  }
}

/* --------------------------------------------------
   SECTIONS
-------------------------------------------------- */
.section {
  padding: 80px 20px;
}

.section h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 48px;
  color: #00ffc4;
  text-align: center;
  text-shadow: 0 0 12px rgba(0,255,196,0.6);
}

.section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffc4, transparent);
  box-shadow: 0 0 10px rgba(0,255,196,0.6);
}

/* Section eyebrow label */
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #00ffc4;
  opacity: 0.6;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* Divider wrapper */
.divider-wrap {
  padding: 0 20px;
}

/* Centered CTA below a section */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Divider line */
.divider {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,196,0.2), transparent);
}

@media (max-width: 768px) {
  .section { padding: 56px 20px; }
}

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #00ffc4;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s ease;
  box-shadow: 0 0 18px rgba(0,255,196,0.4);
}

.btn-primary:hover {
  background: #00e6b0;
  box-shadow: 0 0 30px rgba(0,255,196,0.65);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(0,255,196,0.4);
  color: #00ffc4;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(0,255,196,0.08);
  border-color: #00ffc4;
  transform: translateY(-2px);
}

.back-nav {
  padding: 24px 20px 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.back-link::before {
  content: "<";
  color: #00ffc4;
  font-size: 16px;
  line-height: 1;
}

.back-link:hover {
  color: #00ffc4;
  transform: translateX(-3px);
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.home-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 100px;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0,255,196,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(0,150,255,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.home-hero > * { position: relative; z-index: 1; }

/* Eyebrow */
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #00ffc4;
  opacity: 0.7;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  animation: fadeInUp 0.6s ease both;
}

/* Main heading */
.home-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 2px;
  color: #fff;
  text-shadow:
    0 0 24px rgba(0,255,196,0.45),
    0 0 60px rgba(0,255,196,0.15);
  margin: 0 0 28px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.home-hero h1 span {
  color: #00ffc4;
  display: block;
  text-shadow:
    0 0 30px rgba(0,255,196,0.8),
    0 0 80px rgba(0,255,196,0.3);
}

/* Lead paragraph */
.home-hero p.lead {
  font-size: clamp(15px, 2.2vw, 20px);
  max-width: 580px;
  opacity: 0.75;
  line-height: 1.75;
  margin: 0 auto 44px;
  font-weight: 400;
  animation: fadeInUp 0.7s 0.2s ease both;
}

/* CTA row */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.7s 0.3s ease both;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: max(36px, calc(env(safe-area-inset-bottom, 0px) + 12px));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeInUp 1s 0.8s ease both;
  pointer-events: none;
}

.scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, #00ffc4, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .scroll-hint {
    bottom: max(20px, calc(env(safe-area-inset-bottom, 0px) + 10px));
    font-size: 11px;
    gap: 6px;
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.9; }
}

/* Hero particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #00ffc4;
  border-radius: 50%;
  opacity: 0.35;
  animation: particleFloat 7s infinite ease-in-out;
  filter: drop-shadow(0 0 5px #00ffc4);
}

.hero-particles span:nth-child(1)  { top: 15%; left: 10%;  animation-delay: 0s; }
.hero-particles span:nth-child(2)  { top: 30%; left: 75%;  animation-delay: 1.2s; }
.hero-particles span:nth-child(3)  { top: 65%; left: 25%;  animation-delay: 2.4s; }
.hero-particles span:nth-child(4)  { top: 80%; left: 85%;  animation-delay: 3.6s; }
.hero-particles span:nth-child(5)  { top: 45%; left: 55%;  animation-delay: 4.8s; }
.hero-particles span:nth-child(6)  { top: 20%; left: 65%;  animation-delay: 0.6s; }
.hero-particles span:nth-child(7)  { top: 70%; left: 15%;  animation-delay: 1.8s; }
.hero-particles span:nth-child(8)  { top: 35%; left: 90%;  animation-delay: 3.0s; }
.hero-particles span:nth-child(9)  { top: 12%; left: 42%;  animation-delay: 4.2s; }
.hero-particles span:nth-child(10) { top: 88%; left: 58%;  animation-delay: 5.4s; }
.hero-particles span:nth-child(11) { top: 55%; left: 5%;   animation-delay: 2.0s; }
.hero-particles span:nth-child(12) { top: 92%; left: 38%;  animation-delay: 1.0s; }

@keyframes particleFloat {
  0%   { transform: translateY(0);     opacity: 0.12; }
  50%  { transform: translateY(-22px); opacity: 0.4;  }
  100% { transform: translateY(0);     opacity: 0.12; }
}

/* --------------------------------------------------
   FEATURE CARDS  (Što radimo)
-------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,255,196,0.18);
  border-radius: 16px;
  padding: 36px 28px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0,255,196,0.45);
  box-shadow: 0 10px 40px rgba(0,255,196,0.14);
}

/* Top shine on hover */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffc4, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 44px;
  margin-bottom: 18px;
  display: block;
}

.feature-svg-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,255,196,0.3));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.feature-card:hover .feature-svg-icon {
  filter: drop-shadow(0 0 14px rgba(0,255,196,0.6));
  transform: scale(1.08);
}

/* Value card SVG icons */
.value-svg-icon {
  width: 56px;
  height: 56px;
  display: block;
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 6px rgba(0,255,196,0.25));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.value-card:hover .value-svg-icon {
  filter: drop-shadow(0 0 12px rgba(0,255,196,0.5));
  transform: scale(1.1);
}

/* Workshop detail SVG icons */
.workshop-svg-icon {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 8px rgba(0,255,196,0.3));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.workshop-detail-card:hover .workshop-svg-icon {
  filter: drop-shadow(0 0 14px rgba(0,255,196,0.6));
  transform: scale(1.08);
}

.feature-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,255,196,0.35);
}

.feature-card p {
  font-size: 15px;
  opacity: 0.65;
  line-height: 1.65;
  margin: 0 0 22px;
}

.feature-link {
  font-size: 12px;
  font-weight: 700;
  color: #00ffc4;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: letter-spacing 0.2s;
}

.feature-card:hover .feature-link {
  letter-spacing: 3px;
}

/* --------------------------------------------------
   AUDIENCE PANELS  (Programi za sve)
-------------------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .audience-grid { grid-template-columns: 1fr; }
}

.audience-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,255,196,0.15);
  border-radius: 16px;
  padding: 36px 32px;
}

.audience-panel h3 {
  font-size: 19px;
  color: #00ffc4;
  margin: 0 0 24px;
  text-shadow: 0 0 12px rgba(0,255,196,0.4);
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.program-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.prog-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.program-list strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.program-list span {
  font-size: 13px;
  opacity: 0.55;
  line-height: 1.55;
}

/* --------------------------------------------------
   TEHNO PARK BANNER
-------------------------------------------------- */
.tehnopark-banner {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,255,196,0.2);
  border-radius: 20px;
  padding: 64px 48px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.tehnopark-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,255,196,0.07), transparent 65%);
  pointer-events: none;
}

.tehnopark-banner > * { position: relative; z-index: 1; }

.status-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  background: #00ffc4;
  padding: 5px 16px;
  border-radius: 20px;
}

.tehnopark-banner h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  margin: 4px 0 0;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 0 0 20px rgba(0,255,196,0.5);
}

.tehnopark-banner p {
  max-width: 520px;
  opacity: 0.65;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* Zone pills */
.zone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 4px 0;
}

.zone-pill {
  font-size: 13px;
  padding: 7px 18px;
  border: 1px solid rgba(0,255,196,0.28);
  border-radius: 30px;
  color: #00ffc4;
  opacity: 0.8;
  font-weight: 500;
  transition: 0.2s;
}

.zone-pill:hover {
  opacity: 1;
  background: rgba(0,255,196,0.07);
  border-color: rgba(0,255,196,0.6);
}

/* Zone pill SVG icons */
.zone-svg-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  filter: drop-shadow(0 0 3px rgba(0,255,196,0.4));
  opacity: 0.8;
}

.zone-pill:hover .zone-svg-icon {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(0,255,196,0.6));
}

@media (max-width: 600px) {
  .tehnopark-banner { padding: 48px 24px; }
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer {
  padding: 56px 20px 40px;
  text-align: center;
  border-top: 1px solid rgba(0,255,196,0.1);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #00ffc4;
}

.footer-copy {
  font-size: 13px;
  opacity: 0.4;
  margin: 0 0 6px;
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.25;
  margin: 0;
}

/* --------------------------------------------------
   INLINE SVG LOGO
-------------------------------------------------- */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  display: block;
  height: 44px;
  width: auto;
  overflow: visible;
}

/* Star pulse */
.logo-star {
  animation: logoStarPulse 2.8s ease-in-out infinite;
  transform-origin: 22px 22px;
}

.logo-star-glow {
  animation: logoGlowPulse 2.8s ease-in-out infinite;
  transform-origin: 22px 22px;
}

/* Orbit ring slow spin */
.logo-orbit {
  animation: logoOrbitSpin 18s linear infinite;
  transform-origin: 22px 22px;
}

/* Accent line shimmer */
.logo-accent-line {
  animation: logoLineFade 3.5s ease-in-out infinite;
}

@keyframes logoStarPulse {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(0,255,196,0.6)); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 9px rgba(0,255,196,1));   transform: scale(1.12); }
}

@keyframes logoGlowPulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(1.3); }
}

@keyframes logoOrbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes logoLineFade {
  0%, 100% { stroke-opacity: 0.25; }
  50%       { stroke-opacity: 0.65; }
}

/* --------------------------------------------------
   ENTRANCE ANIMATIONS
-------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------
   ROADMAP SECTION
-------------------------------------------------- */
.roadmap {
  position: relative;
  padding: 80px 20px;
}

.roadmap-line {
  position: absolute;
  left: 50%;
  top: 200px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0,255,196,0.6), rgba(0,255,196,0.1), transparent);
  transform: translateX(-50%);
}

.roadmap-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.roadmap-item {
  position: relative;
  padding-left: 40px;
  text-align: left;
}

.roadmap-item .dot {
  position: absolute;
  left: -18px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: rgba(0,255,196,0.8);
  border: 2px solid #000;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,255,196,0.6);
}

.roadmap-item h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: #00ffc4;
  text-shadow: 0 0 12px rgba(0,255,196,0.5);
}

.roadmap-item p {
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .roadmap {
    padding: 56px 20px;
  }

  .roadmap-line {
    left: 12px;
    top: 180px;
  }

  .roadmap-items {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .roadmap-item {
    padding-left: 50px;
  }

  .roadmap-item .dot {
    left: -26px;
  }
}

/* --------------------------------------------------
   ABOUT PAGE STYLES
-------------------------------------------------- */
.about-hero {
  padding: 100px 20px 60px;
  text-align: center;
  background: rgba(0,255,196,0.03);
  border-bottom: 1px solid rgba(0,255,196,0.1);
}

.about-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0 0 24px;
  color: #fff;
  text-shadow: 0 0 20px rgba(0,255,196,0.4);
}

.about-intro-text {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
  line-height: 1.8;
}

/* Mission content */
.mission-content {
  max-width: 900px;
  margin: 0 auto;
}

.mission-content p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 20px;
}

.mission-content strong {
  color: #00ffc4;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,255,196,0.12);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,255,196,0.3);
}

.value-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: #00ffc4;
  text-shadow: 0 0 10px rgba(0,255,196,0.3);
}

.value-card p {
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.6;
  margin: 0;
}

/* Activities grid */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.activity-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,255,196,0.15);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,196,0.35);
  box-shadow: 0 8px 24px rgba(0,255,196,0.08);
}

.activity-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(0,255,196,0.3);
  margin-bottom: 12px;
}

.activity-card h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: #fff;
  text-shadow: 0 0 8px rgba(0,255,196,0.25);
}

.activity-card p {
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 20px 50px;
  }

  .about-hero h1 {
    margin-bottom: 18px;
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }

  .value-card {
    padding: 20px 16px;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }
}

/* Join CTA */
.join-cta {
  background: rgba(0,255,196,0.05);
  border: 1px solid rgba(0,255,196,0.2);
  border-radius: 16px;
  padding: 56px 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.join-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 16px;
  color: #fff;
}

.join-cta p {
  font-size: 16px;
  opacity: 0.75;
  margin: 0 0 28px;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .join-cta {
    padding: 40px 24px;
  }
}

/* --------------------------------------------------
   WORKSHOPS PAGE STYLES
-------------------------------------------------- */
.workshops-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.workshop-detail-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,255,196,0.15);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workshop-detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,196,0.35);
  box-shadow: 0 8px 24px rgba(0,255,196,0.08);
}

.workshop-icon {
  font-size: 48px;
  display: block;
}

.workshop-detail-card h3 {
  font-size: 20px;
  margin: 0;
  color: #fff;
  text-shadow: 0 0 8px rgba(0,255,196,0.25);
}

.workshop-detail-card p {
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

.workshop-detail-card .btn-ghost {
  align-self: flex-start;
  margin-top: 8px;
  padding: 10px 20px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .workshops-detail-grid {
    grid-template-columns: 1fr;
  }

  .workshop-detail-card {
    padding: 24px 20px;
  }
}
@media (max-width: 600px) {
  .home-hero {
    min-height: auto;
    padding: 80px 20px 60px;
  }
}

/* --------------------------------------------------
   PROGRAMS PAGE - QUIETER TEASER LAYOUT
-------------------------------------------------- */
.programs-hero {
  padding-bottom: 70px;
}

.programs-section {
  padding: 72px 20px;
}

.programs-container {
  max-width: 920px;
}

.programs-intro {
  max-width: 780px;
  margin: 0 auto 44px;
}

.programs-intro p {
  font-size: 16px;
  line-height: 1.85;
  opacity: 0.72;
  margin-bottom: 18px;
}

.programs-lines {
  border-top: 1px solid rgba(0,255,196,0.16);
}

.program-line {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,255,196,0.12);
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.program-line:hover {
  border-bottom-color: rgba(0,255,196,0.35);
}

.program-line span,
.programs-age-list strong,
.programs-flow span {
  color: #00ffc4;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0,255,196,0.3);
}

.program-line p {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.68;
  margin: 0;
}

.program-line:hover p {
  opacity: 0.86;
}

.programs-age-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 48px;
  max-width: 820px;
  margin: 0 auto;
}

.programs-age-list p {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.68;
  margin: 10px 0 0;
}

.programs-flow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: program-step;
}

.programs-flow li {
  counter-increment: program-step;
  position: relative;
  padding: 0 0 30px 56px;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.72;
}

.programs-flow li::before {
  content: counter(program-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  color: rgba(0,255,196,0.42);
}

.programs-flow span {
  display: block;
  margin-bottom: 4px;
}

.programs-closing-section {
  padding-top: 36px;
}

.programs-closing {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(0,255,196,0.16);
  text-align: center;
}

.programs-closing p {
  font-size: 16px;
  line-height: 1.85;
  opacity: 0.72;
  margin: 0 auto 18px;
}

.programs-closing a {
  color: #00ffc4;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.programs-closing a:hover {
  text-shadow: 0 0 10px rgba(0,255,196,0.7);
}

@media (max-width: 720px) {
  .program-line,
  .programs-age-list {
    grid-template-columns: 1fr;
  }

  .program-line {
    gap: 10px;
  }

  .programs-section {
    padding: 56px 20px;
  }
}

/* --------------------------------------------------
   CONTACT PAGE
-------------------------------------------------- */
.contact-section {
  padding: 72px 20px;
}

.contact-container {
  max-width: 920px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 56px;
  align-items: start;
}

.contact-primary p {
  font-size: 16px;
  line-height: 1.85;
  opacity: 0.72;
  margin-bottom: 22px;
}

.contact-email {
  color: #00ffc4;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(0,255,196,0.35);
}

.contact-email:hover {
  text-shadow: 0 0 20px rgba(0,255,196,0.65);
}

.contact-details {
  margin: 0;
  border-top: 1px solid rgba(0,255,196,0.16);
}

.contact-details div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,255,196,0.12);
}

.contact-details dt {
  color: #00ffc4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.72;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
}

.contact-details a:hover {
  color: #00ffc4;
}

.contact-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 36px;
  max-width: 820px;
  margin: 0 auto;
}

.contact-topics p {
  position: relative;
  margin: 0;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.72;
}

.contact-topics p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  background: #00ffc4;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,255,196,0.65);
}

.contact-closing-section {
  padding-top: 32px;
}

.contact-closing {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(0,255,196,0.16);
  text-align: center;
}

.contact-closing p {
  font-size: 16px;
  line-height: 1.85;
  opacity: 0.72;
  margin: 0 auto 18px;
}

.contact-closing a {
  color: #00ffc4;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-closing a:hover {
  text-shadow: 0 0 10px rgba(0,255,196,0.7);
}

@media (max-width: 760px) {
  .contact-layout,
  .contact-topics {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 34px;
  }

  .contact-section {
    padding: 56px 20px;
  }
}

/* --------------------------------------------------
   TEHNO PARK FLAGSHIP PAGE
-------------------------------------------------- */
.technopark-hero {
  min-height: calc(100vh - 72px);
  padding-bottom: 70px;
}

.technopark-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 110px;
  width: min(760px, 82vw);
  height: min(760px, 82vw);
  border: 1px solid rgba(0,255,196,0.12);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow:
    inset 0 0 60px rgba(0,255,196,0.05),
    0 0 80px rgba(0,150,255,0.07);
  pointer-events: none;
  z-index: 0;
}

.technopark-hero .lead {
  max-width: 760px;
}

.technopark-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 1px;
  width: min(760px, calc(100vw - 40px));
  margin-top: 44px;
  border: 1px solid rgba(0,255,196,0.16);
  background: rgba(0,255,196,0.08);
}

.technopark-hero-stats div {
  padding: 22px 18px;
  background: rgba(0,0,0,0.42);
  text-align: center;
}

.technopark-hero-stats strong {
  display: block;
  color: #00ffc4;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(22px, 3.6vw, 40px);
  line-height: 1;
  text-shadow: 0 0 14px rgba(0,255,196,0.55);
}

.technopark-hero-stats span {
  display: block;
  margin-top: 9px;
  font-size: 12px;
  letter-spacing: 1.4px;
  opacity: 0.62;
  text-transform: uppercase;
}

.technopark-story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.technopark-story-lead p {
  color: #fff;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.45;
  opacity: 0.92;
  margin: 0;
  text-shadow: 0 0 18px rgba(0,255,196,0.22);
}

.technopark-story-copy p {
  font-size: 16px;
  line-height: 1.85;
  opacity: 0.72;
  margin-bottom: 18px;
}

.technopark-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid rgba(0,255,196,0.14);
  background: rgba(0,255,196,0.08);
}

.technopark-pillars div {
  min-height: 260px;
  padding: 30px 26px;
  background: rgba(0,0,0,0.38);
}

.technopark-pillars span,
.technopark-experience strong {
  color: rgba(0,255,196,0.45);
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
}

.technopark-pillars h3,
.technopark-zone-card h3,
.technopark-experience h3 {
  margin: 14px 0 12px;
  color: #fff;
}

/* --------------------------------------------------
   GALLERY GRID
-------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(0,255,196,0.15);
  background: rgba(0,0,0,0.3);
  aspect-ratio: 1 / 1;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
  border-color: rgba(0,255,196,0.4);
  box-shadow: 0 8px 24px rgba(0,255,196,0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
  filter: brightness(0.9);
}

.gallery-item:hover img {
  opacity: 0.95;
  filter: brightness(1.1);
}

/* --------------------------------------------------
   LIGHTBOX MODAL
-------------------------------------------------- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: auto;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid rgba(0,255,196,0.3);
  max-height: 85vh;
}

/* Navigation buttons */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,255,196,0.2);
  border: 2px solid rgba(0,255,196,0.4);
  color: #00ffc4;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0,255,196,0.4);
  border-color: rgba(0,255,196,0.8);
  box-shadow: 0 0 20px rgba(0,255,196,0.4);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: 2px solid rgba(0,255,196,0.4);
  color: #00ffc4;
  font-size: 36px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.lightbox-close:hover {
  background: rgba(255,0,0,0.2);
  border-color: rgba(255,0,0,0.6);
  color: #ff6b6b;
}

/* Counter */
.lightbox-counter {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  color: #00ffc4;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  background: rgba(0,255,196,0.1);
  padding: 8px 16px;
  border: 1px solid rgba(0,255,196,0.3);
  border-radius: 20px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .lightbox-counter {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.technopark-pillars p,
.technopark-zone-card p,
.technopark-experience p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.66;
  margin: 0;
}

.technopark-zones-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.technopark-zone-card {
  min-height: 260px;
  padding: 30px 26px;
  background:
    linear-gradient(145deg, rgba(0,255,196,0.08), rgba(255,255,255,0.025)),
    rgba(255,255,255,0.025);
  border: 1px solid rgba(0,255,196,0.16);
  border-radius: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.technopark-zone-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,196,0.42);
  box-shadow: 0 20px 54px rgba(0,255,196,0.1);
}

.technopark-zone-card.zone-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 220px;
}

.technopark-zone-card.zone-wide .feature-svg-icon {
  width: 82px;
  height: 82px;
  margin: 0;
}

.technopark-zone-card span {
  display: block;
  margin-top: 18px;
  color: #00ffc4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 0.75;
  text-transform: uppercase;
}

.technopark-experience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.technopark-experience div {
  position: relative;
  padding-left: 24px;
}

.technopark-experience div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(to bottom, #00ffc4, transparent);
  opacity: 0.5;
}

.technopark-program-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid rgba(0,255,196,0.16);
}

.technopark-program-list a {
  display: grid;
  grid-template-columns: minmax(190px, 270px) 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,255,196,0.12);
  color: inherit;
  text-decoration: none;
}

.technopark-program-list span {
  color: #00ffc4;
  font-size: 15px;
  font-weight: 700;
}

.technopark-program-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.68;
}

.technopark-program-list a:hover p {
  opacity: 0.9;
}

.technopark-partner-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid rgba(0,255,196,0.18);
  background: rgba(0,255,196,0.045);
  border-radius: 16px;
  text-align: center;
}

.technopark-partner-panel p {
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 16px;
  line-height: 1.85;
  opacity: 0.76;
}

.technopark-partner-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.technopark-partner-tags span {
  padding: 8px 15px;
  border: 1px solid rgba(0,255,196,0.22);
  border-radius: 999px;
  color: #00ffc4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.technopark-roadmap .roadmap-line {
  top: 190px;
}

.technopark-final {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 36px;
  border: 1px solid rgba(0,255,196,0.2);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,255,196,0.09), transparent 70%),
    rgba(255,255,255,0.025);
  text-align: center;
}

.technopark-final h2 {
  display: block;
  margin-bottom: 18px;
}

.technopark-final p {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.76;
}

@media (max-width: 940px) {
  .technopark-hero-stats,
  .technopark-story-grid,
  .technopark-pillars,
  .technopark-experience {
    grid-template-columns: 1fr 1fr;
  }

  .technopark-zones-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .technopark-hero {
    min-height: auto;
    padding-top: 86px;
  }

  .technopark-hero-stats,
  .technopark-story-grid,
  .technopark-pillars,
  .technopark-zones-grid,
  .technopark-experience {
    grid-template-columns: 1fr;
  }

  .technopark-zone-card.zone-wide,
  .technopark-program-list a {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .technopark-zone-card.zone-wide .feature-svg-icon {
    width: 64px;
    height: 64px;
  }

  .technopark-partner-panel,
  .technopark-final {
    padding: 34px 22px;
  }
}


/* Breadcrumb Styling */
.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #007bff;
}

/* Optional: Last item should be non-clickable */
.breadcrumb li:last-child {
  color: #666;
  text-decoration: none;
}
