﻿/* SongShi BIMS - Custom Styles */

/* =========================================
   Global
   ========================================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* =========================================
   Navbar
   ========================================= */
#mainNav {
  transition: background-color 0.3s ease;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
  min-height: 80vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding-top: 72px; /* offset fixed navbar */
}

/* =========================================
   Services Section
   ========================================= */
.service-card {
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2) !important;
}

/* =========================================
   Stats Section
   ========================================= */
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d6efd;
}

.stat-label {
  font-size: 0.95rem;
  color: #adb5bd;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================================
   Process Section
   ========================================= */
.step-badge {
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  background-color: #0d6efd;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .process-arrow {
    display: none;
  }
}

/* =========================================
   Footer / Contact
   ========================================= */
footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #ffffff;
}

/* =========================================
   Accessibility
   ========================================= */
:focus-visible {
  outline: 3px solid #0d6efd;
  outline-offset: 2px;
}

/* =========================================
   Brand Logo Text - Tech Style
   ========================================= */
.navbar-brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #a78bfa 0%, #38bdf8 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  transition: opacity 0.2s ease;
}

.navbar-brand:hover {
  opacity: 0.85;
}


