/* Navigation */
        nav {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
            font-size: 15px;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }

		/* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 60px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 20px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }

		/* ===== ACTIVE NAV LINK ===== */
.nav-links a.active {
  position: relative;
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}


/* ===== BREADCRUMB (FIXED VISIBILITY) ===== */
.breadcrumb-wrap {
  background: linear-gradient(135deg,#667eea,#764ba2);
  padding: 12px 20px;
}

.breadcrumb {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  animation: breadcrumbIn 0.35s ease;
}

.breadcrumb a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .sep {
  color: #999;
}

.breadcrumb .current {
  color: #111;
  font-weight: 600;
}

/* Smooth entrance */
@keyframes breadcrumbIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FOOTER LINK OVERRIDE (FINAL) ===== */
footer a,
footer a:link,
footer a:visited,
footer a:active {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
}

footer a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.svg-logo {
  display: flex;
  align-items: center;
}

.svg-logo svg {
  height: 36px;
  width: auto;
}
/* Sticky CTA & Up scroll */
/* ================= STICKY CTA + SCROLL TOP ================= */

.sticky-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Get in Touch */
.sticky-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg,#667eea,#764ba2);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(102,126,234,.35);
}

/* Scroll Top */
.scroll-top {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #667eea;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);

  /* 👇 THIS FIXES DESKTOP */
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Mobile */
@media (max-width: 768px) {
  .sticky-actions {
    right: 12px;
    bottom: 12px;
  }

  .sticky-cta span {
    display: none;
  }

  .sticky-cta {
    width: 48px;
    height: 48px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }
}
