body {
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  background-color: #f6f9fb;
}

/* ===== HERO SECTION - MODERN DESIGN ===== */
.hero-section {
  background-image: url("/assets/img/section/hero-section.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(248, 252, 255, 0.95) 100%
  );
  backdrop-filter: blur(3px);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  poPoppins-events: none;
}

.hero-particles::before,
.hero-particles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero-particles::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(13, 110, 253, 0.08) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-particles::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(32, 201, 151, 0.08) 0%,
    transparent 70%
  );
  bottom: -50px;
  left: -50px;
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(20px, 10px) scale(1.02);
  }
}

/* ===== MODERN GLOW EFFECTS ===== */
.hero-glow-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  poPoppins-events: none;
  z-index: 1;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: bg-orb-float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-1 {
  top: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  animation-delay: -5s;
}

.glow-2 {
  bottom: -10%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.2) 0%, transparent 70%);
  animation-delay: -2s;
}

.glow-3 {
  top: 40%;
  left: 40%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation-delay: -10s;
  animation-duration: 25s;
}

@keyframes bg-orb-float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(20px, 40px) scale(1.05); }
}

/* Remove old mobile hiding if not needed, or adjust */
@media (max-width: 768px) {
  .glow-orb {
    opacity: 0.4; /* Dimmer on mobile */
  }
}
/* ===== END MODERN GLOW EFFECTS ===== */

.hero-content {
  position: relative;
  z-index: 10;
  padding: 2rem 0;
}

.hero-section > .container {
  width: 100%;
}

/* Hero Badge Label */
.hero-badge-label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.08) 0%,
    rgba(6, 182, 212, 0.08) 100%
  );
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #10b981;
  margin-bottom: 1.75rem;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
}

.hero-badge-label:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.badge-icon {
  font-size: 1.25rem;
}

/* Hero Title */
.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(
    90deg,
    #10b981,
    #14b8a6,
    #06b6d4,
    #0ea5e9,
    #14b8a6,
    #10b981
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: green-shift 4s linear infinite, text-glow-pulse 3s ease-in-out infinite alternate;
  position: relative;
  z-index: 1;
}

@keyframes green-shift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes text-glow-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.6));
  }
}

/* Hero Tagline (Location) */
.hero-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #10b981;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline::before {
  content: "📍";
  font-size: 1rem;
}

/* Hero Subtitle */
.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #64748b;
  line-height: 1.8;
  max-width: 950px;
  margin: 0 auto 2.5rem;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.25rem;
  background: linear-gradient(135deg, #0d6efd 0%, #0056d2 100%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3), 0 1px 3px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4), 0 4px 10px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:active {
  transform: translateY(-2px) scale(1);
}

.btn-hero-primary svg {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
  transform: translateX(5px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.25rem;
  background: rgba(255, 255, 255, 0.9);
  color: #1e293b;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 16px;
  text-decoration: none;
  border: 2px solid rgba(13, 110, 253, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.btn-hero-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.08) 0%,
    rgba(6, 182, 212, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-hero-secondary:hover {
  border-color: #0d6efd;
  color: #0d6efd;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.15),
    0 4px 10px rgba(0, 0, 0, 0.06);
}

.btn-hero-secondary:hover::before {
  opacity: 1;
}

.btn-hero-secondary:active {
  transform: translateY(-2px) scale(1);
}

.btn-hero-secondary svg {
  transition: transform 0.3s ease;
}

.btn-hero-secondary:hover svg {
  transform: scale(1.1);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.8125rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
  opacity: 1;
  color: #0d6efd;
}

.hero-scroll-indicator svg {
  animation: bounce-arrow 2s ease-in-out infinite;
  width: 28px;
  height: 28px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

@keyframes bounce-arrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-up-delay {
  animation: slideUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.animate-fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.animate-bounce {
  animation: fadeIn 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero page - no top padding */
.page-wrapper.hero-page {
  padding-top: 0 !important;
  margin-top: 0 !important;
}


/* Ensure hero section starts from top */
.page-wrapper.hero-page .hero-section {
  margin-top: 0;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  /* Hide Location Icon on Mobile */
  .hero-tagline::before {
    display: none;
  }

  .hero-tagline {
    width: auto;
    justify-content: center;
    font-size: 0.9rem; /* Smaller font on mobile */
  }

  /* Fix Buttons: Stacked and Compact */
  .hero-buttons {
    flex-direction: column;
    padding: 0 1rem;
    gap: 0.75rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-hero-glass {
    width: 100%;
    margin: 0;
    padding: 0.875rem 1.5rem; /* Slightly smaller than desktop */
    font-size: 0.95rem;
    justify-content: center;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* ===== END HERO SECTION ===== */

.hero-badge {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-card img {
  height: 180px;
  object-fit: cover;
}

.mini-stat {
  border: 1px solid #eef1f5;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 38, 63, 0.05);
}

.page-wrapper {
  padding-top: 90px;
}

/* ===== TENTANG DESA SECTION ===== */
.about-section {
  background-color: #ffffff;
}

.about-decoration {
  position: absolute;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.5;
}

.about-decoration.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -50px;
}

.about-decoration.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
}

.about-image-wrapper {
  position: relative;
  z-index: 10;
}

/* Floating Badge on Map */
.floating-badge {
  position: absolute;
  bottom: 25px;
  left: -20px;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: float-badge 6s ease-in-out infinite;
  max-width: 200px;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-badge .extra-small {
  font-size: 0.75rem;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(13, 110, 253, 0.06);
  color: #0d6efd;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #0d6efd;
  border-radius: 50%;
  display: inline-block;
}

/* Feature Box */
.feature-box {
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  border-color: rgba(13, 110, 253, 0.2);
}

.feature-box .icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Button Hover Lift */
.btn-hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.btn-hover-lift:active {
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .about-image-wrapper {
    margin-bottom: 2rem;
  }
  
  .floating-badge {
    left: 10px;
    bottom: 20px;
  }
}

/* ===== ABOUT SECTION - MODERN DESIGN ===== */
.about-section,
.news-section {
  padding: 6rem 0;
  background-color: #ffffff;
  overflow: hidden;
  /* Subtle Dot Pattern */
  background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  position: relative;
  /* Poppinsactive Parallax Background */
  background-position: calc(var(--mouse-x, 0px) / -20) calc(var(--mouse-y, 0px) / -20);
  transition: background-position 0.1s linear;
}

/* Spotlight Effect */
.about-section::before,
.news-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  poPoppins-events: none;
  z-index: 1;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
    rgba(16, 185, 129, 0.15), 
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-section:hover::before,
.news-section:hover::before {
  opacity: 1;
}

.about-blob-1,
.about-blob-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.about-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(16, 185, 129, 0.05);
  top: -100px;
  left: -150px;
}

.about-blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(13, 110, 253, 0.05);
  bottom: -50px;
  right: -100px;
}

/* Map Styling */
.map-modern-wrapper {
  position: relative;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.map-frame {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 Aspect Ratio */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateZ(0); /* Hardware accel */
}

.map-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  transition: transform 0.5s ease;
}

.map-modern-wrapper:hover .map-frame iframe {
  transform: scale(1.05);
}

/* Floating Map Badges */
.map-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.map-badge:hover {
  transform: scale(1.05) translateY(-5px);
}

.badge-location {
  bottom: 2.5rem;
  left: -1rem;
}

.badge-population {
  top: 2.5rem;
  right: -1rem;
}

.map-badge .icon {
  width: 40px;
  height: 40px;
  background: #f0fdf4;
  color: #10b981;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-population .icon {
  background: #f0f9ff;
  color: #0ea5e9;
}

.map-badge .text {
  display: flex;
  flex-direction: column;
}

.map-badge .label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.map-badge .value {
  font-size: 0.9375rem;
  color: #1e293b;
  font-weight: 700;
}

/* Content Styling */
.section-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-tag .line {
  width: 40px;
  height: 2px;
  background: #10b981;
  border-radius: 2px;
}

.section-tag .text {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #10b981;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem); /* Responsive typography */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-family: inherit;
}

.text-gradient-primary {
  background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.8; /* Improve readability */
  color: #64748b;
  margin-bottom: 2.5rem;
}

/* Visi Misi Cards */
.visi-misi-wrapper {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.vm-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  border-color: rgba(16, 185, 129, 0.2);
}

.vm-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.visi-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.misi-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.vm-content h6 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.vm-content p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Buttons */
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-modern-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #1e293b;
  color: #ffffff;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.2);
}

.btn-modern-primary:hover {
  background: #0f172a;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(30, 41, 59, 0.3);
}

.btn-modern-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: #1e293b;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.btn-modern-outline:hover {
  border-color: #1e293b;
  background: #f8fafc;
  color: #0f172a;
}

/* Animations (Simple entry animations) */
@keyframes slideUpFade {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slideUpFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .map-modern-wrapper {
      margin-bottom: 2rem;
  }
  
  .badge-location {
      left: 0;
      bottom: -1rem;
  }
  
  .badge-population {
      right: 0;
      top: -1rem;
  }
  
  .section-description {
      font-size: 1rem;
  }
}

/* Additional Animations */
@keyframes slideRightFade {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeftFade {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-right {
  animation: slideRightFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-slide-left {
  animation: slideLeftFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.2s; /* Slight delay for content */
  opacity: 0; /* Ensure hidden before animation starts */

}

/* ===== GALLERY SECTION - GLASSMORPHISM ===== */
.gallery-section {
  padding: 6rem 0;
  background-color: #f8fafc;
  overflow: hidden;
  position: relative;
}

/* Background Pattern & Mesh Gradient */
.gallery-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  poPoppins-events: none;
  overflow: hidden;
}

.gallery-bg-glow::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: bgPulse 15s ease-in-out infinite alternate;
}

.gallery-bg-glow::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0) 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: bgPulse 10s ease-in-out infinite alternate-reverse;
}

/* Add a subtle grid pattern overlay */
.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

@keyframes bgPulse {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(20px, -20px); }
  100% { transform: scale(0.9) translate(-20px, 20px); }
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 1);
}

.glass-card-img {
  position: relative;
  width: 100%;
  padding-bottom: 65%; /* Aspect ratio */
  overflow: hidden;
}

.glass-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.glass-card:hover .glass-card-img img {
  transform: scale(1.08); /* Better zoom effect */
}

/* Date Badge overlapping image */
.glass-date-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 2;
}

.glass-date-badge .day {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}

.glass-date-badge .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 600;
  margin-top: 0.1rem;
}

.glass-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.glass-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.glass-desc {
  font-size: 0.9375rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.glass-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #0ea5e9;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.glass-link:hover {
  gap: 0.75rem;
  color: #0284c7;
}

/* Mobile Adjustments for 2-column Layout */
@media (max-width: 576px) {
  .glass-card-body {
    padding: 1rem;
  }
  
  .glass-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .glass-desc {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  .glass-date-badge {
    padding: 0.3rem 0.6rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }
  
  .glass-date-badge .day {
    font-size: 1rem;
  }
  
  .glass-date-badge .month {
    font-size: 0.65rem;
  }
}

.empty-state-glass {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px dashed #cbd5e1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.empty-state-glass .icon {
  font-size: 3rem;
  opacity: 0.5;
}

/* ===== ABOUT SECTION - MODERN ===== */
.about-section {
  padding: 6rem 0;
  background-color: #fff;
  position: relative;
  overflow: hidden; /* Ensure glow doesn't overflow */
  /* Subtle Dot Pattern */
  background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}




/* ===== NEWS SECTION ===== */
.news-section {
  padding: 6rem 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  /* Subtle Dot Pattern to keep it white but textured */
  background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.news-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  poPoppins-events: none;
  z-index: 0;
}

.news-bg-glow::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%); /* Subtle Orange */
  filter: blur(80px);
}

.news-bg-glow::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%); /* Subtle Blue */
  filter: blur(80px);
}

/* ===== PROJECT SECTION ===== */
/* Project Card Image */
.project-card-img {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

.project-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card-modern:hover .project-card-img img {
  transform: scale(1.05);
}

.project-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


/* Ensure card radius clips image */
.project-card-modern {
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  background: #ffffff;
}

.project-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01) !important;
}

.project-budget {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: background-color 0.3s ease;
}

.project-card-modern:hover .project-budget {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
}

/* Custom badge for projects */
/* ===== HORIZONTAL NEWS CARD ===== */
.news-card-horizontal {
  display: flex;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  min-height: 250px;
  position: relative;
}

.news-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  border-color: #e2e8f0;
}

.news-img-wrapper {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
}

.news-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card-horizontal:hover .news-img-wrapper img {
  transform: scale(1.05);
}

.news-date-floating {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-size: 0.8rem;
  line-height: 1;
  color: #1e293b;
}

.news-date-floating span {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.news-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.news-excerpt {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0d6efd;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s ease;
}

.news-read-more:hover {
  gap: 0.75rem;
}

/* Responsive adjustment for horizontal card */
@media (max-width: 576px) {
  .news-card-horizontal {
    flex-direction: column;
    min-height: auto;
  }
  .news-img-wrapper {
    flex: none;
    width: 100%;
    height: 200px; /* Fixed height for image area */
  }
  
  .news-img-wrapper img {
    position: absolute;
  }
  
  .news-body {
    padding: 1rem;
    flex: 1;
  }

  .news-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .news-excerpt {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .news-read-more {
    font-size: 0.8rem;
  }
  
  .news-date-floating {
    padding: 0.3rem 0.5rem;
    top: 0.5rem;
    left: 0.5rem;
  }
  
  .news-date-floating span {
    font-size: 0.9rem;
  }
  
  .news-date-floating small {
    font-size: 0.7rem;
  }
}

/* Mobile Project Card - Horizontal Layout */
@media (max-width: 576px) {
  .project-card-modern {
    flex-direction: row;
    min-height: 160px;
    align-items: stretch;
  }

  .project-card-img {
    width: 120px; /* Reduced width for more content space */
    flex-shrink: 0;
    padding-bottom: 0; /* Reset aspect ratio hack */
    position: relative;
    border-bottom: none;
    border-right: none; /* Removed the white line */
  }

  .project-card-img img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  .project-card-modern .card-body {
    padding: 0.85rem !important; /* Slightly tighter padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0; /* Prevent flex child overflow */
  }

  /* Adjust inner elements */
  .project-card-modern h5 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem !important;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Compact Budget Box */
  .project-budget {
    padding: 0.5rem !important; /* Restore padding */
    margin-bottom: 0.75rem !important;
    /* Background and border will inherit from main/dark styles */
  }
  
  .project-budget .small { 
    font-size: 0.65rem;
    margin-bottom: 0.1rem !important;
  }
  
  .project-budget .fw-bold { 
    font-size: 0.85rem !important; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Hide description on mobile */
  .project-card-modern .text-muted.small.mb-4 {
    display: none;
  }

  /* Adjust Badge */
  .project-card-modern .badge {
    font-size: 0.7rem;
    padding: 0.35em 0.65em;
    margin-bottom: 0.25rem;
  }
  
  /* Compact Button */
  .project-card-modern .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    margin-top: auto;
  }
  
  .project-date-badge {
    top: 0.5rem;
    left: 0.5rem;
    right: auto;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }
}

/* Project Status Badges */
.badge-planning {
  background-color: #fff7ed;
  color: #c2410c;
  border-color: #fdba74 !important;
}

.badge-process {
  background-color: #eff6ff;
  color: #1d4ed8;
  border-color: #93c5fd !important;
}

.badge-completed {
  background-color: #f0fdf4;
  color: #15803d;
  border-color: #86efac !important;
}

/* Ensure Project Section matches Gallery Background */
.project-section {
  padding: 6rem 0;
  background-color: #f8fafc; /* Match Gallery */
  overflow: hidden;
  position: relative;
}

/* If not reusing gallery-bg-glow directly, ensure glow works here too */
.project-section .gallery-bg-glow {
  /* Reuse styling from gallery section */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* GRID PATTERN FOR PROJECT SECTION (MATCHING GALLERY) */
.project-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  poPoppins-events: none;
}

/* =========================================
   DARK MODE THEME
   ========================================= */

/* Global Backgrounds & Text */
body {
  background-color: #020617 !important; /* Rich Dark Blue/Black */
  color: #e2e8f0;
}

h1, h2, h3, h4, h5, h6,
.section-heading,
.glass-title,
.news-title,
.hero-title {
  color: #f8fafc !important;
}

p, .section-description, .glass-desc, .news-excerpt {
  color: #cbd5e1 !important;
}

.text-muted {
  color: #94a3b8 !important; /* Lighter grey for dark mode visibility */
}

/* Section Backgrounds */
.about-section,
.news-section {
  background-color: #020617 !important;
  /* Re-apply subtle grid for dark mode consistency with light grid lines */
  background-image: radial-gradient(#1e293b 1.5px, transparent 1.5px) !important;
}

.gallery-section,
.project-section {
  background-color: #0f172a !important; /* Slightly lighter dark */
}

/* Card Styles - Dark Mode */
.glass-card,
.news-card-horizontal,
.project-card-modern {
  background: rgba(30, 41, 59, 0.7) !important; /* Slate 800 with opacity */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3) !important;
}

.glass-card:hover,
.news-card-horizontal:hover,
.project-card-modern:hover {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5) !important;
}

/* Specific Component Overrides */
.project-budget,
.news-date-floating,
.glass-date-badge {
  background-color: #1e293b !important; /* Slate 800 */
  border: 1px solid #334155 !important; /* Slate 700 */
  color: #f8fafc !important;
}

.project-budget .text-primary {
  color: #38bdf8 !important; /* Brighter Blue for Dark Mode */
}

.project-card-modern .text-dark {
  color: #f8fafc !important;
}

/* Buttons */
.btn-modern-outline {
  border-color: #cbd5e1;
  color: #cbd5e1;
}

.btn-modern-outline:hover {
  background-color: #cbd5e1;
  color: #0f172a;
}

/* Hero Overlay */
.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(2, 6, 23, 0.95) 0%,
    rgba(2, 6, 23, 0.90) 50%,
    rgba(15, 23, 42, 0.92) 100%
  ) !important;
}

/* Grid Pattern Adjustment for Dark Mode */
.gallery-section::before,
.project-section::before {
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) !important;
}

/* News Background Glow - Make it pop */
.news-bg-glow::before {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%) !important;
}
.news-bg-glow::after {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%) !important;
}

/* Empty State */
/* Visi Misi Cards & Map Badges - Dark Mode Overrides */
.vm-card {
  background: rgba(30, 41, 59, 0.7) !important; /* Dark Glass */
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.vm-card:hover {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.vm-content h6,
.map-badge .value {
  color: #f8fafc !important;
}

.vm-content p,
.map-badge .label {
  color: #cbd5e1 !important;
}

.map-badge {
  background: rgba(30, 41, 59, 0.9) !important; /* Darker Glass for badges */
  border-color: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(8px);
}

.map-badge .icon {
  background: rgba(255, 255, 255, 0.05) !important; /* Dark icon bg */
}

/* Button Visibility in Dark Mode */
.btn-modern-primary {
  background: #3b82f6 !important; /* Brighter Blue button for contrast against dark bg */
  color: #ffffff !important;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3) !important;
}

.btn-modern-primary:hover {
  background: #2563eb !important;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4) !important;
}

/* Google Maps Wrapper - Dark Mode */
.map-modern-wrapper {
  background: rgba(30, 41, 59, 0.7) !important; /* Dark Slate Glass */
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.map-modern-wrapper:hover {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Fix Gallery Date Badge Visibility in Dark Mode */
.glass-date-badge .day {
  color: #f8fafc !important; /* White day text */
}

.glass-date-badge .month {
  color: #cbd5e1 !important; /* Light grey month text */
}

/* Fix White Line on Project Card */
.project-card-img {
  border-bottom: none !important;
}

/* Modern Dark Project Badges */
.badge-planning,
.badge-process,
.badge-completed {
  background-color: #0f172a !important; /* Dark background */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important; /* Reduced radius */
  padding: 0.5rem 1rem !important;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-planning {
  color: #fb923c !important; /* Orange text */
  border-color: rgba(251, 146, 60, 0.2) !important;
}

.badge-process {
  color: #60a5fa !important; /* Blue text */
  border-color: rgba(96, 165, 250, 0.2) !important;
}

.badge-completed {
  color: #4ade80 !important; /* Green text */
  border-color: rgba(74, 222, 128, 0.2) !important;
}

/* Strong Glass Button for Hero Section */
.btn-hero-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.15); /* More visible glass background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5); /* Stronger border */
    border-radius: 12px;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-hero-glass, .btn-hero-primary, .btn-hero-secondary {
    justify-content: center;
}

.btn-hero-glass svg {
    transition: transform 0.3s ease;
}

.btn-hero-glass:hover svg {
    transform: translateX(3px);
}

/* Fix Project Date Badge - Dark Mode */
.project-date-badge {
  background: rgba(15, 23, 42, 0.95) !important; /* Dark Slate */
  color: #f8fafc !important; /* White text */
  box-shadow: 0 4px 6px rgba(0,0,0,0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}











