.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scale-up.revealed {
    opacity: 1;
    transform: scale(1);
}.section-title,
.section-subtitle {
    text-align: center;  
    width: 100%;        
    display: flex;       
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
}
.section-title h2 {
    margin-bottom: 0px;
}
.section-header {
  text-align: center;
  margin-bottom: 0.4rem;
  position: relative;
}
.section-title-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.section-title-container::before,
.section-title-container::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.5));
  max-width: 100px;
}

.section-title-container::before {
  margin-right: 1.5rem;
  background: linear-gradient(to right, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.5));
}

.section-title-container::after {
  margin-left: 1.5rem;
  background: linear-gradient(to left, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.5));
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding: 0;
  position: relative;
  color: #f4f4f5;
  background: linear-gradient(to right, rgba(244, 244, 245, 1), rgba(244, 244, 245, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.section-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-subtitle {
  max-width: 600px;
  margin: 0.75rem auto 0;
  font-size: 1rem;
  color: rgba(244, 244, 245, 0.6);
  line-height: 1.6;
}
.title-underline {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  overflow: visible;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-title-container::before,
  .section-title-container::after {
    max-width: 60px;
  }
  
  .section-title-container::before {
    margin-right: 1rem;
  }
  
  .section-title-container::after {
    margin-left: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-title-container::before,
  .section-title-container::after {
    max-width: 40px;
  }
  
  .section-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }
}
        .breadcrumb-nav {
            margin-bottom: 40px;
            display: flex;
            justify-content: flex-start;
        }

        .breadcrumb {
            background: rgba(17, 17, 17, 0.9);
            padding: 12px 24px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid #333333;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: #ef4444;
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb a:hover {
            color: #dc2626;
        }

        .breadcrumb-separator {
            color: #9ca3af;
        }

        .breadcrumb span:last-child {
            color: #d1d5db;
        }
              .mouse-effect-container {
        position: relative;
        width: 100%;
      }
      .bg-dot-thick-pink-300 {
        background-image: radial-gradient(circle, 
#ff0000 1px, transparent 1px);
        background-size: 20px 20px;
      }
      .mouse-effect-overlay {
        pointer-events: none;
        z-index: -10;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        transition: opacity 300ms;
        -webkit-mask-image: radial-gradient(80px circle at 0px 0px, black 0%, transparent 100%);
        mask-image: radial-gradient(80px circle at 0px 0px, black 0%, transparent 100%);
      }
      .mouse-effect-container:hover .mouse-effect-overlay {
        opacity: 1;
      }