/* ================================================================
   Anuyog — brand theme layer.
   Rides on top of Bexon's main.css but also defines the key
   section primitives (hero, card, cta, footer, page-header) so the
   whole site has one consistent visual system.
   ================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  /* ---------- Colour tokens ---------- */
  --anuyog-primary:       #2563eb;
  --anuyog-primary-deep:  #1e40af;
  --anuyog-primary-soft:  rgba(37, 99, 235, 0.08);
  --anuyog-navy:          #0a1b3d;
  --anuyog-navy-deep:     #060f28;
  --anuyog-sky:           #60a5fa;
  --anuyog-cyan:          #22d3ee;

  --anuyog-bg:            #f5f7fb;
  --anuyog-surface:       #ffffff;
  --anuyog-surface-alt:   #eef2f8;
  --anuyog-border:        #d6dfee;
  --anuyog-divider:       #e8edf5;

  --anuyog-heading:       #0a1b3d;
  --anuyog-body:          #46556e;
  --anuyog-muted:         #6f7e98;

  /* ---------- Radii / shadows ---------- */
  --anuyog-radius-sm: 10px;
  --anuyog-radius:    16px;
  --anuyog-radius-lg: 22px;
  --anuyog-shadow-sm: 0 2px 8px rgba(10,27,61,0.04);
  --anuyog-shadow:    0 14px 30px -18px rgba(10,27,61,0.25);
  --anuyog-shadow-lg: 0 30px 60px -30px rgba(10,27,61,0.35);

  /* ---------- Spacing ---------- */
  --anuyog-section: clamp(64px, 9vw, 120px);

  /* ---------- Gradient tokens ---------- */
  --anuyog-gradient: linear-gradient(135deg, #2563eb 0%, #22d3ee 100%);
  --anuyog-gradient-dark: linear-gradient(135deg, #0a1b3d 0%, #0f2a63 60%, #1e40af 100%);

  /* ---------- Bexon token remap ---------- */
  --tj-ff-display: 'Sora', 'Mona Sans', sans-serif;
  --tj-color-theme-primary: var(--anuyog-primary);
  --tj-color-theme-bg:      var(--anuyog-surface-alt);
  --tj-color-theme-bg-2:    #dfe7f3;
  --tj-color-theme-bg-3:    var(--anuyog-navy);
  --tj-color-theme-dark:    var(--anuyog-navy);
  --tj-color-theme-dark-2:  #132550;
  --tj-color-theme-dark-3:  var(--anuyog-body);
  --tj-color-theme-dark-4:  #5c7293;
  --tj-color-theme-dark-5:  #6c7e9f;
  --tj-color-heading-primary: var(--anuyog-heading);
  --tj-color-text-body:     var(--anuyog-body);
  --tj-color-text-body-2:   #8fa1be;
  --tj-color-text-body-3:   #5c7293;
  --tj-color-text-body-4:   #132550;
  --tj-color-grey-1:        var(--anuyog-bg);
  --tj-color-grey-2:        #8fa1be;
  --tj-color-border-1:      var(--anuyog-border);
  --tj-color-border-2:      #1c2d58;
  --tj-color-border-5:      rgba(37, 99, 235, 0.18);
}

/* ============================================================
   Base  —  mobile-first safety rules
   ============================================================ */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;  /* prevent iOS font-size bump on rotate */
}
html, body {
  overflow-x: hidden;               /* belt-and-braces against accidental horizontal scroll */
  max-width: 100%;
}
body {
  background-color: var(--anuyog-bg);
  font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--anuyog-body);
}
h1, h2, h3, h4, h5, h6 { font-family: var(--tj-ff-display); color: var(--anuyog-heading); letter-spacing: -0.02em; overflow-wrap: break-word; word-wrap: break-word; }
a { color: var(--anuyog-primary); }
a:hover { color: var(--anuyog-primary-deep); }
p { overflow-wrap: break-word; word-wrap: break-word; }

/* Images + media default to responsive */
img, svg, video, iframe { max-width: 100%; height: auto; }

/* Tables never push past their container */
table { max-width: 100%; }

::selection { background: var(--anuyog-primary); color: #fff; }

/* Hide smooth-wrapper oddities — we're using native smooth scroll */
#smooth-wrapper, #smooth-content { transform: none !important; }

/* Mobile drawer menu (hamburger) — replaces the absent meanmenu plugin styling */
.hamburger-area .hamburger_menu { padding: 14px 24px 6px; position: relative; z-index: 2; }
.hamburger-area .mobile_menu > ul { list-style: none; margin: 0; padding: 0; }
.hamburger-area .mobile_menu > ul > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.hamburger-area .mobile_menu > ul > li > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 4px;
  color: #fff;
  font-family: var(--tj-ff-display);
  font-weight: 600; font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.01em;
  min-height: 48px;
}
.hamburger-area .mobile_menu > ul > li > a:hover,
.hamburger-area .mobile_menu > ul > li > a:focus { color: var(--anuyog-sky); }
.hamburger-area .mobile_menu .has-dropdown > a::after {
  content: "\f107"; /* fa-chevron-down */
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px; margin-left: 8px;
  transition: transform .25s ease;
  color: rgba(255,255,255,0.6);
}
.hamburger-area .mobile_menu .has-dropdown.is-open > a::after { transform: rotate(180deg); color: var(--anuyog-sky); }
.hamburger-area .mobile_menu .sub-menu {
  list-style: none; padding: 0 0 8px 14px; margin: 0;
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.hamburger-area .mobile_menu .has-dropdown.is-open .sub-menu { max-height: 600px; }
.hamburger-area .mobile_menu .sub-menu li a {
  display: block; padding: 10px 4px;
  color: rgba(255,255,255,0.78);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  min-height: 40px;
}
.hamburger-area .mobile_menu .sub-menu li a:hover { color: #fff; }

/* Lock scroll when drawer is open */
body.menu-open { overflow: hidden; }

/* Drawer "Get in touch" + socials — clean, structured rows */
.mobile-drawer-contact {
  padding: 20px 24px 28px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 18px;
}
.mobile-drawer-contact h5 {
  color: rgba(255,255,255,0.55);
  font-family: var(--tj-ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 4px 0 12px;
}
.mobile-drawer-contact h5:not(:first-child) { margin-top: 22px; }

.drawer-contact-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  color: #fff;
  min-height: 48px;
}
.drawer-contact-row:hover { color: #fff; }
.drawer-contact-row:hover .row-icon { background: var(--anuyog-primary); color: #fff; }
.drawer-contact-row.is-static { cursor: default; }
.drawer-contact-row .row-icon {
  flex: 0 0 38px;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(37,99,235,0.18);
  color: var(--anuyog-sky);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}
.drawer-contact-row .row-body {
  display: flex; flex-direction: column;
  min-width: 0; flex: 1;
}
.drawer-contact-row .row-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.drawer-contact-row .row-value {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  word-break: break-word;
  line-height: 1.35;
}

.drawer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.drawer-socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s ease;
}
.drawer-socials a:hover {
  background: var(--anuyog-primary);
  border-color: var(--anuyog-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Tap targets: ensure every interactive element is >= 44px tall on touch devices */
@media (hover: none) and (pointer: coarse) {
  a.tj-primary-btn,
  button,
  .action-btn,
  .save-btn,
  .mainmenu a,
  .sub-menu a { min-height: 44px; }
  /* Disable any scale/scroll-through hover previews — touch devices have no hover */
  .anuyog-work:hover .anuyog-work-frame.is-web img { transform: none; }
  .anuyog-work:hover .anuyog-work-frame img { transform: none; filter: none; }
  /* Make the portfolio overlay's description visible on tap/focus */
  .anuyog-work:focus-within .anuyog-work-overlay,
  .anuyog-work:active .anuyog-work-overlay { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Buttons — unified
   Bexon's main.css has its own aggressive defaults (white .btn-text,
   vertical text-roll on hover, etc.) — the rules below intentionally
   override both the <a> color AND the inner .btn-text/span color so
   the visible text matches the intended variant contrast.
   ============================================================ */

/* ---- Base primary (blue gradient fill, white text) ---- */
.tj-primary-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--anuyog-gradient);
  color: #fff !important;
  border: 0;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px -12px rgba(37, 99, 235, 0.55);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.tj-primary-btn .btn-text,
.tj-primary-btn .btn-text span {
  color: #fff !important;
  text-shadow: none !important; /* kill Bexon's ghost-line used by its text-roll hover */
}
/* Shared hover lift — no background change here so variants stay isolated */
.tj-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -12px rgba(37, 99, 235, 0.65);
  text-decoration: none;
}
/* Neutralise Bexon's vertical text-roll animation — it hides the text
   inside our pill (overflow:hidden) and breaks the gradient-text trick. */
.tj-primary-btn:hover .btn-text span,
.tj-primary-btn .btn-text span {
  transform: none !important;
}
/* Base primary (no variant class): darken the gradient on hover */
.tj-primary-btn:not(.btn-light):not(.btn-dark):not(.btn-outline):hover {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #fff !important;
}
.tj-primary-btn .btn-icon {
  width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18); border-radius: 999px; font-size: 12px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
  color: #fff;
}
.tj-primary-btn .btn-icon i {
  color: #fff;
  transform: none !important; /* Bexon adds rotate(-45deg) on the icon by default */
}
.tj-primary-btn:hover .btn-icon { transform: translateX(3px); }
.tj-primary-btn:hover .btn-icon i { transform: none !important; }

/* ---- btn-dark: navy fill, white text ---- */
.tj-primary-btn.btn-dark {
  background: var(--anuyog-navy);
  color: #fff !important;
  box-shadow: 0 10px 24px -12px rgba(10, 27, 61, 0.5);
}
.tj-primary-btn.btn-dark:hover {
  background: #132550;
  color: #fff !important;
}
.tj-primary-btn.btn-dark .btn-text,
.tj-primary-btn.btn-dark .btn-text span { color: #fff !important; }

/* ---- btn-light: white fill, blue-cyan gradient text ---- */
.tj-primary-btn.btn-light {
  background: #fff;
  color: var(--anuyog-primary) !important;
  box-shadow: 0 10px 24px -12px rgba(34, 211, 238, 0.5);
}
.tj-primary-btn.btn-light:hover {
  background: #eaf2ff;
}
.tj-primary-btn.btn-light .btn-text,
.tj-primary-btn.btn-light .btn-text span {
  color: transparent !important;
  background: linear-gradient(90deg, var(--anuyog-primary) 0%, var(--anuyog-cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-shadow: none !important;
  transform: none !important;
}
/* On hover of btn-light, same gradient text — no color change, no roll */
.tj-primary-btn.btn-light:hover .btn-text,
.tj-primary-btn.btn-light:hover .btn-text span {
  color: transparent !important;
  background: linear-gradient(90deg, var(--anuyog-primary-deep) 0%, var(--anuyog-primary) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: none !important;
}
.tj-primary-btn.btn-light .btn-icon {
  background: var(--anuyog-gradient);
  color: #fff !important;
}
.tj-primary-btn.btn-light .btn-icon i { color: #fff !important; }

/* ---- btn-outline (default: light-section variant) ---- */
.tj-primary-btn.btn-outline {
  background: transparent;
  color: var(--anuyog-primary) !important;
  border: 1px solid var(--anuyog-primary);
  box-shadow: none;
}
.tj-primary-btn.btn-outline .btn-text,
.tj-primary-btn.btn-outline .btn-text span {
  color: var(--anuyog-primary) !important;
  text-shadow: none !important;
}
.tj-primary-btn.btn-outline:hover {
  background: var(--anuyog-primary);
  color: #fff !important;
  border-color: var(--anuyog-primary);
}
.tj-primary-btn.btn-outline:hover .btn-text,
.tj-primary-btn.btn-outline:hover .btn-text span {
  color: #fff !important;
}
.tj-primary-btn.btn-outline .btn-icon {
  background: var(--anuyog-primary-soft);
  color: var(--anuyog-primary) !important;
}
.tj-primary-btn.btn-outline .btn-icon i { color: var(--anuyog-primary) !important; }
.tj-primary-btn.btn-outline:hover .btn-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #fff !important;
}
.tj-primary-btn.btn-outline:hover .btn-icon i { color: #fff !important; }

/* ---- btn-outline on dark sections: white-on-transparent ---- */
.anuyog-section-dark .tj-primary-btn.btn-outline,
.anuyog-hero .tj-primary-btn.btn-outline,
.tj-page-header .tj-primary-btn.btn-outline,
.anuyog-stats-section .tj-primary-btn.btn-outline,
.anuyog-spotlight-card .tj-primary-btn.btn-outline,
.anuyog-cta-card .tj-primary-btn.btn-outline,
.anuyog-coming-soon .tj-primary-btn.btn-outline,
.anuyog-err .tj-primary-btn.btn-outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.anuyog-section-dark .tj-primary-btn.btn-outline .btn-text,
.anuyog-section-dark .tj-primary-btn.btn-outline .btn-text span,
.anuyog-hero .tj-primary-btn.btn-outline .btn-text,
.anuyog-hero .tj-primary-btn.btn-outline .btn-text span,
.tj-page-header .tj-primary-btn.btn-outline .btn-text,
.tj-page-header .tj-primary-btn.btn-outline .btn-text span,
.anuyog-stats-section .tj-primary-btn.btn-outline .btn-text,
.anuyog-stats-section .tj-primary-btn.btn-outline .btn-text span,
.anuyog-spotlight-card .tj-primary-btn.btn-outline .btn-text,
.anuyog-spotlight-card .tj-primary-btn.btn-outline .btn-text span,
.anuyog-cta-card .tj-primary-btn.btn-outline .btn-text,
.anuyog-cta-card .tj-primary-btn.btn-outline .btn-text span,
.anuyog-coming-soon .tj-primary-btn.btn-outline .btn-text,
.anuyog-coming-soon .tj-primary-btn.btn-outline .btn-text span,
.anuyog-err .tj-primary-btn.btn-outline .btn-text,
.anuyog-err .tj-primary-btn.btn-outline .btn-text span {
  color: #fff !important;
}
.anuyog-section-dark .tj-primary-btn.btn-outline:hover,
.anuyog-hero .tj-primary-btn.btn-outline:hover,
.tj-page-header .tj-primary-btn.btn-outline:hover,
.anuyog-stats-section .tj-primary-btn.btn-outline:hover,
.anuyog-spotlight-card .tj-primary-btn.btn-outline:hover,
.anuyog-cta-card .tj-primary-btn.btn-outline:hover,
.anuyog-coming-soon .tj-primary-btn.btn-outline:hover,
.anuyog-err .tj-primary-btn.btn-outline:hover {
  background: #ffffff;
  color: var(--anuyog-navy) !important;
  border-color: #ffffff;
}
.anuyog-section-dark .tj-primary-btn.btn-outline:hover .btn-text,
.anuyog-section-dark .tj-primary-btn.btn-outline:hover .btn-text span,
.anuyog-hero .tj-primary-btn.btn-outline:hover .btn-text,
.anuyog-hero .tj-primary-btn.btn-outline:hover .btn-text span,
.tj-page-header .tj-primary-btn.btn-outline:hover .btn-text,
.tj-page-header .tj-primary-btn.btn-outline:hover .btn-text span,
.anuyog-stats-section .tj-primary-btn.btn-outline:hover .btn-text,
.anuyog-stats-section .tj-primary-btn.btn-outline:hover .btn-text span,
.anuyog-spotlight-card .tj-primary-btn.btn-outline:hover .btn-text,
.anuyog-spotlight-card .tj-primary-btn.btn-outline:hover .btn-text span,
.anuyog-cta-card .tj-primary-btn.btn-outline:hover .btn-text,
.anuyog-cta-card .tj-primary-btn.btn-outline:hover .btn-text span,
.anuyog-coming-soon .tj-primary-btn.btn-outline:hover .btn-text,
.anuyog-coming-soon .tj-primary-btn.btn-outline:hover .btn-text span,
.anuyog-err .tj-primary-btn.btn-outline:hover .btn-text,
.anuyog-err .tj-primary-btn.btn-outline:hover .btn-text span {
  color: var(--anuyog-navy) !important;
}
.anuyog-section-dark .tj-primary-btn.btn-outline .btn-icon,
.anuyog-hero .tj-primary-btn.btn-outline .btn-icon,
.tj-page-header .tj-primary-btn.btn-outline .btn-icon,
.anuyog-stats-section .tj-primary-btn.btn-outline .btn-icon,
.anuyog-spotlight-card .tj-primary-btn.btn-outline .btn-icon,
.anuyog-cta-card .tj-primary-btn.btn-outline .btn-icon,
.anuyog-coming-soon .tj-primary-btn.btn-outline .btn-icon,
.anuyog-err .tj-primary-btn.btn-outline .btn-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}
.anuyog-section-dark .tj-primary-btn.btn-outline .btn-icon i,
.anuyog-hero .tj-primary-btn.btn-outline .btn-icon i,
.tj-page-header .tj-primary-btn.btn-outline .btn-icon i,
.anuyog-stats-section .tj-primary-btn.btn-outline .btn-icon i,
.anuyog-spotlight-card .tj-primary-btn.btn-outline .btn-icon i,
.anuyog-cta-card .tj-primary-btn.btn-outline .btn-icon i,
.anuyog-coming-soon .tj-primary-btn.btn-outline .btn-icon i,
.anuyog-err .tj-primary-btn.btn-outline .btn-icon i { color: #fff !important; }
.anuyog-section-dark .tj-primary-btn.btn-outline:hover .btn-icon,
.anuyog-hero .tj-primary-btn.btn-outline:hover .btn-icon,
.tj-page-header .tj-primary-btn.btn-outline:hover .btn-icon,
.anuyog-stats-section .tj-primary-btn.btn-outline:hover .btn-icon,
.anuyog-spotlight-card .tj-primary-btn.btn-outline:hover .btn-icon,
.anuyog-cta-card .tj-primary-btn.btn-outline:hover .btn-icon,
.anuyog-coming-soon .tj-primary-btn.btn-outline:hover .btn-icon,
.anuyog-err .tj-primary-btn.btn-outline:hover .btn-icon {
  background: var(--anuyog-primary-soft);
  color: var(--anuyog-primary) !important;
}
.anuyog-section-dark .tj-primary-btn.btn-outline:hover .btn-icon i,
.anuyog-hero .tj-primary-btn.btn-outline:hover .btn-icon i,
.tj-page-header .tj-primary-btn.btn-outline:hover .btn-icon i,
.anuyog-stats-section .tj-primary-btn.btn-outline:hover .btn-icon i,
.anuyog-spotlight-card .tj-primary-btn.btn-outline:hover .btn-icon i,
.anuyog-cta-card .tj-primary-btn.btn-outline:hover .btn-icon i,
.anuyog-coming-soon .tj-primary-btn.btn-outline:hover .btn-icon i,
.anuyog-err .tj-primary-btn.btn-outline:hover .btn-icon i { color: var(--anuyog-primary) !important; }

/* ---- Base-primary button on dark CTA/spotlight/hero cards gets
        a subtle white ring + cyan glow so it never merges with
        the blue gradient background behind it. ---- */
.anuyog-cta-card .tj-primary-btn:not(.btn-light):not(.btn-dark):not(.btn-outline),
.anuyog-spotlight-card .tj-primary-btn:not(.btn-light):not(.btn-dark):not(.btn-outline),
.anuyog-coming-soon .tj-primary-btn:not(.btn-light):not(.btn-dark):not(.btn-outline),
.anuyog-err .tj-primary-btn:not(.btn-light):not(.btn-dark):not(.btn-outline),
.anuyog-stats-section .tj-primary-btn:not(.btn-light):not(.btn-dark):not(.btn-outline) {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 10px 26px -10px rgba(34, 211, 238, 0.7);
}

/* Focus — visible on any background */
.tj-primary-btn:focus-visible {
  outline: 2px solid rgba(96, 165, 250, 0.8);
  outline-offset: 3px;
}

/* ----------  text-btn (inline arrow link)  ---------- */
.text-btn {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--anuyog-primary);
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  transition: color .25s ease;
}
.text-btn .btn-icon,
.text-btn i {
  transition: transform .25s ease, color .25s ease;
}
/* Light-section hover: slightly deeper blue */
.text-btn:hover { color: var(--anuyog-primary-deep); }
.text-btn:hover .btn-icon,
.text-btn:hover i { transform: translateX(3px); }

/* text-btn on dark sections — keep it legible in every state */
.anuyog-section-dark .text-btn,
.anuyog-hero .text-btn,
.tj-page-header .text-btn,
.anuyog-stats-section .text-btn,
.anuyog-spotlight-card .text-btn,
.anuyog-cta-card .text-btn,
.anuyog-coming-soon .text-btn,
.anuyog-err .text-btn {
  color: var(--anuyog-cyan) !important;
}
.anuyog-section-dark .text-btn:hover,
.anuyog-hero .text-btn:hover,
.tj-page-header .text-btn:hover,
.anuyog-stats-section .text-btn:hover,
.anuyog-spotlight-card .text-btn:hover,
.anuyog-cta-card .text-btn:hover,
.anuyog-coming-soon .text-btn:hover,
.anuyog-err .text-btn:hover {
  color: #ffffff !important;
}

/* ============================================================
   Section headings — unified
   ============================================================ */
.sec-heading { margin-bottom: 48px; }
.sec-heading .sub-title, .anuyog-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--anuyog-primary);
  font-family: var(--tj-ff-display);
  font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; font-size: 13px;
  margin-bottom: 14px;
}
.sec-heading .sub-title i { color: var(--anuyog-primary); }
.anuyog-eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--anuyog-gradient);
  display: inline-block;
}
.sec-title {
  font-family: var(--tj-ff-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  color: var(--anuyog-heading);
  margin: 0;
}
.sec-title span,
.banner-title span,
h1 span, h2 span, h3 span, h4 span {
  background: linear-gradient(90deg, var(--anuyog-primary) 0%, var(--anuyog-cyan) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Section spacing primitive */
.anuyog-section { padding: var(--anuyog-section) 0; }
.anuyog-section-alt { padding: var(--anuyog-section) 0; background: var(--anuyog-surface-alt); }
.anuyog-section-dark { padding: var(--anuyog-section) 0; background: var(--anuyog-gradient-dark); color: #fff; }
.anuyog-section-dark .sec-title,
.anuyog-section-dark h1, .anuyog-section-dark h2, .anuyog-section-dark h3, .anuyog-section-dark h4, .anuyog-section-dark h5, .anuyog-section-dark h6 { color: #fff; }
.anuyog-section-dark p { color: rgba(255,255,255,0.8); }

/* Bexon section-gap compatibility */
.section-gap { padding: var(--anuyog-section) 0 !important; }
.section-gap-x { padding-left: max(4vw, 24px); padding-right: max(4vw, 24px); }

/* ============================================================
   Pills / eyebrows
   ============================================================ */
.anuyog-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--anuyog-primary-soft);
  color: var(--anuyog-primary);
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  border: 1px solid rgba(37, 99, 235, 0.18);
}
.anuyog-pill i { font-size: 13px; }
.anuyog-pill-light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}

/* ============================================================
   Header / navigation
   Always fixed at the top. Starts transparent over the dark hero /
   page-header, then darkens + blurs on scroll for legibility over
   light content.
   ============================================================ */
body { padding-top: 0; }
.header-area {
  position: fixed !important;
  top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0;
  background: transparent;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
  pointer-events: auto;
}
/* Visible state on scroll — always readable navy with blur */
.header-area.is-scrolled {
  background: rgba(10, 27, 61, 0.95);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px -10px rgba(0, 0, 0, 0.45);
  padding: 10px 0;
}
.header-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site_logo img { max-height: 48px; width: auto; transition: max-height .3s ease; }
.header-area.is-scrolled .site_logo img { max-height: 38px; }

/* ---------- Main menu ---------- */
.mainmenu > ul { display: flex; gap: 4px; align-items: center; list-style: none; padding: 0; margin: 0; }
.mainmenu > ul > li {
  display: flex;
  align-items: center;
  position: relative;
  list-style: none;
}
.mainmenu > ul > li > a {
  color: #fff !important;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  line-height: 1;
  /* reset the inline-end padding Bexon adds for the absolute arrow */
  padding-inline-end: 16px !important;
  -webkit-padding-end: 16px !important;
}
/* Override Bexon's absolutely-positioned arrow with an inline CSS arrow */
.mainmenu ul > li.has-dropdown > a::after,
.mainmenu ul > li.menu-item-has-children > a::after,
.mainmenu > ul > li.has-dropdown > a::after {
  content: "" !important;
  font-family: inherit !important;
  position: static !important;
  top: auto !important;
  right: auto !important;
  inset-inline-end: auto !important;
  width: 7px !important;
  height: 7px !important;
  border-right: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  border-top: 0 !important;
  border-left: 0 !important;
  background: transparent !important;
  display: inline-block !important;
  transform: rotate(45deg) translateY(-2px) !important;
  opacity: 0.8;
  margin-left: 6px !important;
  margin-right: 0 !important;
  flex-shrink: 0;
  transition: transform .25s ease, opacity .25s ease;
  color: inherit;
  font-size: 0 !important;
}
.mainmenu ul > li.has-dropdown:hover > a::after,
.mainmenu > ul > li.has-dropdown:hover > a::after {
  transform: rotate(225deg) translate(2px, 2px) !important;
  opacity: 1;
}

.mainmenu > ul > li.active > a,
.mainmenu > ul > li:hover > a { color: var(--anuyog-cyan) !important; }
.mainmenu > ul > li.active > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--anuyog-gradient);
  border-radius: 2px;
}
.mainmenu .sub-menu { list-style: none; padding: 12px; margin: 0; }
.mainmenu .sub-menu li a { color: var(--anuyog-heading); }

.menu_bar { cursor: pointer; display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; }
.menu_bar span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s ease; }
.menu_bar:hover span { background: var(--anuyog-cyan); }

.header-right-item { display: inline-flex; align-items: center; gap: 18px; }
.header-right-item .tj-primary-btn { padding: 12px 22px; font-size: 14px; }

/* ============================================================
   Page header (breadcrumb hero for non-home pages)
   ============================================================ */
.tj-page-header {
  position: relative;
  padding: 170px 0 100px;
  background: var(--anuyog-gradient-dark);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.tj-page-header::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(500px 300px at 20% 20%, rgba(34,211,238,0.18), transparent 60%),
    radial-gradient(420px 280px at 80% 80%, rgba(96,165,250,0.22), transparent 60%);
  pointer-events: none;
}
.tj-page-header::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.tj-page-header > .container { position: relative; z-index: 1; }
.tj-page-title {
  font-family: var(--tj-ff-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  color: #fff;
  margin: 0;
}
.tj-page-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px; color: rgba(255,255,255,0.8);
  font-size: 14px; font-weight: 500;
}
.tj-page-link a { color: rgba(255,255,255,0.8); }
.tj-page-link a:hover { color: var(--anuyog-cyan); }
.tj-page-link i { font-size: 12px; opacity: 0.7; }
.tj-page-lead {
  max-width: 640px; margin: 18px auto 0;
  color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.6;
}

/* ============================================================
   Hero banner (home)
   ============================================================ */
.anuyog-hero {
  position: relative;
  min-height: 92vh;
  padding: 160px 0 120px;
  background: var(--anuyog-gradient-dark);
  color: #fff;
  overflow: hidden;
}
/* Hero content zooms in gently when splash starts its exit.
   Triggered by JS adding .is-entering to <body>. */
body.is-entering .anuyog-hero > .container,
body.has-splash-done .anuyog-hero > .container {
  animation: anuyog-hero-enter 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes anuyog-hero-enter {
  0%   { opacity: 0.2; transform: scale(0.965); filter: blur(6px); }
  60%  { opacity: 1;   transform: scale(1);     filter: blur(0);   }
  100% { opacity: 1;   transform: scale(1);     filter: blur(0);   }
}
.anuyog-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(900px 600px at 80% 20%, rgba(34, 211, 238, 0.16), transparent 55%),
    radial-gradient(900px 700px at 10% 90%, rgba(37, 99, 235, 0.2), transparent 55%);
  pointer-events: none;
}
.anuyog-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 35%, transparent 80%);
          mask-image: radial-gradient(circle at 50% 30%, #000 35%, transparent 80%);
  pointer-events: none;
}
.anuyog-hero .container { position: relative; z-index: 1; }
.anuyog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 60px; align-items: center;
}
@media (max-width: 991px) { .anuyog-hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.anuyog-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--anuyog-sky);
  font-family: var(--tj-ff-display);
  font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 22px;
}
.anuyog-hero-title {
  font-family: var(--tj-ff-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 22px;
}
.anuyog-hero-title .swap {
  display: inline-block;
  background: linear-gradient(90deg, var(--anuyog-sky), var(--anuyog-cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity .35s ease, transform .35s ease;
}
.anuyog-hero-desc {
  font-size: 18px; line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 0 34px;
}
.anuyog-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.anuyog-hero-actions .tj-primary-btn.btn-outline { color: #fff !important; border-color: rgba(255,255,255,0.3); }
.anuyog-hero-actions .tj-primary-btn.btn-outline:hover { background: rgba(255,255,255,0.08); }

.anuyog-hero-trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.anuyog-hero-trust-item { display: flex; align-items: baseline; gap: 10px; color: rgba(255,255,255,0.8); font-size: 14px; }
.anuyog-hero-trust-item strong { font-family: var(--tj-ff-display); font-size: 22px; color: #fff; font-weight: 700; }

/* Hero card (right column) */
.anuyog-hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(96,165,250,0.05));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--anuyog-radius-lg);
  padding: 40px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}
.anuyog-hero-card-logo {
  display: block;
  width: 100px; height: auto;
  margin: 0 auto 24px;
}
.anuyog-hero-card-title {
  font-family: var(--tj-ff-display);
  font-weight: 600;
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin: 0 0 6px;
}
.anuyog-hero-card-subtitle {
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin: 0 0 28px;
}
.anuyog-hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.anuyog-hero-stats .stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--anuyog-radius-sm);
  padding: 18px;
  text-align: center;
}
.anuyog-hero-stats .stat .n {
  font-family: var(--tj-ff-display);
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  line-height: 1;
}
.anuyog-hero-stats .stat .l {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  display: block;
}

.anuyog-hero-scroll {
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.6); font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase;
  margin-top: 60px;
}
.anuyog-hero-scroll .line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  animation: anuyog-scroll-bounce 1.6s ease-in-out infinite;
}
@keyframes anuyog-scroll-bounce {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(0.4); transform-origin: top; }
}

/* ============================================================
   Cards — one unified style, used everywhere
   ============================================================ */
.anuyog-card {
  background: var(--anuyog-surface);
  border: 1px solid var(--anuyog-border);
  border-radius: var(--anuyog-radius);
  padding: 30px;
  box-shadow: var(--anuyog-shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  height: 100%;
  position: relative;
}
.anuyog-card:hover {
  transform: translateY(-4px);
  border-color: var(--anuyog-primary);
  box-shadow: var(--anuyog-shadow);
}
.anuyog-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--anuyog-primary-soft);
  color: var(--anuyog-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all .3s ease;
}
.anuyog-card:hover .anuyog-card-icon { background: var(--anuyog-gradient); color: #fff; transform: scale(1.05); }
.anuyog-card-title { font-size: 20px; font-weight: 600; margin: 0 0 10px; color: var(--anuyog-heading); }
.anuyog-card-desc { color: var(--anuyog-body); margin: 0 0 16px; font-size: 15px; line-height: 1.65; }
.anuyog-card-list { list-style: none; padding: 0; margin: 0 0 16px; }
.anuyog-card-list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--anuyog-body);
  display: flex; align-items: center; gap: 10px;
}
.anuyog-card-list li::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%;
  background: var(--anuyog-primary-soft); color: var(--anuyog-primary);
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}

/* Dark variant for card on dark sections */
.anuyog-section-dark .anuyog-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
  box-shadow: none;
}
.anuyog-section-dark .anuyog-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--anuyog-sky);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(34,211,238,0.35);
}
.anuyog-section-dark .anuyog-card-title { color: #fff; }
.anuyog-section-dark .anuyog-card-desc { color: rgba(255,255,255,0.75); }
.anuyog-section-dark .anuyog-card-icon { background: rgba(34,211,238,0.15); color: var(--anuyog-cyan); }
.anuyog-section-dark .anuyog-card:hover .anuyog-card-icon { background: var(--anuyog-gradient); color: #fff; }
.anuyog-section-dark .anuyog-card-list li { color: rgba(255,255,255,0.72); }

/* ============================================================
   Process timeline
   ============================================================ */
.anuyog-process {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}
.anuyog-process::before {
  content: ""; position: absolute; top: 42px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.3), transparent);
  z-index: 0;
}
.anuyog-process-step {
  background: var(--anuyog-surface);
  border: 1px solid var(--anuyog-border);
  border-radius: var(--anuyog-radius);
  padding: 28px 24px;
  position: relative; z-index: 1;
  box-shadow: var(--anuyog-shadow-sm);
  transition: all .3s ease;
}
.anuyog-process-step:hover { transform: translateY(-4px); border-color: var(--anuyog-primary); box-shadow: var(--anuyog-shadow); }
.anuyog-process-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--anuyog-gradient); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--tj-ff-display); font-weight: 700; font-size: 18px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -6px rgba(37,99,235,0.55);
}
.anuyog-process-step h4 { font-size: 20px; margin: 0 0 8px; color: var(--anuyog-heading); }
.anuyog-process-step p  { margin: 0; font-size: 15px; color: var(--anuyog-body); }
@media (max-width: 991px) {
  .anuyog-process { grid-template-columns: repeat(2, 1fr); }
  .anuyog-process::before { display: none; }
}
@media (max-width: 575px) { .anuyog-process { grid-template-columns: 1fr; } }

/* ============================================================
   Stats band
   ============================================================ */
.anuyog-stats-section {
  position: relative;
  padding: var(--anuyog-section) 0;
  background: var(--anuyog-gradient-dark);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(37, 99, 235, 0.18);
}
.anuyog-stats-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(500px 320px at 15% 25%, rgba(34, 211, 238, 0.14), transparent 60%),
    radial-gradient(540px 360px at 85% 75%, rgba(37, 99, 235, 0.22), transparent 60%);
  pointer-events: none;
}
.anuyog-stats-section::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.anuyog-stats-section > .container { position: relative; z-index: 1; }
.anuyog-stats-section .anuyog-section-header {
  margin-bottom: 50px;
}
.anuyog-stats-section .anuyog-eyebrow { color: var(--anuyog-sky); }
.anuyog-stats-section .anuyog-eyebrow::before {
  background: linear-gradient(90deg, var(--anuyog-sky), var(--anuyog-cyan));
}

.anuyog-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--anuyog-gradient);
  border-radius: var(--anuyog-radius-lg);
  color: #fff;
  padding: 60px 30px;
  box-shadow: 0 30px 60px -30px rgba(34, 211, 238, 0.4),
              0 0 0 1px rgba(96, 165, 250, 0.22) inset;
  margin: 0;
}
.anuyog-stats-item { text-align: center; position: relative; padding: 0 20px; }
.anuyog-stats-item + .anuyog-stats-item::before {
  content: ""; position: absolute; left: 0; top: 10%; bottom: 10%; width: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.anuyog-stats-num {
  font-family: var(--tj-ff-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.anuyog-stats-label {
  margin-top: 10px; display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .anuyog-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 0; padding: 40px 20px; }
  .anuyog-stats-item + .anuyog-stats-item::before { display: none; }
}

/* ============================================================
   Tech cloud
   ============================================================ */
.anuyog-techcloud { display: flex; flex-wrap: wrap; gap: 10px; }
.anuyog-techcloud .tech {
  padding: 10px 18px; border-radius: 999px;
  background: var(--anuyog-surface);
  border: 1px solid var(--anuyog-border);
  color: var(--anuyog-heading); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s ease;
}
.anuyog-techcloud .tech:hover { border-color: var(--anuyog-primary); color: var(--anuyog-primary); transform: translateY(-2px); }
.anuyog-techcloud .tech i { color: var(--anuyog-primary); }

/* ============================================================
   Marquee (plain text scroll)
   ============================================================ */
.anuyog-marquee {
  display: flex; overflow: hidden; padding: 30px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.anuyog-marquee-track {
  display: inline-flex; flex-shrink: 0; gap: 60px;
  animation: anuyog-marquee 30s linear infinite;
  white-space: nowrap;
  font-family: var(--tj-ff-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(37, 99, 235, 0.5);
  padding-right: 60px;
}
.anuyog-marquee-track.solid {
  color: rgba(37,99,235,0.75);
  -webkit-text-stroke: 0;
}
.anuyog-marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.anuyog-marquee-track span::after {
  content: "●"; font-size: 18px;
  color: var(--anuyog-primary); -webkit-text-stroke: 0;
}
@keyframes anuyog-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   World map (about page)
   ============================================================ */
.anuyog-world { position: relative; overflow: hidden; }
.anuyog-world-map {
  position: relative;
  max-width: 860px;
  margin: 40px auto 0;
  aspect-ratio: 1167 / 638;
  border-radius: var(--anuyog-radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  overflow: hidden;
}
.anuyog-world-img {
  width: 100%; height: 100%; display: block;
  object-fit: contain;
  /* Dots are pre-tinted brand blue in the SVG; brighten slightly so they
     read as a constellation on the dark navy section. */
  filter: brightness(1.3) saturate(1.1);
  opacity: 0.9;
}

/* Country pin */
.anuyog-world-pin {
  position: absolute;
  width: 0; height: 0;
  pointer-events: none;
}
.anuyog-world-pin .pin-dot {
  position: absolute;
  left: -8px; top: -8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--anuyog-cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.25),
              0 0 18px 4px rgba(34, 211, 238, 0.55);
  z-index: 2;
}
/* ripple pulse */
.anuyog-world-pin .pin-dot::before,
.anuyog-world-pin .pin-dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(34, 211, 238, 0.55);
  animation: anuyog-pin-pulse 2.4s ease-out infinite;
}
.anuyog-world-pin .pin-dot::after { animation-delay: 1.2s; }
@keyframes anuyog-pin-pulse {
  0%   { transform: scale(0.8); opacity: 0.9; }
  80%  { transform: scale(2.8); opacity: 0; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* HQ pin — distinct primary-blue colour */
.anuyog-world-pin.pin-home .pin-dot {
  background: var(--anuyog-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3),
              0 0 22px 6px rgba(37, 99, 235, 0.6);
}
.anuyog-world-pin.pin-home .pin-dot::before,
.anuyog-world-pin.pin-home .pin-dot::after {
  border-color: rgba(96, 165, 250, 0.7);
}

/* Country label chip */
.anuyog-world-pin .pin-label {
  position: absolute;
  left: 14px; top: -14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(10, 27, 61, 0.85);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: #fff;
  font-family: var(--tj-ff-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.anuyog-world-pin .pin-label.pin-label-right { left: auto; right: 14px; }
.anuyog-world-pin.pin-home .pin-label {
  background: var(--anuyog-gradient);
  border-color: transparent;
}

/* Country chip list below the map */
.anuyog-world-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-top: 40px;
}
.anuyog-world-list .chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(96, 165, 250, 0.18);
  color: #fff;
  font-weight: 600; font-size: 14px;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.anuyog-world-list .chip em {
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(34, 211, 238, 0.12);
}
.anuyog-world-list .chip:hover {
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(96, 165, 250, 0.45);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .anuyog-world-pin .pin-label { font-size: 10px; padding: 4px 8px; }
}

/* ============================================================
   Timeline (about page)
   ============================================================ */
.anuyog-timeline {
  position: relative; padding: 30px 0;
  max-width: 880px; margin: 0 auto;
}
.anuyog-timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, transparent, var(--anuyog-border), transparent);
  transform: translateX(-50%);
}
.anuyog-tl-item { width: 50%; padding: 16px 40px; position: relative; }
.anuyog-tl-item.left { padding-right: 60px; text-align: right; }
.anuyog-tl-item.right { margin-left: 50%; padding-left: 60px; }
.anuyog-tl-item::before {
  content: ""; position: absolute; top: 30px; width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--anuyog-gradient);
  box-shadow: 0 0 0 5px var(--anuyog-bg), 0 0 0 6px rgba(37, 99, 235, 0.18);
}
.anuyog-tl-item.left::before { right: -8px; }
.anuyog-tl-item.right::before { left: -8px; }
.anuyog-tl-year { font-family: var(--tj-ff-display); font-weight: 700; font-size: 28px; color: var(--anuyog-primary); margin-bottom: 4px; }
.anuyog-tl-title { color: var(--anuyog-heading); margin: 0 0 6px; font-size: 20px; font-weight: 600; }
.anuyog-tl-item p { color: var(--anuyog-body); margin: 0; }
@media (max-width: 767px) {
  .anuyog-timeline::before { left: 10px; }
  .anuyog-tl-item,
  .anuyog-tl-item.left,
  .anuyog-tl-item.right {
    width: 100%; padding: 16px 16px 16px 40px; text-align: left; margin-left: 0;
  }
  .anuyog-tl-item.left::before,
  .anuyog-tl-item.right::before { left: 2px; right: auto; }
}

/* ============================================================
   Portfolio
   ============================================================ */
.anuyog-filter {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 40px;
}
.anuyog-filter button {
  background: transparent; border: 1px solid var(--anuyog-border);
  color: var(--anuyog-heading); padding: 10px 22px; border-radius: 999px;
  font-family: inherit;
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: all .25s ease;
}
.anuyog-filter button:hover { color: var(--anuyog-primary); border-color: var(--anuyog-primary); }
.anuyog-filter button.active {
  background: var(--anuyog-gradient);
  color: #fff; border-color: transparent;
  box-shadow: 0 8px 20px -10px rgba(37,99,235,0.5);
}

.anuyog-portfolio-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px;
}
.anuyog-portfolio-grid > * { grid-column: span 4; }
.anuyog-portfolio-grid > .span-6 { grid-column: span 6; }
.anuyog-portfolio-grid > .span-8 { grid-column: span 8; }
@media (max-width: 991px) {
  .anuyog-portfolio-grid > *,
  .anuyog-portfolio-grid > .span-6,
  .anuyog-portfolio-grid > .span-8 { grid-column: span 6; }
}
@media (max-width: 575px) {
  .anuyog-portfolio-grid > *,
  .anuyog-portfolio-grid > .span-6,
  .anuyog-portfolio-grid > .span-8 { grid-column: span 12; }
}

.anuyog-pcard {
  position: relative; border-radius: var(--anuyog-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  height: 100%;
  background: var(--anuyog-navy);
  box-shadow: var(--anuyog-shadow);
  transition: transform .4s ease, box-shadow .4s ease;
  display: block;
}
/* App-style card — taller portrait ratio to read as "mobile app" */
.anuyog-pcard-app {
  aspect-ratio: 4 / 5;
}
/* Row-based portfolio grid (home) keeps equal row heights */
.anuyog-portfolio-row { display: flex; flex-wrap: wrap; }
.anuyog-portfolio-row > [class*="col-"] { display: flex; }
.anuyog-portfolio-row .anuyog-pcard { flex: 1; width: 100%; }
/* Mobile-app chip gets a distinct treatment so apps stand out visually */
.anuyog-pcard .chip.chip-app {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.92), rgba(37, 99, 235, 0.92));
  border-color: transparent;
  color: #fff;
}
.anuyog-pcard .chip.chip-app i { margin-right: 4px; }
.anuyog-pcard:hover { transform: translateY(-6px); box-shadow: var(--anuyog-shadow-lg); }
.anuyog-pcard img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
  filter: brightness(.82);
  display: block;
}
.anuyog-pcard:hover img { transform: scale(1.06); filter: brightness(1); }
.anuyog-pcard::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 70%;
  background: linear-gradient(180deg, transparent, rgba(10,27,61,0.95));
  pointer-events: none;
}
.anuyog-pcard .meta {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 14px;
  color: #fff; z-index: 1;
}
.anuyog-pcard .meta .chip {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 12px; letter-spacing: 0.04em;
}
.anuyog-pcard .meta .title {
  font-family: var(--tj-ff-display);
  font-weight: 600; font-size: 20px; line-height: 1.25;
  margin: 8px 0 0; color: #fff;
}
.anuyog-pcard .go {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--anuyog-primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.anuyog-pcard:hover .go { transform: rotate(-45deg); background: var(--anuyog-gradient); color: #fff; }
.is-hidden { display: none !important; }

/* ============================================================
   Portfolio work cards — distinct structures for apps vs websites
   Descriptions reveal on hover
   ============================================================ */
.anuyog-works-grid { display: grid; gap: 28px; }
.anuyog-works-grid--app { grid-template-columns: repeat(3, 1fr); }
.anuyog-works-grid--web { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 991px) {
  .anuyog-works-grid--app,
  .anuyog-works-grid--web { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .anuyog-works-grid--app,
  .anuyog-works-grid--web { grid-template-columns: 1fr; }
}

.anuyog-work { display: block; color: inherit; text-decoration: none; }
.anuyog-work:hover { color: inherit; text-decoration: none; }

.anuyog-work-frame {
  position: relative;
  overflow: hidden;
  background: var(--anuyog-surface);
  border: 1px solid var(--anuyog-border);
  box-shadow: var(--anuyog-shadow);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.anuyog-work:hover .anuyog-work-frame {
  transform: translateY(-6px);
  box-shadow: var(--anuyog-shadow-lg);
  border-color: var(--anuyog-primary);
}

/* App card — portrait, taller aspect for "product in hand" feel */
.anuyog-work-frame.is-app {
  aspect-ratio: 4 / 5;
  border-radius: var(--anuyog-radius);
}
/* AI / automation tool — same visual shape as app for consistency */
.anuyog-work-frame.is-tool {
  aspect-ratio: 4 / 5;
  border-radius: var(--anuyog-radius);
}
/* Placeholder for apps/tools without real screenshots yet */
.anuyog-work-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  padding: 28px;
  text-align: center;
  background: linear-gradient(135deg, var(--anuyog-primary), var(--anuyog-primary-deep));
  color: #fff;
}
.anuyog-work-placeholder.is-cyan {
  background: linear-gradient(135deg, var(--anuyog-cyan), var(--anuyog-primary));
}
.anuyog-work-placeholder.is-navy {
  background: linear-gradient(135deg, var(--anuyog-navy-deep), var(--anuyog-navy));
}
.anuyog-work-placeholder i {
  font-size: 64px;
  opacity: 0.85;
}
.anuyog-work-placeholder span {
  font-family: var(--tj-ff-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  max-width: 80%;
  line-height: 1.3;
}
.anuyog-work:hover .anuyog-work-placeholder {
  filter: brightness(0.45);
}
/* Web card — wider aspect, mimics a browser window */
.anuyog-work-frame.is-web {
  aspect-ratio: 16 / 10;
  border-radius: var(--anuyog-radius-sm);
  padding-top: 32px;
}
.anuyog-work-chrome {
  position: absolute; top: 0; left: 0; right: 0; height: 32px;
  background: var(--anuyog-surface-alt);
  border-bottom: 1px solid var(--anuyog-divider);
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
  z-index: 2;
}
.anuyog-work-chrome .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--anuyog-border);
}
.anuyog-work-chrome .dot:nth-child(1) { background: #ef4444; }
.anuyog-work-chrome .dot:nth-child(2) { background: #f59e0b; }
.anuyog-work-chrome .dot:nth-child(3) { background: #10b981; }
.anuyog-work-chrome .url {
  flex: 1;
  margin-left: 12px;
  background: var(--anuyog-surface);
  border: 1px solid var(--anuyog-divider);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--anuyog-muted);
  font-family: 'Menlo', 'Consolas', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.anuyog-work-frame img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .6s ease, filter .5s ease;
}
.anuyog-work:hover .anuyog-work-frame img {
  transform: scale(1.06);
  filter: brightness(0.35);
}

/* Website cards: hover triggers a live scroll-through preview (video-like) */
.anuyog-work-frame.is-web { overflow: hidden; }
.anuyog-work-frame.is-web img {
  height: auto;
  object-fit: unset;
  will-change: transform;
  transition: transform 9s linear, filter .4s ease;
}
.anuyog-work:hover .anuyog-work-frame.is-web img {
  transform: translateY(-62%);
  filter: none;
}

/* Type badge in the corner — visible always */
.anuyog-work-badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--anuyog-primary);
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: var(--anuyog-shadow-sm);
}
.anuyog-work-frame.is-web .anuyog-work-badge { top: 42px; }

/* Hover overlay: description reveal */
.anuyog-work-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0; top: 0;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
  background: linear-gradient(180deg, rgba(10,27,61,0) 0%, rgba(10,27,61,0.96) 55%);
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
  z-index: 2;
}
/* Website cards get a minimal info strip so the scrolling preview stays visible */
.anuyog-work-frame.is-web .anuyog-work-overlay {
  top: auto;
  background: linear-gradient(180deg, rgba(10,27,61,0) 0%, rgba(10,27,61,0.92) 80%);
  padding: 18px 20px 18px;
  gap: 6px;
  min-height: 42%;
}
.anuyog-work:hover .anuyog-work-overlay { opacity: 1; transform: translateY(0); }
.anuyog-work-overlay h3 {
  color: #fff;
  font-size: 19px;
  margin: 0 0 4px;
  line-height: 1.2;
  font-weight: 700;
}
.anuyog-work-overlay .cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--anuyog-sky);
  margin-bottom: 2px;
}
.anuyog-work-overlay p {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  color: rgba(255,255,255,0.88);
}
.anuyog-work-overlay ul {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px 12px;
}
.anuyog-work-frame.is-web .anuyog-work-overlay ul { display: none; }
.anuyog-work-overlay ul li {
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.anuyog-work-overlay ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0; top: 2px;
  font-size: 9px;
  color: var(--anuyog-cyan);
}

/* ============================================================
   AI / automation illustrations — generated in CSS
   ============================================================ */
.anuyog-illust {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  padding: 20px 16px;
  gap: 8px;
  font-size: 12px;
  position: relative;
  overflow: hidden;
}

/* Chatbot mockup */
.anuyog-illust.is-chat {
  background: linear-gradient(180deg, #e8f0ff 0%, #f5f7fb 100%);
  justify-content: flex-end;
}
.anuyog-illust.is-chat.is-cyan {
  background: linear-gradient(180deg, #e0f7fa 0%, #f0fafe 100%);
}
.anuyog-illust.is-chat .ill-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid var(--anuyog-divider);
  font-weight: 700; font-size: 12px;
  color: var(--anuyog-heading);
  display: flex; align-items: center; gap: 8px;
}
.anuyog-illust.is-chat .ill-header .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.18);
}
.anuyog-illust.is-chat .ill-msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--anuyog-heading);
  animation: ill-pop .5s ease both;
}
.anuyog-illust.is-chat .ill-msg.user {
  background: var(--anuyog-primary);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.anuyog-illust.is-chat .ill-msg.bot {
  background: #fff;
  border: 1px solid var(--anuyog-divider);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.anuyog-illust.is-chat .ill-typing {
  align-self: flex-start;
  padding: 8px 12px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--anuyog-divider);
  display: inline-flex; gap: 4px;
}
.anuyog-illust.is-chat .ill-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--anuyog-muted);
  animation: ill-blink 1.4s infinite ease-in-out both;
}
.anuyog-illust.is-chat .ill-typing span:nth-child(2) { animation-delay: .2s; }
.anuyog-illust.is-chat .ill-typing span:nth-child(3) { animation-delay: .4s; }

/* Workflow (n8n) mockup */
.anuyog-illust.is-workflow {
  background: linear-gradient(180deg, #0a1b3d 0%, #132550 100%);
  justify-content: center; align-items: center; gap: 14px;
  color: #fff;
}
.anuyog-illust.is-workflow .ill-node {
  background: #fff;
  color: var(--anuyog-heading);
  border-radius: 10px;
  padding: 10px 14px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-width: 88px;
  box-shadow: 0 6px 16px -8px rgba(0,0,0,0.4);
}
.anuyog-illust.is-workflow .ill-node i {
  font-size: 20px;
  color: var(--anuyog-primary);
}
.anuyog-illust.is-workflow .ill-node span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.anuyog-illust.is-workflow .ill-line {
  width: 2px; height: 18px;
  background: linear-gradient(180deg, var(--anuyog-sky), var(--anuyog-cyan));
  border-radius: 2px;
}
.anuyog-illust.is-workflow .ill-line::before,
.anuyog-illust.is-workflow .ill-line::after {
  content: "";
  display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--anuyog-cyan);
  margin-left: -2px;
}
.anuyog-illust.is-workflow .ill-line::after { margin-top: 6px; animation: ill-pulse 1.8s infinite; }

/* Trading chart mockup */
.anuyog-illust.is-chart {
  background: linear-gradient(180deg, #0a1b3d 0%, #060f28 100%);
  color: #fff;
  padding: 20px;
}
.anuyog-illust.is-chart .ill-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.anuyog-illust.is-chart .ill-head .tick { font-weight: 700; font-size: 13px; }
.anuyog-illust.is-chart .ill-head .pnl {
  font-size: 13px; font-weight: 700;
  color: #10b981;
}
.anuyog-illust.is-chart .ill-candles {
  display: flex; align-items: flex-end;
  gap: 3px; height: 120px;
  margin-bottom: 10px;
}
.anuyog-illust.is-chart .ill-candles span {
  flex: 1; border-radius: 1px;
  background: #10b981;
  min-width: 4px;
}
.anuyog-illust.is-chart .ill-candles span.down { background: #ef4444; }
.anuyog-illust.is-chart .ill-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.anuyog-illust.is-chart .ill-stats div {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 10px;
  text-align: center;
}
.anuyog-illust.is-chart .ill-stats div strong {
  display: block; font-size: 13px; color: var(--anuyog-cyan);
  margin-bottom: 2px;
}

@keyframes ill-blink { 0%, 80%, 100% { opacity: 0.25; } 40% { opacity: 1; } }
@keyframes ill-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: 0.6; } }
@keyframes ill-pop { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Footer — always visible so visitors know what each card is */
.anuyog-work-footer { padding: 16px 4px 2px; }
.anuyog-work-footer h4 {
  margin: 0 0 2px;
  font-size: 17px;
  font-weight: 600;
  color: var(--anuyog-heading);
}
.anuyog-work-footer span {
  font-size: 12px;
  color: var(--anuyog-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Compact overlay on mobile (descriptions less readable) — show shorter */
@media (max-width: 575px) {
  .anuyog-work-overlay ul { grid-template-columns: 1fr; }
  .anuyog-work-overlay h3 { font-size: 17px; }
}

/* ============================================================
   Values triptych
   ============================================================ */
.anuyog-values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 991px) { .anuyog-values { grid-template-columns: 1fr; } }

/* ============================================================
   Team grid
   ============================================================ */
.anuyog-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.anuyog-team-grid.is-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 991px) { .anuyog-team-grid,
                           .anuyog-team-grid.is-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .anuyog-team-grid,
                           .anuyog-team-grid.is-3 { grid-template-columns: 1fr; } }

.anuyog-team-card {
  background: var(--anuyog-surface);
  border: 1px solid var(--anuyog-border);
  border-radius: var(--anuyog-radius);
  overflow: hidden;
  box-shadow: var(--anuyog-shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: block;
  color: inherit;
}
.anuyog-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--anuyog-shadow);
  border-color: var(--anuyog-primary);
  color: inherit;
}
.anuyog-team-card-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--anuyog-surface-alt);
  position: relative;
}
.anuyog-team-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 20%;
  transition: transform .5s ease;
}
.anuyog-team-card:hover img { transform: scale(1.04); }
.anuyog-team-card-photo.is-initials {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--anuyog-primary), var(--anuyog-sky, #4aa3ff));
  color: #fff;
  font-family: var(--tj-ff-display);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: 1px;
}
.anuyog-team-card-body { padding: 22px; }
.anuyog-team-card-body h5 { margin: 0 0 4px; font-size: 19px; color: var(--anuyog-heading); }
.anuyog-team-card-body .role { color: var(--anuyog-primary); font-weight: 600; font-size: 14px; }
.anuyog-team-card-body .focus { margin: 10px 0 0; font-size: 14px; color: var(--anuyog-muted); }

/* Compact horizontal team card — for the full team directory */
.anuyog-team-grid.is-compact { grid-template-columns: repeat(3, 1fr); gap: 16px; }
.anuyog-team-grid.is-compact .anuyog-team-card {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 16px;
}
.anuyog-team-grid.is-compact .anuyog-team-card-photo {
  flex: 0 0 88px; width: 88px; height: 88px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}
.anuyog-team-grid.is-compact .anuyog-team-card-photo.is-initials {
  font-size: 26px;
}
.anuyog-team-grid.is-compact .anuyog-team-card-body {
  padding: 0; flex: 1; min-width: 0;
}
.anuyog-team-grid.is-compact .anuyog-team-card-body h5 {
  font-size: 16px; margin: 0 0 2px;
}
.anuyog-team-grid.is-compact .anuyog-team-card-body .role {
  font-size: 12px; display: block; margin-bottom: 4px;
}
.anuyog-team-grid.is-compact .anuyog-team-card-body .focus {
  font-size: 12px; margin: 0; line-height: 1.4;
}
@media (max-width: 991px) { .anuyog-team-grid.is-compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .anuyog-team-grid.is-compact { grid-template-columns: 1fr; } }

/* Non-link team cards: no pointer cursor, no hover lift */
div.anuyog-team-card { cursor: default; }
div.anuyog-team-card:hover { transform: none; border-color: var(--anuyog-border); box-shadow: var(--anuyog-shadow-sm); }
div.anuyog-team-card:hover img { transform: none; }

/* ============================================================
   Feature tiles (services overview / deliver sections)
   ============================================================ */
.anuyog-feature-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.anuyog-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px; border-radius: var(--anuyog-radius);
  background: var(--anuyog-surface); border: 1px solid var(--anuyog-border);
  box-shadow: var(--anuyog-shadow-sm);
  transition: all .25s ease;
  color: inherit;
}
.anuyog-feature:hover { border-color: var(--anuyog-primary); transform: translateY(-2px); color: inherit; }
.anuyog-feature .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--anuyog-primary-soft);
  color: var(--anuyog-primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  font-size: 18px;
}
.anuyog-feature h5 { margin: 0 0 4px; font-size: 17px; font-weight: 600; color: var(--anuyog-heading); }
.anuyog-feature p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--anuyog-body); }

/* ============================================================
   Testimonial
   ============================================================ */
.anuyog-testimonial {
  background: var(--anuyog-surface);
  border-radius: var(--anuyog-radius);
  padding: 34px 30px;
  border: 1px solid var(--anuyog-border);
  box-shadow: var(--anuyog-shadow-sm);
  position: relative;
  height: 100%;
}
.anuyog-testimonial .quote {
  color: var(--anuyog-primary); font-size: 32px; line-height: 1;
  margin-bottom: 14px; display: block;
}
.anuyog-testimonial p { color: var(--anuyog-body); font-size: 16px; line-height: 1.7; margin: 0 0 22px; }
.anuyog-testimonial-meta { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--anuyog-divider); }
.anuyog-testimonial-meta .name { font-weight: 600; color: var(--anuyog-heading); margin: 0; font-size: 15px; }
.anuyog-testimonial-meta .role { color: var(--anuyog-muted); font-size: 13px; }

/* ============================================================
   Skill bars (team detail)
   ============================================================ */
.anuyog-skill { margin-bottom: 20px; }
.anuyog-skill .top {
  display: flex; justify-content: space-between; margin-bottom: 6px;
  font-weight: 600; color: var(--anuyog-heading); font-size: 14px;
}
.anuyog-skill .bar {
  height: 6px; border-radius: 999px; background: var(--anuyog-divider); overflow: hidden;
}
.anuyog-skill .bar .fill {
  height: 100%; width: 0;
  background: var(--anuyog-gradient);
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.anuyog-skill.is-visible .bar .fill { width: var(--val, 80%); }

/* ============================================================
   Accordions (FAQ)
   ============================================================ */
.accordion-item {
  border: 1px solid var(--anuyog-border) !important;
  border-radius: var(--anuyog-radius) !important;
  margin-bottom: 12px;
  background: var(--anuyog-surface);
  overflow: hidden;
}
.accordion-button {
  border-radius: var(--anuyog-radius) !important;
  color: var(--anuyog-heading) !important;
  font-family: var(--tj-ff-display);
  font-weight: 600;
  font-size: 16px;
  padding: 18px 22px;
  background: var(--anuyog-surface);
}
.accordion-button:not(.collapsed) {
  background: var(--anuyog-primary-soft) !important;
  color: var(--anuyog-primary) !important;
  box-shadow: none;
}
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(37,99,235,0.12) !important; }
.accordion-body { padding: 20px 22px; color: var(--anuyog-body); line-height: 1.7; }

/* ============================================================
   Forms
   ============================================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea, select {
  width: 100%;
  border: 1px solid var(--anuyog-border) !important;
  border-radius: var(--anuyog-radius-sm);
  background: var(--anuyog-surface);
  color: var(--anuyog-heading);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--anuyog-primary) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

.anuyog-form {
  background: var(--anuyog-surface);
  border: 1px solid var(--anuyog-border);
  border-radius: var(--anuyog-radius-lg);
  padding: 34px;
  box-shadow: var(--anuyog-shadow-sm);
}
.anuyog-form label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 13px; color: var(--anuyog-heading); }
.anuyog-form .row { margin-bottom: 18px; }

/* ============================================================
   CTA card (used in footer partial)
   ============================================================ */
.anuyog-cta {
  padding: 40px 0 0;
  position: relative;
  z-index: 1;
}
.anuyog-cta-card {
  position: relative;
  background: var(--anuyog-gradient-dark);
  border-radius: var(--anuyog-radius-lg);
  padding: 60px;
  color: #fff;
  display: grid; grid-template-columns: minmax(0, 1.5fr) auto;
  align-items: center; gap: 36px;
  overflow: hidden;
  box-shadow: var(--anuyog-shadow-lg);
}
.anuyog-cta-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(400px 240px at 10% 20%, rgba(34,211,238,0.3), transparent 60%),
    radial-gradient(500px 300px at 90% 80%, rgba(96,165,250,0.3), transparent 60%);
  pointer-events: none;
}
.anuyog-cta-card > * { position: relative; z-index: 1; }
.anuyog-cta-title {
  font-family: var(--tj-ff-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.2;
  color: #fff;
  margin: 14px 0 10px;
}
.anuyog-cta-content p {
  color: rgba(255,255,255,0.78);
  margin: 0 0 4px;
  max-width: 560px;
}
@media (max-width: 767px) {
  .anuyog-cta-card { grid-template-columns: 1fr; padding: 40px 26px; text-align: center; }
  .anuyog-cta-card .anuyog-pill { margin: 0 auto; }
}

/* ============================================================
   Footer
   ============================================================ */
.anuyog-footer {
  background: var(--anuyog-navy);
  color: #b9c6e0;
  padding: 80px 0 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.anuyog-footer::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(500px 300px at 10% 0%, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(400px 260px at 90% 100%, rgba(34, 211, 238, 0.14), transparent 60%);
  pointer-events: none;
}
.anuyog-footer > * { position: relative; z-index: 1; }
.anuyog-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 991px) { .anuyog-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 575px) { .anuyog-footer-grid { grid-template-columns: 1fr; } }

.anuyog-footer-logo img { max-height: 56px; width: auto; margin-bottom: 18px; display: block; }
.anuyog-footer-brand p { color: #9aabc9; margin: 0 0 20px; max-width: 320px; line-height: 1.7; }
.anuyog-footer-social { display: flex; gap: 10px; }
.anuyog-footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: #b9c6e0; font-size: 14px;
  transition: all .25s ease;
}
.anuyog-footer-social a:hover { background: var(--anuyog-gradient); border-color: transparent; color: #fff; transform: translateY(-2px); }

.anuyog-footer-col h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.anuyog-footer-col ul { list-style: none; padding: 0; margin: 0; }
.anuyog-footer-col ul li { margin-bottom: 10px; }
.anuyog-footer-col ul li a,
.anuyog-footer-col ul li span {
  color: #9aabc9;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s ease;
}
.anuyog-footer-col ul li a:hover { color: var(--anuyog-cyan); }
.anuyog-footer-col ul li i { color: var(--anuyog-sky); font-size: 13px; flex: 0 0 auto; }

.anuyog-footer-subscribe {
  display: flex; gap: 0; margin-top: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
  padding: 4px;
}
.anuyog-footer-subscribe input {
  flex: 1; background: transparent; border: 0 !important;
  color: #fff !important; padding: 10px 16px !important; font-size: 14px;
}
.anuyog-footer-subscribe input::placeholder { color: #7b8aae; }
.anuyog-footer-subscribe input:focus { box-shadow: none !important; }
.anuyog-footer-subscribe button {
  background: var(--anuyog-gradient);
  color: #fff; border: 0;
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.anuyog-footer-subscribe button:hover { transform: translateX(2px); }

.anuyog-footer-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: #7b8aae;
}
.anuyog-footer-bar a { color: #9aabc9; }
.anuyog-footer-bar a:hover { color: var(--anuyog-cyan); }
.anuyog-footer-bar p { margin: 0; }

/* ============================================================
   Back to top
   ============================================================ */
#tj-back-to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 50;
  width: 46px; height: 46px; border-radius: 50%;
  border: 0;
  background: var(--anuyog-gradient);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  box-shadow: 0 10px 24px -10px rgba(37,99,235,0.55);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
#tj-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
#tj-back-to-top::before {
  content: "\f077"; font-family: "Font Awesome 6 Pro"; font-weight: 300;
}
#tj-back-to-top-percentage { display: none; }

/* ============================================================
   Reveal animation
   ============================================================ */
.anuyog-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.anuyog-reveal.is-visible { opacity: 1; transform: translateY(0); }
.anuyog-reveal.delay-1 { transition-delay: .1s; }
.anuyog-reveal.delay-2 { transition-delay: .2s; }
.anuyog-reveal.delay-3 { transition-delay: .3s; }
.anuyog-reveal.delay-4 { transition-delay: .4s; }

/* ============================================================
   Utilities
   ============================================================ */
.anuyog-text-center { text-align: center; }
.anuyog-mt-sm { margin-top: 18px; }
.anuyog-mt-md { margin-top: 36px; }
.anuyog-mt-lg { margin-top: 60px; }
.bg-soft { background: var(--anuyog-surface-alt); }
.bg-navy { background: var(--anuyog-navy); color: #fff; }
.text-gradient {
  background: var(--anuyog-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   Fix Bexon leftovers that might leak
   ============================================================ */
.tj-cta-section { display: none; }  /* replaced by .anuyog-cta */
.tj-footer-section { display: none; } /* replaced by .anuyog-footer */
.tj-page-header-content { max-width: 760px; margin: 0 auto; }
.body-overlay { display: none; }
