/* Sharp, modern button style */
.btn-sharp {
  display: inline-block;
  font-size: 18px; /* matching your large button font */
  font-weight: bold;
  padding: 18px 36px; /* large, impactful padding */
  border: 2px solid #000; /* sharp border */
  background-color: #000; /* black background */
  color: #fff; /* white text */
  border-radius: 0; /* sharp edges */
  text-transform: uppercase; /* all caps for modern feel */
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-sharp:hover {
  background-color: #fff; /* invert on hover */
  color: #000;
  box-shadow: inset 0 0 0 2px #000; /* optional: adds a sharp inset border effect */
}

.marquee-container {
  display: flex;
  width: max-content;
  animation: wd-marquee 20s linear infinite;
}

@keyframes wd-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-container:hover {
  animation-play-state: paused;
}

.modern-process-grid {
    border-top: 1px solid #333;
}

.modern-step {
    padding: 4rem 2rem;
    border-right: 1px solid #333;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}

.modern-step:last-child { border-right: none; }

/* The "Ghost" Number in the background */
.ghost-num {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 12rem;
    font-weight: 900;
    color: white;
    opacity: 0.03; /* Barely visible texture */
    transition: 0.5s ease;
}

.modern-step:hover {
    background: #ffffff;
    color: #000 !important;
}

.modern-step:hover .ghost-num {
    opacity: 0.1;
    transform: scale(1.1);
    color: #000;
}

.modern-step:hover h3, 
.modern-step:hover p, 
.modern-step:hover .step-tag {
    color: #000 !important;
}

.step-tag {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2rem;
    opacity: 0.5;
}
/* Cinematic Process Styling */
.reveal-card {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 3rem;
    position: relative;
    margin-bottom: 8rem;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.huge-outline-number {
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
    position: absolute;
    left: -4rem;
    top: -2rem;
    z-index: 0;
}

.reveal-card:hover .huge-outline-number {
    -webkit-text-stroke: 1px rgba(255,255,255,1);
    transform: translateY(-10px);
}

.process-title {
    font-size: 2.5rem;
    letter-spacing: -0.05em;
    position: relative;
    z-index: 1;
}

.divider-line {
    width: 0%;
    height: 1px;
    background: white;
    margin-bottom: 2rem;
    transition: width 1s ease-in-out;
}

.reveal-card.active .divider-line {
    width: 100px;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .navbar-brand,
    .navbar-other {
        width: auto !important;
    }

    .navbar-other {
        margin-left: auto !important;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        max-height: 35px;
    }

    .offset-lg-1 {
        margin-left: 0 !important;
    }

    .widget.text-lg-end {
        text-align: left !important;
    }

    .justify-content-md-end {
        justify-content: flex-start !important;
    }
}

