/* ========================================================================
   style.css — Qubit Cloud (Dark Blue Aesthetic, sidebar mobile view removed)
   - Original layout, structure and rules preserved
   - Mobile sidebar/hamburger CSS removed
   - Nav remains visible and responsive; no .sidebar-toggle, .mobile-sidebar, or .sidebar-overlay styles
   ======================================================================== */

/* ===== Theme tokens ===== */
:root {
  --bg: #071028;            /* deepest page background */
  --bg-2: #0a1a36;          /* secondary deep panel background */
  --card: #07182b;          /* card dark */
  --card-2: #0f2340;        /* alternate card */
  --muted: #ffffff;         /* muted text (set to white per request) */
  --accent: #4ea1ff;        /* vivid azure */
  --accent-2: #6ce1ff;      /* cyan highlight */
  --glass: rgba(255,255,255,0.03);
  --glass-2: rgba(255,255,255,0.02);
  --surface: linear-gradient(180deg, rgba(12,30,56,0.6), rgba(6,14,32,0.6));
  --success: #ffffff;       /* success text set to white */
  --danger: #ffffff;        /* danger text set to white */
  --radius: 14px;
  --max-width: 1200px;
  --shadow-lg: 0 20px 40px rgba(2,12,36,0.6);
  --shadow-sm: 0 6px 18px rgba(2,12,36,0.45);
  --glass-border: rgba(78,161,255,0.12);
  --text: #ffffff;         /* primary text is white per request */
  --toast-bg: rgba(6,18,36,0.88);
  --soft-border: rgba(78,161,255,0.06);
  --accent-strong: #2f8fe6;
  --shadow-soft: 0 6px 22px rgba(4,12,28,0.6);

  --motion-fast: 120ms;
  --motion-medium: 220ms;
  --motion-slow: 420ms;
}

/* Reset & base */
* { box-sizing: border-box; }
html,body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(78,161,255,0.06), transparent),
              radial-gradient(800px 400px at 90% 90%, rgba(108,225,255,0.03), transparent),
              var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  padding-bottom: 48px;
}

/* Page container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header / Nav ===== */
header {
  position: sticky;
  top: 12px;
  z-index: 80;
  padding: 8px 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(78,161,255,0.06);
  backdrop-filter: blur(6px) saturate(120%);
}

/* Logo & running symbol */
.logo {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo img {
  height: 44px;
  width: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(78,161,255,0.14), rgba(108,225,255,0.06));
  padding: 6px;
  box-shadow: 0 6px 20px rgba(78,161,255,0.08);
  transform-origin: center;
  will-change: transform;
  transition: transform 320ms cubic-bezier(.2,.9,.2,1), box-shadow 320ms;
}
/* Running symbol animation (subtle pulse + translate) */
.logo .running-symbol {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent));
  box-shadow: 0 6px 18px rgba(78,161,255,0.25), 0 0 12px rgba(108,225,255,0.08);
  margin-left: 6px;
  animation: runLoop 2.6s linear infinite;
}
@keyframes runLoop {
  0%   { transform: translateX(0) scale(1); opacity: 0.9; }
  40%  { transform: translateX(6px) scale(1.08); opacity: 1; }
  70%  { transform: translateX(14px) scale(1); opacity: 0.9; }
  100% { transform: translateX(0) scale(0.96); opacity: 0.85; }
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 600;
  transition: background var(--motion-fast) ease, color var(--motion-fast) ease, transform var(--motion-fast) ease;
}
.nav-links a:hover,
.nav-links a.active {
  background: linear-gradient(90deg, rgba(78,161,255,0.12), rgba(108,225,255,0.06));
  transform: translateY(-2px);
  color: var(--text);
}

/* CTA */
.cta {
  margin-left: 8px;
  padding: 10px 16px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: var(--text);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(78,161,255,0.16);
}
.cta:hover { transform: translateY(-3px); }

/* ===== Hero ===== */
.hero {
  padding: 72px 0 36px 0;
  text-align: center;
  position: relative;
}
.hero .hero-inner {
  max-width: 980px;
  margin: 0 auto;
}
.hero .badge {
  display: inline-block;
  background: rgba(108,225,255,0.08);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 40px;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 0.98rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin: 12px 0 18px 0;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: 0 6px 30px rgba(108,225,255,0.04);
}
.hero p {
  color: var(--text);
  font-size: 1.08rem;
  max-width: 820px;
  margin: 0 auto 26px auto;
}

/* Hero CTAs */
.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.button {
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease, background var(--motion-fast) ease;
}
.button.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 36px rgba(78,161,255,0.16);
  color: var(--text);
}
.button.pdf {
  background: transparent;
  border: 1px solid rgba(78,161,255,0.06);
  color: var(--text);
}

/* Hero visual accent: animated circuit / symbol */
.hero .hero-visual {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.symbol-badge {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(78,161,255,0.06), rgba(108,225,255,0.03));
  border: 1px solid rgba(78,161,255,0.06);
  box-shadow: 0 12px 30px rgba(2,6,23,0.6);
  transform-origin: center;
  animation: float 6s ease-in-out infinite;
}
.symbol-badge img { width: 70px; height: 70px; object-fit: contain; }
@keyframes float {
  0% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1.5deg); }
  100% { transform: translateY(0) rotate(-1deg); }
}

/* ===== Marquee / Running logos ===== */
.logo-marquee {
  margin: 28px auto 0;
  max-width: calc(var(--max-width) - 40px);
  overflow: hidden;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
  border: 1px solid rgba(78,161,255,0.03);
  box-shadow: 0 8px 40px rgba(2,6,23,0.45);
}
.marquee-track {
  display: flex;
  gap: 18px;
  align-items: center;
  transform: translateX(0);
  will-change: transform;
}
.marquee-set {
  display: flex;
  gap: 18px;
  align-items: center;
  min-width: 100%;
}
.marquee-item {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(12,32,56,0.6), rgba(6,14,32,0.6));
  box-shadow: 0 8px 20px rgba(2,6,23,0.5);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.marquee-item img { width: 44px; height: 44px; object-fit: contain; }

/* Subtle spin on logos */
.logo-img {
  display:inline-block;
  animation: spinSlow 18s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes spinSlow {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

/* Pause on hover */
.logo-marquee:hover .marquee-set,
.logo-marquee:focus-within .marquee-set {
  animation-play-state: paused;
}

/* ===== Sections / Cards ===== */
.section {
  padding: 56px 0;
}
.section .card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(78,161,255,0.03);
}

/* Services */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.service-card {
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(78,161,255,0.03), rgba(108,225,255,0.02));
  border: 1px solid rgba(78,161,255,0.02);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card h3 { color: var(--text); margin: 8px 0 10px 0; }
.service-card p { color: var(--text); }

/* Calculator */
.calculator-section {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 36px;
}
.mvp-form label { display:block; text-align:left; margin-bottom:12px; font-weight:600; color:var(--text); }
.mvp-form input, .mvp-form select, .mvp-form textarea {
  width:100%;
  padding:10px 12px;
  margin-top:8px;
  border-radius:10px;
  border:1px solid var(--soft-border);
  background: rgba(255,255,255,0.02);
  color: var(--text);
}
.mvp-result {
  margin-top:18px;
  padding:18px;
  border-radius:10px;
  background: linear-gradient(90deg, rgba(78,161,255,0.06), rgba(108,225,255,0.03));
  color: var(--text);
}

/* Academy / Blog / Team */
.academy-features, .blog-list, .team-row {
  display:flex;
  gap: 18px;
  flex-wrap:wrap;
  justify-content:center;
}

/* Contact forms */
.contact-form input, .contact-form textarea {
  width:100%;
  padding: 12px;
  margin-top:8px;
  border-radius:12px;
  border: 1px solid rgba(78,161,255,0.04);
  background: rgba(255,255,255,0.02);
  color: var(--text);
}
.contact-msg { margin-top:12px; color: var(--text); font-weight:600; }

/* Reviews list */
.review-card {
  background: linear-gradient(180deg, rgba(6,14,32,0.36), rgba(12,26,46,0.32));
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(78,161,255,0.03);
  color: var(--text);
}

/* FAQ accordion */
.faq-list { background: transparent; border-radius: 12px; overflow: hidden; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.03); }
.faq-question {
  width:100%; display:flex; align-items:center; gap:16px; padding:18px; background:transparent; border:none; text-align:left; cursor:pointer;
}
.faq-title { font-weight:700; color: var(--text); }
.faq-answer { padding: 12px 18px 20px 18px; color: var(--text); }

/* Team card */
.team-card {
  width: 220px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
  border-radius: 14px;
  overflow: hidden;
  text-align:center;
  padding-bottom:12px;
}
.card-shape { background: rgba(255,255,255,0.02); padding: 18px; border-radius: 12px; margin: 12px; }
.card-shape img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px; }

/* Footer */
footer {
  margin-top: 36px;
  padding: 36px 0 80px 0;
  color: var(--text);
  background: linear-gradient(180deg, rgba(6,14,32,0.9), rgba(6,14,32,0.95));
  border-top: 1px solid rgba(78,161,255,0.02);
}
.footer-container { display:flex; gap:40px; max-width:var(--max-width); margin:0 auto; padding:0 20px; flex-wrap:wrap; }
.footer-left { flex:1; min-width:220px; }
.footer-links { display:flex; gap:40px; flex:2; }

/* Admin panel tables */
table {
  width:100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
  text-align:left;
  color: var(--text);
}
th { color: var(--text); background: rgba(78,161,255,0.03); font-weight:700; }

/* Utility */
.center { text-align:center; }
.hidden { display:none !important; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .services-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .navbar { flex-direction: column; gap:12px; align-items:stretch; }
  /* keep nav links visible on small screens and allow wrapping instead of switching to a mobile sidebar */
  .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 8px 0; }
  .services-container { grid-template-columns: 1fr; }
  .logo-marquee { margin: 18px 0; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.98rem; }
  .team-card { width: 48%; }
}

/* ===== Accessibility: reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .logo img, .symbol-badge, .logo-img, .marquee-set, .symbol-badge { animation: none !important; transition: none !important; }
}

/* End of original top section — adapted to theme */


/* Add to about.html <style> or to about.css */
.about-collab-section {
    background: linear-gradient(180deg, rgba(6,14,32,0.9), rgba(6,14,32,0.95));
    padding: 56px 0 44px 0;
}
.about-collab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}
.about-collab-container h2 {
    text-align: center;
    font-size: 2.1rem;
    color: var(--text);
    font-weight: 800;
    margin-bottom: 38px;
    letter-spacing: 0.02em;
}
.collab-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    justify-content: center;
    align-items: stretch;
}
.collab-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(6,14,32,0.06);
    padding: 30px 18px 24px 18px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow .18s, transform .18s;
}
.collab-card:hover {
    box-shadow: 0 12px 36px rgba(78,161,255,0.12);
    transform: translateY(-6px) scale(1.04);
}
.collab-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    box-shadow: 0 2px 8px rgba(78,161,255,0.04);
}
.collab-name {
    font-size: 1.13rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.collab-desc {
    font-size: 0.99rem;
    color: var(--text);
    margin-bottom: 18px;
}
.collab-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 1.04rem;
    font-weight: 600;
    color: var(--text);
    border: 2px solid var(--accent);
    border-radius: 8px;
    background: transparent;
    text-decoration: none;
    transition: background .18s, color .18s;
}
.collab-btn:hover {
    background: var(--accent);
    color: var(--text);
    box-shadow: 0 8px 24px rgba(78,161,255,0.14);
}
@media (max-width: 900px) {
    .collab-card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .collab-card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ===== Base (light theme tokens removed / replaced) ===== */
/* Previously another :root existed — replaced by unified tokens above */

* { box-sizing: border-box; }
html,body { height: 100%; }
body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height: 1.45;
}

/* ===== Header / Nav ===== */
header {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 60;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    gap: 18px;
}

/* Logo anchor (image + text) - prevents font change on click/visited */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    font-family: inherit;
    line-height: 1;
}
.logo img {
    display: block;
    height: 40px;
    width: auto;
    transition: transform 320ms cubic-bezier(.2,.9,.2,1), box-shadow 320ms;
    will-change: transform;
}

/* NEW: running symbol after logo text */
.logo .running-symbol {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 6px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    box-shadow: 0 6px 18px rgba(78,161,255,0.18), 0 0 8px rgba(108,225,255,0.08);
    transform-origin: center;
    animation: runSymbol 1.8s linear infinite;
}
@keyframes runSymbol {
    0% { transform: translateX(0) scale(1); opacity: 0.9; }
    40% { transform: translateX(4px) scale(1.08); opacity: 1; }
    70% { transform: translateX(12px) scale(1); opacity: 0.9; }
    100% { transform: translateX(0) scale(0.96); opacity: 0.85; }
}

/* Ensure link pseudo-states don't alter font/color and keep accessible focus */
.logo:link,
.logo:visited,
.logo:hover,
.logo:active,
.logo:focus {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    font-family: inherit;
}

/* Remove mobile tap highlight for logo and nav CTAs */
.logo,
.nav-links a,
.cta {
    -webkit-tap-highlight-color: transparent;
}

/* Focus visible for keyboard users */
.logo:focus-visible,
.nav-links a:focus-visible,
.cta:focus-visible,
.button:focus-visible {
    outline: 3px solid rgba(78,161,255,0.12);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-links li { margin: 0; }
.nav-links li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 180ms ease;
    padding: 6px 2px;
    border-radius: 4px;
}
.nav-links li a.active,
.nav-links li a:hover {
    color: var(--accent);
}

/* CTA button in nav */
.cta {
    background: var(--accent);
    color: var(--text);
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 180ms ease;
}
.cta:hover { background: var(--accent-strong); }

/* ===== Hero ===== */
.hero {
    padding: 80px 24px 32px;
    background: linear-gradient(120deg, var(--bg) 70%, rgba(12,30,56,0.6) 100%);
    text-align: center;
}
.hero-content .badge {
    display: inline-block;
    background: rgba(78,161,255,0.06);
    color: var(--text);
    padding: 6px 18px;
    border-radius: 16px;
    font-size: 1rem;
    margin-bottom: 18px;
}
.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 8px 0 18px;
    line-height: 1.05;
    color: var(--text);
}
.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: var(--text);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

/* Buttons */
.button {
    padding: 12px 26px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background var(--motion-fast) ease, color var(--motion-fast) ease, transform var(--motion-fast) ease;
    cursor: pointer;
}
.button.primary {
    background: var(--accent);
    color: var(--text);
}
.button.primary:hover { background: var(--accent-strong); transform: translateY(-1px); }
.button.pdf {
    background: rgba(255,255,255,0.02);
    color: var(--text);
    border: 1px solid var(--accent);
}
.button.pdf:hover { background: rgba(255,255,255,0.03); transform: translateY(-1px); }

/* ===== Marquee (round logos) ===== */
.logo-marquee {
    margin: 20px auto 0;
    max-width: 1100px;
    overflow: hidden;
    padding: 12px 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
    box-shadow: 0 6px 22px rgba(49,47,255,0.04);
}
.marquee-track {
    display: flex;
    gap: 18px;
    align-items: center;
    width: 100%;
    transform: translateX(0);
    will-change: transform;
}

/* Each set holds the same sequence; both animate left so the sequence repeats smoothly */
.marquee-set {
    display: flex;
    gap: 18px;
    align-items: center;
    min-width: 100%;
}

/* Items */
.marquee-item {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.marquee-item img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

/* Hover / focus micro-interaction */
.marquee-item:hover,
.marquee-item:focus-within {
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 8px 20px rgba(78,161,255,0.12);
    cursor: default;
}

/* Pause animation when user hovers over the whole marquee (usability) */
.logo-marquee:hover .marquee-set,
.logo-marquee:focus-within .marquee-set {
    animation-play-state: paused;
}

/* Subtle per-logo rotation (injected also by script.js; keep graceful fallback here) */
@keyframes mqLogoSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.logo-img {
  display:inline-block;
  will-change: transform;
  animation: mqLogoSpin 14s linear infinite;
  transform-origin: 50% 50%;
}

/* respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-set { animation: none !important; }
  .logo-img { animation: none !important; }
  .logo .running-symbol { animation: none !important; }
}

/* ===== Services Section ===== */
.services-section {
    background: var(--bg);
    padding: 60px 16px;
}
.services-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 36px;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(6,14,32,0.06);
    padding: 40px 30px;
}
.services-left,
.services-right {
    flex: 1;
    min-width: 260px;
}
.services-left ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}
.services-left ul li {
    font-size: 1.07rem;
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--text);
}
.services-left .arrow {
    margin-left: 8px;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.25rem;
}
.cta-box p { font-size: 1.05rem; color: var(--text); }
.services-right h2 { margin-bottom: 10px; color: var(--accent); font-size: 1.07rem; }

/* ===== MVP Calculator ===== */
.calculator-section {
    max-width: 640px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(6,14,32,0.06);
    padding: 44px 32px;
    margin-top: 36px;
    margin-bottom: 60px;
    text-align: center;
}
.mvp-form label {
    display: block;
    text-align: left;
    margin-bottom: 14px;
    font-weight: 500;
}
.mvp-form select,
.mvp-form input,
.mvp-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-top: 6px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid var(--soft-border);
    font-size: 1rem;
    background: rgba(255,255,255,0.02);
    color: var(--text);
}

/* Result box */
.mvp-result {
    margin-top: 22px;
    background: linear-gradient(90deg, rgba(78,161,255,0.06), rgba(108,225,255,0.03));
    border-radius: 10px;
    padding: 18px;
    font-size: 1.05rem;
    color: var(--text);
}

/* ===== Academy ===== */
.academy-section {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(6,14,32,0.06);
    padding: 48px 32px;
    margin-top: 36px;
    margin-bottom: 60px;
    text-align: center;
}
.academy-features {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 34px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.academy-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(6,14,32,0.04);
    padding: 26px 20px;
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    text-align: left;
}
.academy-card h3 { color: var(--accent); margin-bottom: 12px; }

/* ===== Blog ===== */
.blog-section {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(6,14,32,0.08);
    padding: 44px 32px;
    margin-top: 36px;
    margin-bottom: 60px;
    text-align: center;
}
.blog-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 34px;
}
.blog-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(6,14,32,0.05);
    padding: 24px 18px;
    min-width: 220px;
    max-width: 320px;
    text-align: left;
    flex: 1;
}
blog-card h2 { font-size: 1.13rem; margin-bottom: 8px; color: var(--text); }
.blog-meta { font-size: 0.92rem; color: var(--text); margin-bottom: 12px; }

/* ===== Contact ===== */
.contact-section {
    max-width: 640px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(6,14,32,0.06);
    padding: 44px 32px;
    margin-top: 36px;
    margin-bottom: 60px;
    text-align: center;
}
contact-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 22px;
    flex-wrap: wrap;
    gap: 18px;
}
.contact-details div { flex: 1; min-width: 120px; text-align: left; }
.contact-form label { display:block; text-align:left; margin-bottom:12px; font-weight:500; color: var(--text); }
.contact-form input,
.contact-form textarea {
    width:100%;
    padding:10px 12px;
    margin-top:6px;
    margin-bottom:12px;
    border-radius:8px;
    border:1px solid var(--soft-border);
    font-size:1rem;
    background: rgba(255,255,255,0.02);
    color: var(--text);
}

/* Contact success message */
.contact-msg {
    margin-top: 18px;
    color: var(--text);
    font-weight: 600;
    font-size: 1.02rem;
}

/* ===== Footer ===== */
footer {
    background: linear-gradient(180deg, rgba(6,14,32,0.9), rgba(6,14,32,0.95));
    padding: 40px 0 0 0;
    margin-top: 40px;
    color: var(--text);
}
.footer-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    padding: 0 24px;
    flex-wrap: wrap;
}
.footer-left { flex: 1; min-width: 220px; }
.footer-left img { margin-bottom: 12px; }
.footer-links { flex: 2; display: flex; gap: 60px; justify-content: space-between; flex-wrap: wrap; }
.footer-links h4 { margin-bottom: 8px; color: var(--accent); font-size: 1.07rem; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 6px; font-size: 1rem; }
.footer-links ul li a { color: var(--text); text-decoration: none; }
.footer-links ul li a:hover { text-decoration: underline; color: var(--accent-strong); }
.footer-bottom {
    text-align: center;
    padding: 18px 0;
    color: var(--text);
    background: linear-gradient(180deg, rgba(6,14,32,0.95), rgba(6,14,32,0.98));
    font-size: 0.96rem;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(12,30,56,0.95), rgba(6,14,32,0.98));
    border-top: 1px solid rgba(78,161,255,0.02);
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 90;
    gap: 12px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.04);
}
.cookie-banner p { margin:0; color:var(--text); font-size:0.95rem; max-width:75%; }
.cookie-banner button {
    margin-left: 8px;
    background: var(--accent);
    color: var(--text);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 140ms ease;
}
.cookie-banner button:hover { background: var(--accent-strong); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .navbar { flex-direction: column; align-items: stretch; gap: 8px; padding: 12px; }
    .nav-links { justify-content: center; flex-wrap: wrap; gap: 12px; }
    .hero-content h1 { font-size: 2rem; }
    .services-container { flex-direction: column; padding: 28px 16px; }
    .academy-features, .blog-list { flex-direction: column; gap: 18px; }
    .contact-details { flex-direction: column; gap: 8px; }
    .logo-marquee { padding: 10px; }
    .marquee-item { width: 58px; height: 58px; }
    .marquee-item img { width: 36px; height: 36px; }
    .cookie-banner p { max-width:60%; font-size:0.9rem; }
}

@media (max-width: 520px) {
    .hero-content p { font-size: 1rem; padding: 0 8px; }
    .nav-links { gap: 10px; font-size: 0.95rem; }
    .cta { padding: 8px 12px; font-size: 0.95rem; }
    .logo { font-size: 1.08rem; }
}

/* FAQ section styles - append to your style.css */
.faq-section { background: linear-gradient(180deg, rgba(6,14,32,0.9), rgba(6,14,32,0.95)); }
.faq-left .faq-visual { width: 112px; height: 112px; object-fit:cover; border-radius:18px 0 0 18px; box-shadow: 0 6px 20px rgba(0,0,0,0.04); }
.stat-card {
  min-width:120px;
  border-radius:0 24px 24px 0;
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  gap:6px;
  box-shadow: none;
}
.stat-card .stat-label { font-size:0.95rem; color:var(--text); }
.stat-card .stat-number { font-size:2rem; font-weight:800; color:var(--text); }
.stat-blue { background: rgba(78,161,255,0.06); }
.stat-pink { background: rgba(255,110,135,0.04); }
.stat-green { background: rgba(31,184,127,0.04); }

/* FAQ right column */
.faq-right h2 { margin-bottom:18px; color:var(--text); }
.faq-list { background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00)); border-radius:14px; box-shadow: 0 8px 30px rgba(16,22,35,0.06); overflow:hidden; }
.faq-item { border-bottom:1px solid rgba(16,22,35,0.06); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width:100%;
  display:flex;
  align-items:center;
  gap:18px;
  padding:22px;
  background:transparent;
  border:0;
  text-align:left;
  cursor:pointer;
}
.faq-index { color:var(--text); font-weight:700; min-width:56px; }
.faq-title { font-weight:700; color:var(--text); flex:1; }
.faq-chevron { width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; background:#0b1220; color:var(--text); }

.faq-answer { padding:18px 22px 30px 22px; color:var(--text); line-height:1.6; }

/* Responsive */
@media (max-width:900px){
  .faq-section .max-w-1200 { flex-direction:column; align-items:center; }
  .faq-left { order:2; width:100%; display:flex; justify-content:center; gap:20px; }
  .faq-right { order:1; width:100%; }
  .faq-left .faq-visual { display:none; } /* hide large visuals on very small screens if desired */
}


/* Journey / Team styles — append to your style.css */
.journey-section { background: linear-gradient(180deg, rgba(6,14,32,0.9), rgba(6,14,32,0.95)); }
.journey-title { font-size: 2.4rem; font-weight:800; color:var(--text); margin:0; line-height:1.05; }
@media (min-width:1100px){ .journey-title { font-size: 3rem; } }

.journey-features { gap:28px; }
.journey-features .feature { display:flex; gap:14px; align-items:flex-start; width:calc(50% - 14px); min-width:260px; }
.feature-icon { flex:0 0 56px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.feature-body h3 { margin:0 0 6px 0; font-size:1.02rem; font-weight:700; color:var(--text); }
.feature-body p { margin:0; color:var(--text); font-size:0.95rem; }

/* ===== Team Section ===== */
.team-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

/* Card Container */
.team-card {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Shape for Image */
.card-shape {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* Shows entire image without cropping */
  object-position: center;
}

/* Meta Text */
.card-meta {
  padding: 16px;
  text-align: center;
}

.card-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.card-role {
  font-size: 0.9rem;
  color: var(--text);
}

/* Color Variants */
.team-card--blue .card-shape { background: rgba(78,161,255,0.06); }
.team-card--lavender .card-shape { background: rgba(108,225,255,0.04); }
.team-card--mint .card-shape { background: rgba(31,184,127,0.04); }
.team-card--pink .card-shape { background: rgba(255,110,135,0.04); }

/* CTA */
.team-cta {
  margin-top: 20px;
}

.journey-cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text);
}

.hire-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hire-cta:hover {
  background: var(--accent-strong);
}

/* Responsive */
@media (max-width: 900px) {
  .team-card {
    width: 45%;
    min-width: 160px;
  }
}

@media (max-width: 600px) {
  .team-card {
    width: 100%;
  }
}


/* Responsive */
@media (max-width:900px) {
  .journey-features .feature { width:100%; }
  
}

/* ===== Utility Helpers ===== */
.hidden { display: none !important; }
.center { text-align:center; }
.max-w-1200 { max-width: 1200px; margin: 0 auto; }

/* ---------- ADDED: UI helpers, toasts, small animations ---------- */

/* Toast container styles (used by script.js) */
#qc-toast-container {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10050;
}
.qc-toast {
  background: var(--toast-bg);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(78,161,255,0.06);
  font-weight: 600;
  max-width: 340px;
}
.qc-toast--danger { background: linear-gradient(180deg, rgba(220,38,38,0.92), rgba(239,68,68,0.88)); color: var(--text); }
.qc-toast--info { background: linear-gradient(180deg, rgba(78,161,255,0.92), rgba(79,70,229,0.88)); color: var(--text); }

/* Admin table small visual upgrade */
table {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

/* Small card hover */
.card-hover {
  transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .22s;
}
.card-hover:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(78,161,255,0.06); }

/* micro-interactions for inputs */
input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 0 6px 22px rgba(78,161,255,0.06);
  border-color: var(--accent);
}

/* Make sure reduced-motion opt-out works everywhere */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* End of style.css */