/* =========================================================
   5points — Global Styles
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root {
    --bg-dark: #020617;
    --bg-dark-soft: #020617f0;
  
    --text-main: #ffffff;
    --text-muted: #94a3b8;
  
    --accent-cyan: #64ffda;
    --accent-blue: #3b82f6;
  
    --border-soft: rgba(148, 163, 184, 0.15);
  }
  
  /* ---------- Reset & Base ---------- */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: "Roboto", sans-serif;
  }
  
  a {
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* =========================================================
     Typography
     ========================================================= */
  
  .hero-brand {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
  }
  
  .hero-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  
  .hero-title span {
    color: var(--accent-cyan);
  }
  
  .hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
  }
  
  .section-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .section-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* =========================================================
     Navbar (SOURCE OF TRUTH)
     ========================================================= */
  
  .main-navbar {
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
  }
  
  .transparent-navbar {
    background: transparent;
  }
  
  .solid-navbar,
  .navbar-scrolled {
    background: var(--bg-dark-soft);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }
  
  .navbar .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
  }
  
  .navbar .nav-link:hover {
    color: var(--text-main);
  }
  
  .navbar .nav-link.active {
    color: var(--accent-cyan);
  }
  
  .navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent-cyan);
  }
  
  .dropdown-menu {
    background: var(--bg-dark);
    border: 1px solid var(--border-soft);
  }
  
  .dropdown-item {
    color: var(--text-muted);
  }
  
  .dropdown-item:hover {
    background: rgba(100, 255, 218, 0.12);
    color: var(--text-main);
  }
  
  .navbar .btn-outline-primary {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
  }
  
  .navbar .btn-outline-primary:hover {
    background: var(--accent-cyan);
    color: #020617;
  }
  
  /* =========================================================
     Hero
     ========================================================= */
  
  .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    background: radial-gradient(
      circle at top,
      rgba(100, 255, 218, 0.08),
      transparent 40%
    );
  }
  
  .hero-btn {
    padding: 12px 28px;
    font-weight: 500;
  }
  
  /* =========================================================
     Sections
     ========================================================= */
  
  .section {
    padding: 100px 0;
  }
  
  .section-dark {
    background: #020617;
  }
  
  .hero-offset {
    padding-top: 140px;
  }
  
  /* =========================================================
     Cards (Core Services + Service Pages)
     ========================================================= */
  
  .why-card {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid var(--border-soft);
    padding: 28px;
    height: 100%;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      border-color 0.25s ease,
      background 0.25s ease;
  }
  
  /* HOVER EFFECT */
  .why-card:hover {
    transform: translateY(-6px);
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(100, 255, 218, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  }
  
  .why-card h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
  }
  
  .why-card h5 i {
    transition: color 0.25s ease, transform 0.25s ease;
  }
  
  .why-card:hover h5 i {
    color: var(--accent-cyan);
    transform: scale(1.15);
  }
  
  /* =========================================================
     Footer
     ========================================================= */
  
  .footer {
    padding: 40px 0;
    background: #020617;
    color: var(--text-muted);
    font-size: 14px;
  }
  
  /* =========================================================
     Responsive
     ========================================================= */
  
  @media (max-width: 992px) {
    .hero-title {
      font-size: 42px;
    }
  }
  
  @media (max-width: 576px) {
    .hero-title {
      font-size: 34px;
    }
  
    .hero-subtitle {
      font-size: 16px;
    }
  }
  /* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 120px 0;
    background: radial-gradient(
      circle at top,
      rgba(0, 255, 204, 0.08),
      transparent 60%
    );
  }
  
  .contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(0, 255, 204, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffcc;
    font-size: 24px;
  }
  
  .contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
  }
  
  .contact-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto;
  }
/* Anchor offset for sticky navbar */
#contact {
    scroll-margin-top: 110px;
  }
/* ================= FOOTER ================= */

.footer {
    padding: 40px 0 30px;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .footer-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
  }
  
  .footer-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 255, 204, 0.08);
    color: #00ffcc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    font-size: 16px;
  }
  
  .footer-icons a:hover {
    background: rgba(0, 255, 204, 0.18);
    transform: translateY(-2px);
    color: #00ffcc;
  }
  
  .footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
  }
      