/*
Theme Name:   Global Unique IT Solutions
Theme URI:    https://globaluniqueitsolutions.com
Description:  Custom Astra child theme for Global Unique IT Solutions. Hand coded templates, no page builders.
Author:       Global Unique IT Solutions
Template:     astra
Version:      1.4.0
Text Domain:  gu-child
*/

/* ==========================================================================
   1. BRAND SYSTEM
   ========================================================================== */

:root {
  /* Colors */
  --gu-navy:        #0F2557;
  --gu-blue:        #1B5FE8;
  --gu-blue-bright: #2E7BFF;
  --gu-ink:         #0B1220;
  --gu-body:        #4A5568;
  --gu-muted:       #64748B;
  --gu-line:        #E2E8F0;
  --gu-bg-soft:     #F5F7FB;
  --gu-white:       #FFFFFF;

  /* Gradient */
  --gu-gradient: linear-gradient(135deg, #1B5FE8, #2E7BFF);

  /* Typography scale */
  --gu-font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Inter', Roboto, Helvetica, Arial, sans-serif;
  --gu-fs-h1: clamp(2.125rem, 1.4rem + 3vw, 3.5rem);
  --gu-fs-h2: clamp(1.75rem, 1.3rem + 1.8vw, 2.5rem);
  --gu-fs-h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --gu-fs-h4: 1.125rem;
  --gu-fs-body: 1rem;
  --gu-fs-lg: 1.125rem;
  --gu-fs-sm: 0.9375rem;
  --gu-fs-xs: 0.8125rem;

  /* Spacing */
  --gu-section-pad: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
  --gu-gap: 1.5rem;

  /* Layout */
  --gu-container: 1200px;
  --gu-container-narrow: 800px;

  /* Radius and shadow */
  --gu-radius: 14px;
  --gu-radius-sm: 10px;
  --gu-shadow-sm: 0 1px 3px rgba(15, 37, 87, 0.08);
  --gu-shadow-md: 0 6px 24px rgba(15, 37, 87, 0.10);
  --gu-shadow-lg: 0 16px 48px rgba(15, 37, 87, 0.16);

  /* Motion */
  --gu-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gu-speed: 0.6s;
}

/* ==========================================================================
   2. BASE
   ========================================================================== */

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--gu-font);
  font-size: var(--gu-fs-body);
  line-height: 1.7;
  color: var(--gu-body);
  background: var(--gu-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gu-font);
  color: var(--gu-ink);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 0.6em;
  overflow-wrap: break-word;
}

h1 { font-size: var(--gu-fs-h1); letter-spacing: -0.02em; }
h2 { font-size: var(--gu-fs-h2); letter-spacing: -0.015em; }
h3 { font-size: var(--gu-fs-h3); }
h4 { font-size: var(--gu-fs-h4); }

p {
  margin: 0 0 1.25em;
}

a {
  color: var(--gu-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gu-blue-bright);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   3. LAYOUT HELPERS
   ========================================================================== */

.gu-container {
  max-width: var(--gu-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.gu-container-narrow {
  max-width: var(--gu-container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.gu-section {
  padding-top: var(--gu-section-pad);
  padding-bottom: var(--gu-section-pad);
}

.gu-section-soft {
  background: var(--gu-bg-soft);
}

.gu-section-navy {
  background: var(--gu-navy);
}

.gu-section-navy h1,
.gu-section-navy h2,
.gu-section-navy h3,
.gu-section-navy h4 {
  color: var(--gu-white);
}

.gu-section-navy p {
  color: rgba(255, 255, 255, 0.82);
}

/* Section intro block */
.gu-section-head {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}

.gu-kicker {
  display: inline-block;
  font-size: var(--gu-fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gu-blue);
  margin-bottom: 0.75rem;
}

.gu-section-head p {
  color: var(--gu-muted);
  font-size: var(--gu-fs-lg);
  margin-bottom: 0;
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */

.gu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--gu-font);
  font-size: var(--gu-fs-body);
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--gu-ease), box-shadow 0.2s var(--gu-ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.gu-btn svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.gu-btn-primary {
  background: var(--gu-gradient);
  color: var(--gu-white);
  box-shadow: 0 4px 16px rgba(27, 95, 232, 0.35);
}

.gu-btn-primary:hover {
  color: var(--gu-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 95, 232, 0.45);
}

.gu-btn-outline {
  background: transparent;
  color: var(--gu-blue);
  border-color: var(--gu-blue);
}

.gu-btn-outline:hover {
  background: var(--gu-blue);
  color: var(--gu-white);
  transform: translateY(-2px);
}

.gu-btn-white {
  background: var(--gu-white);
  color: var(--gu-navy);
}

.gu-btn-white:hover {
  color: var(--gu-blue);
  transform: translateY(-2px);
  box-shadow: var(--gu-shadow-md);
}

/* ==========================================================================
   5. CARDS
   ========================================================================== */

.gu-card {
  background: var(--gu-white);
  border: 1px solid var(--gu-line);
  border-radius: var(--gu-radius);
  padding: 2rem;
  box-shadow: var(--gu-shadow-sm);
  transition: transform 0.3s var(--gu-ease), box-shadow 0.3s var(--gu-ease), border-color 0.3s ease;
}

.gu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gu-shadow-lg);
  border-color: rgba(27, 95, 232, 0.25);
}

.gu-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--gu-radius-sm);
  background: var(--gu-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.gu-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gu-white);
}

/* ==========================================================================
   6. SCROLL REVEAL (JS adds .is-visible)
   ========================================================================== */

.gu-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--gu-speed) var(--gu-ease), transform var(--gu-speed) var(--gu-ease);
}

.gu-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gu-reveal-delay-1 { transition-delay: 0.1s; }
.gu-reveal-delay-2 { transition-delay: 0.2s; }
.gu-reveal-delay-3 { transition-delay: 0.3s; }
.gu-reveal-delay-4 { transition-delay: 0.4s; }

/* Progress bars fill when .is-visible added */
.gu-progress {
  background: var(--gu-line);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.gu-progress-bar {
  height: 100%;
  width: 0;
  background: var(--gu-gradient);
  border-radius: 999px;
  transition: width 1.2s var(--gu-ease);
}

.gu-progress.is-visible .gu-progress-bar {
  width: var(--gu-progress-value, 100%);
}

/* ==========================================================================
   7. ACCESSIBILITY AND MOTION
   ========================================================================== */

:focus-visible {
  outline: 3px solid var(--gu-blue-bright);
  outline-offset: 2px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .gu-reveal {
    opacity: 1;
    transform: none;
  }
  .gu-progress .gu-progress-bar {
    width: var(--gu-progress-value, 100%);
  }
}

/* ==========================================================================
   8. SMALL SCREENS (down to 360px)
   ========================================================================== */

@media (max-width: 480px) {
  .gu-container,
  .gu-container-narrow {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .gu-card {
    padding: 1.5rem;
  }

  .gu-btn {
    width: 100%;
  }

  .gu-btn + .gu-btn {
    margin-top: 0.75rem;
  }
}

/* ==========================================================================
   9. HEADER SYSTEM (topbar + glass sticky header + mega menu + mobile nav)
   ========================================================================== */

:root {
  --header-h: 80px;
  --header-h-scrolled: 64px;
}

/* Header system resets: browser aur Astra ke default spacing cancel */
.gu-topbar,
.gu-topbar *,
.gu-header,
.gu-header *,
.gu-nav,
.gu-nav * {
  box-sizing: border-box;
}

.gu-nav ul,
.gu-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gu-nav li {
  margin: 0;
  padding: 0;
}

/* Fixed header ke neeche content offset */
body {
  padding-top: calc(var(--topbar-h, 40px) + var(--header-h));
}

@media (max-width: 992px) {
  body { padding-top: var(--header-h); }
}

/* ==========================================================================
   10. FOOTER SYSTEM (glass panel, map, floating buttons)
   ========================================================================== */

/* Footer resets: browser aur Astra ke default bullets aur spacing cancel */
.gu-footer,
.gu-footer * {
  box-sizing: border-box;
}

.gu-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gu-footer li {
  list-style: none;
}

.gu-footer p {
  margin-top: 0;
}

/* ==========================================================================
   MAIN FOOTER
   ========================================================================== */
.gu-footer {
  position: relative;
  background:
    radial-gradient(ellipse 50% 40% at 15% 0%, rgba(46, 123, 255, 0.12), transparent),
    radial-gradient(ellipse 40% 35% at 90% 100%, rgba(27, 95, 232, 0.1), transparent),
    linear-gradient(180deg, #0C1E47, var(--gu-navy));
  overflow: hidden;
}

/* Gradient top line */
.gu-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2E7BFF, #1B5FE8, transparent);
}

/* Dot pattern */
.gu-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.gu-footer-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2.5rem;
}

.gu-footer-inner {
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  box-shadow: 0 8px 40px rgba(5, 15, 40, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 2.75rem 2.5rem;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1fr 1.35fr;
  gap: 2.75rem;
}

/* Column 1: brand */
.gu-footer-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.1rem;
}

.gu-footer-about {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  margin-bottom: 1.4rem;
  max-width: 300px;
}

.gu-footer-social {
  display: flex;
  gap: 0.5rem;
}

.gu-footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 123, 255, 0.15);
  border: 1px solid rgba(46, 123, 255, 0.25);
  box-shadow: 0 0 12px rgba(46, 123, 255, 0.2);
  transition: background 0.25s ease, transform 0.25s var(--gu-ease), box-shadow 0.25s ease;
}

.gu-footer-social a:hover {
  background: var(--gu-gradient);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(46, 123, 255, 0.6);
}

.gu-footer-social svg {
  width: 17px; height: 17px;
  stroke: #FFFFFF;
  fill: none;
}

/* Column headings */
.gu-footer h4 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.gu-footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 3px;
  border-radius: 999px;
  background: var(--gu-gradient);
  box-shadow: 0 0 8px rgba(46, 123, 255, 0.6);
}

/* Link lists */
.gu-footer-links li { margin-bottom: 0.55rem; }

.gu-footer-links a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color 0.2s ease, transform 0.25s var(--gu-ease);
}

.gu-footer-links a svg {
  position: absolute;
  left: -18px;
  top: 50%;
  width: 13px; height: 13px;
  stroke: var(--gu-blue-bright);
  opacity: 0;
  transform: translateY(-50%) translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s var(--gu-ease);
}

.gu-footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(18px);
}

.gu-footer-links a:hover svg {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Map card */
.gu-footer-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(46, 123, 255, 0.35);
  box-shadow: 0 0 20px rgba(46, 123, 255, 0.25);
  margin-bottom: 1.1rem;
  line-height: 0;
}

.gu-footer-map iframe {
  width: 100%;
  height: 150px;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

/* Contact column */
.gu-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
}

.gu-footer-contact a { color: rgba(255, 255, 255, 0.72); transition: color 0.2s ease; }
.gu-footer-contact a:hover { color: #FFFFFF; }

.gu-footer-contact .ficon {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: rgba(46, 123, 255, 0.15);
  border: 1px solid rgba(46, 123, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(46, 123, 255, 0.2);
}

.gu-footer-contact .ficon svg {
  width: 15px; height: 15px;
  stroke: #9CC4FF;
  fill: none;
  filter: drop-shadow(0 0 4px rgba(46, 123, 255, 0.7));
}

/* Bottom bar */
.gu-footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gu-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 110px 1.4rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.gu-footer-bottom p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}

.gu-footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.gu-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.gu-footer-bottom-links a:hover { color: #FFFFFF; }

/* ==========================================================================
   FLOATING: WHATSAPP + BACK TO TOP
   ========================================================================== */
.gu-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1DA851);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: transform 0.25s var(--gu-ease), box-shadow 0.25s ease;
}

.gu-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: gu-wa-pulse 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes gu-wa-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

.gu-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

.gu-whatsapp svg { width: 30px; height: 30px; fill: #FFFFFF; }

.gu-backtop {
  position: fixed;
  right: 1.4rem;
  bottom: 6rem;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(15, 37, 87, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(46, 123, 255, 0.35);
  box-shadow: 0 0 16px rgba(46, 123, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s var(--gu-ease), visibility 0.3s, background 0.2s ease;
}

.gu-backtop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gu-backtop:hover { background: var(--gu-blue); }

.gu-backtop svg { width: 18px; height: 18px; stroke: #FFFFFF !important; fill: none !important; }

/* Astra ka apna scroll to top button hide: hum apna gu-backtop use karte hain */
#ast-scroll-top,
.ast-scroll-top-icon,
.ast-scroll-to-top-right {
  display: none !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .gu-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
    padding: 2.25rem 1.75rem;
  }
}

@media (max-width: 560px) {
  .gu-footer-wrap { padding: 2.5rem 0.9rem 2rem; }

  .gu-footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.75rem 1.25rem;
  }

  .gu-footer-about { max-width: none; }

  .gu-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.4rem 1rem 5.5rem;
  }

  .gu-whatsapp { width: 52px; height: 52px; }
}

/* ============ TOPBAR (sirf desktop, scroll par hide) ============ */
:root { --topbar-h: 40px; }

.gu-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: linear-gradient(90deg, #0F2557, #143070);
  z-index: 1000;
  transition: transform 0.35s var(--gu-ease), opacity 0.3s ease;
}

.gu-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gu-topbar a,
.gu-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.gu-topbar a:hover { color: #FFFFFF; }

.gu-topbar svg {
  width: 14px; height: 14px;
  stroke: #9CC4FF;
  fill: none;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(46, 123, 255, 0.8));
}

.gu-topbar-left,
.gu-topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.gu-topbar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

/* Social icons */
.gu-topbar-social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gu-topbar-social a {
  width: 26px; height: 26px;
  border-radius: 7px;
  justify-content: center;
  background: rgba(46, 123, 255, 0.2);
  box-shadow: 0 0 10px rgba(46, 123, 255, 0.35);
  transition: background 0.2s ease, transform 0.2s var(--gu-ease), box-shadow 0.2s ease;
}

.gu-topbar-social a:hover {
  background: var(--gu-blue);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(46, 123, 255, 0.7);
}

.gu-topbar-social svg {
  width: 13px; height: 13px;
  stroke: #FFFFFF !important;
  fill: none !important;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

/* Scroll par topbar upar slide ho kar hide */
body.gu-scrolled .gu-topbar {
  transform: translateY(-100%);
  opacity: 0;
}

/* Mobile par topbar bilkul nahi */
@media (max-width: 992px) {
  .gu-topbar { display: none; }
}

/* ============ HEADER ============ */
.gu-header {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: height 0.3s var(--gu-ease), box-shadow 0.3s ease, border-color 0.3s ease, top 0.35s var(--gu-ease);
  height: var(--header-h);
}

body.gu-scrolled .gu-header { top: 0; }

@media (max-width: 992px) {
  .gu-header { top: 0; }
}

/* Glass layer alag pseudo par, taake mobile overlay poori screen le sake */
.gu-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  transition: background 0.35s ease;
  z-index: 0;
}

/* Scroll par: zyada transparent, zyada blur, premium glass */
.gu-header-scrolled::before {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(200%) blur(20px);
  -webkit-backdrop-filter: saturate(200%) blur(20px);
}

.gu-header-inner { position: relative; z-index: 2; }

.gu-header-scrolled {
  height: var(--header-h-scrolled);
  border-bottom-color: var(--gu-line);
  box-shadow: 0 4px 24px rgba(15, 37, 87, 0.08);
}

.gu-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.gu-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.gu-logo img {
  height: 46px;
  width: auto;
  transition: height 0.3s var(--gu-ease), transform 0.3s var(--gu-ease), filter 0.3s ease;
}

.gu-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(27, 95, 232, 0.25));
}
.gu-header-scrolled .gu-logo img { height: 38px; }

/* ============ DESKTOP NAV ============ */
.gu-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.gu-nav > ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}

.gu-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gu-ink);
  border-radius: 8px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

.gu-nav a:hover {
  color: var(--gu-blue);
  background: rgba(27, 95, 232, 0.06);
}

/* Animated underline: hover par left se slide */
.gu-nav > ul > li > a::before {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem;
  bottom: 0.2rem;
  height: 3px;
  border-radius: 999px;
  background: var(--gu-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--gu-ease);
}

.gu-nav > ul > li > a:hover::before {
  transform: scaleX(1);
}

/* Click par press effect */
.gu-nav a:active {
  transform: scale(0.96);
}

/* Click par pop pulse animation */
@keyframes gu-nav-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(0.94); }
  70%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.gu-nav a.gu-clicked {
  animation: gu-nav-pop 0.35s var(--gu-ease);
}

/* Active page gradient underline */
.gu-nav .is-active > a::before { display: none; }
.gu-nav .is-active > a::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem;
  bottom: 0.2rem;
  height: 3px;
  border-radius: 999px;
  background: var(--gu-gradient);
}
.gu-nav .is-active > a { color: var(--gu-blue); }

/* Dropdown */
.gu-has-dropdown { position: relative; }

.gu-has-dropdown > a svg {
  width: 12px; height: 12px;
  stroke: currentColor;
  transition: transform 0.25s var(--gu-ease);
}
.gu-has-dropdown:hover > a svg,
.gu-has-dropdown.is-open-desk > a svg { transform: rotate(180deg); }

.gu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  background: var(--gu-white);
  border: 1px solid var(--gu-line);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(15, 37, 87, 0.14);
  padding: 0.5rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--gu-ease), transform 0.25s var(--gu-ease), visibility 0.25s;
}

.gu-dropdown li {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--gu-ease), transform 0.3s var(--gu-ease);
}

.gu-has-dropdown:hover .gu-dropdown li,
.gu-has-dropdown.is-open-desk .gu-dropdown li,
.gu-has-dropdown:focus-within .gu-dropdown li {
  opacity: 1;
  transform: translateY(0);
}

.gu-dropdown li:nth-child(1) { transition-delay: 0.03s; }
.gu-dropdown li:nth-child(2) { transition-delay: 0.06s; }
.gu-dropdown li:nth-child(3) { transition-delay: 0.09s; }
.gu-dropdown li:nth-child(4) { transition-delay: 0.12s; }
.gu-dropdown li:nth-child(5) { transition-delay: 0.15s; }
.gu-dropdown li:nth-child(6) { transition-delay: 0.18s; }

.gu-has-dropdown:hover .gu-dropdown,
.gu-has-dropdown.is-open-desk .gu-dropdown,
.gu-has-dropdown:focus-within .gu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.gu-dropdown::before {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}

.gu-dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0.85rem;
  border-radius: 11px;
  color: var(--gu-ink);
  width: 100%;
  transition: background 0.2s ease;
}

.gu-dropdown a:hover {
  background: var(--gu-bg-soft);
}

.gu-dd-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(27, 95, 232, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.gu-dd-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gu-blue);
  fill: none;
  transition: stroke 0.25s ease;
}

.gu-dropdown a:hover .gu-dd-icon {
  background: var(--gu-gradient);
}

.gu-dropdown a:hover .gu-dd-icon svg {
  stroke: #FFFFFF;
}

.gu-dd-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.gu-dd-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gu-ink);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.gu-dropdown a:hover .gu-dd-title { color: var(--gu-blue); }

.gu-dd-desc {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gu-muted);
  line-height: 1.45;
}

/* CTA button */
.gu-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  background: var(--gu-gradient);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  box-shadow:
    0 4px 16px rgba(27, 95, 232, 0.4),
    0 0 24px rgba(46, 123, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.2s var(--gu-ease), box-shadow 0.2s var(--gu-ease);
  white-space: nowrap;
  flex-shrink: 0;
  text-shadow: 0 1px 2px rgba(15, 37, 87, 0.3);
}

/* Har state mein text white rahe (Astra ke link colors cancel) */
.gu-header-cta,
.gu-header-cta:link,
.gu-header-cta:visited,
.gu-header-cta:hover,
.gu-header-cta:focus,
.gu-header-cta:active {
  color: #FFFFFF;
  text-decoration: none;
}

.gu-header-cta:hover,
.gu-header-cta:focus {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(27, 95, 232, 0.5),
    0 0 36px rgba(46, 123, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.gu-header-cta:active {
  transform: translateY(0) scale(0.98);
}

.gu-header-cta svg {
  width: 15px; height: 15px;
  stroke: currentColor;
  transition: transform 0.2s var(--gu-ease);
}
.gu-header-cta:hover svg { transform: translateX(3px); }

/* Mobile CTA sirf mobile overlay mein dikhe */
.gu-header-cta.gu-mobile-cta { display: none; }

/* ============ MOBILE ============ */
.gu-nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--gu-line);
  border-radius: 10px;
  background: var(--gu-white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
}

.gu-nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--gu-ink);
  transition: transform 0.3s var(--gu-ease), opacity 0.2s ease;
}

.gu-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gu-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gu-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px) {
  .gu-nav-toggle { display: flex; }

  .gu-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: auto;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 37, 87, 0.88);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--header-h) + 0.5rem) 1.25rem 2rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--gu-ease);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1001;
  }

  .gu-nav.is-open { transform: translateX(0); }

  /* Glow accents behind glass */
  .gu-nav::after {
    content: "";
    position: fixed;
    top: -10%;
    right: -20%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 123, 255, 0.25), transparent 65%);
    pointer-events: none;
    z-index: 0;
  }

  .gu-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .gu-nav > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .gu-nav > ul > li:last-child { border-bottom: none; }

  .gu-nav a {
    display: flex;
    width: 100%;
    color: var(--gu-white);
    font-size: 1.1rem;
    padding: 1rem 0.5rem;
    border-radius: 10px;
    justify-content: flex-start;
    text-align: left;
  }

  .gu-has-dropdown > a { justify-content: space-between; }

  .gu-nav a:hover,
  .gu-nav a:active {
    background: rgba(46, 123, 255, 0.16);
    color: var(--gu-white);
  }

  .gu-nav .is-active > a { color: var(--gu-blue-bright); }
  .gu-nav .is-active > a::after,
  .gu-nav > ul > li > a::before { display: none; }

  /* Sub menu: glassy card, left accent, slide open */
  .gu-dropdown {
    position: static;
    left: auto;
    transform: none;
    width: 100%;
    min-width: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 2px;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--gu-blue-bright);
    border-radius: 0 12px 12px 0;
    box-shadow: none;
    padding: 0.45rem;
    margin: 0 0 0.9rem 0.35rem;
    overflow: hidden;
  }

  .gu-has-dropdown.is-open-sub .gu-dropdown {
    display: grid;
    animation: gu-sub-open 0.35s var(--gu-ease);
  }

  /* Desktop transform rules mobile par cancel (click/focus par side shift ka fix) */
  .gu-has-dropdown:hover .gu-dropdown,
  .gu-has-dropdown:focus-within .gu-dropdown,
  .gu-has-dropdown.is-open-desk .gu-dropdown {
    transform: none;
  }

  @keyframes gu-sub-open {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .gu-dropdown li {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gu-dropdown a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    padding: 0.6rem 0.6rem;
    justify-content: flex-start;
    align-items: center;
    border-radius: 8px;
  }

  .gu-dd-desc { display: none; }

  .gu-dd-icon {
    width: 34px; height: 34px;
    background: rgba(46, 123, 255, 0.18);
  }

  .gu-dd-icon svg { stroke: var(--gu-blue-bright); }

  .gu-dd-title { color: rgba(255, 255, 255, 0.92); font-weight: 600; }

  .gu-dropdown a:hover .gu-dd-title,
  .gu-dropdown a:active .gu-dd-title { color: #FFFFFF; }

  .gu-dropdown a:hover,
  .gu-dropdown a:active {
    color: var(--gu-white);
    background: rgba(46, 123, 255, 0.2);
  }

  .gu-has-dropdown.is-open-sub > a svg { transform: rotate(180deg); }

  .gu-header-cta.gu-mobile-cta {
    margin-top: 1.5rem;
    display: inline-flex;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  body.gu-nav-locked { overflow: hidden; }

  /* Hamburger X: white when menu open (navy bg ke upar) */
  .gu-nav-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
  }
  .gu-nav-toggle[aria-expanded="true"] span { background: var(--gu-white); }
}

/* mobile CTA sirf mobile overlay mein */

@media (max-width: 480px) {
  .gu-logo img { height: 38px; }
  .gu-header-scrolled .gu-logo img { height: 34px; }
  .gu-header-inner { padding: 0 1rem; }
  .gu-desktop-cta { display: none; }
}

/* ==========================================================================
   11. HOME PAGE SECTIONS
   Hero, Feature bar, Marquee, Services, Comparison, Process, Expertise, FAQ, CTA
   ========================================================================== */


/* ==================== HERO + FEATURE BAR + MARQUEE ==================== */



/* Home page scoped reset: Astra ke defaults home sections par asar na karein */
.gu-home,
.gu-home *,
.gu-home *::before,
.gu-home *::after { box-sizing: border-box; }

.gu-home * { margin: 0; padding: 0; }

.gu-home {
  font-family: var(--gu-font);
  color: var(--gu-body);
  line-height: 1.7;
  letter-spacing: -0.011em;
}

.gu-home img { max-width: 100%; height: auto; display: block; }
.gu-home a { text-decoration: none; }
.gu-home ul, .gu-home ol { list-style: none; }
.gu-home button { font-family: inherit; }

.gu-hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h, 40px) - var(--header-h));
  display: flex; align-items: center;
  padding: 3rem 2.5rem 3rem; overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 10% 5%, rgba(46,123,255,0.10), transparent 60%),
    radial-gradient(ellipse 55% 50% at 95% 95%, rgba(27,95,232,0.10), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #EEF3FB 100%);
}

.gu-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.gu-hero-bg .orb { position: absolute; border-radius: 50%; filter: blur(85px); opacity: 0.5; animation: gu-float 16s ease-in-out infinite; }
.gu-hero-bg .orb1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(46,123,255,0.32), transparent 70%); top: -110px; left: -70px; }
.gu-hero-bg .orb2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(27,95,232,0.24), transparent 70%); bottom: -160px; right: -90px; animation-delay: -6s; }
@keyframes gu-float { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(34px,-24px) scale(1.05);} 66%{transform:translate(-24px,20px) scale(0.96);} }

.gu-hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(15,37,87,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(15,37,87,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 55% at 45% 40%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 55% at 45% 40%, #000 35%, transparent 100%);
}

.gu-hero-inner {
  position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.gu-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.95rem 0.4rem 0.45rem;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(10px);
  border: 1px solid var(--gu-line); border-radius: 999px;
  font-size: 0.8125rem; font-weight: 600; color: var(--gu-navy);
  margin-bottom: 1.6rem; box-shadow: 0 2px 10px rgba(15,37,87,0.05);
  opacity: 0; animation: gu-rise 0.7s var(--gu-ease) forwards;
}
.gu-hero-badge .pill { display: inline-flex; align-items: center; gap: 0.35rem; background: var(--gu-gradient); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.22rem 0.65rem; border-radius: 999px; }
.gu-hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: gu-blink 2s ease-in-out infinite; }
@keyframes gu-blink { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.gu-hero h1 {
  color: var(--gu-navy);
  font-size: clamp(1.9rem, 1.3rem + 2.3vw, 2.9rem);
  line-height: 1.22; letter-spacing: -0.03em; font-weight: 600;
  margin-bottom: 1.4rem;
  opacity: 0; animation: gu-rise 0.7s var(--gu-ease) 0.1s forwards;
}

/* Rotating word */
.gu-rotate {
  display: inline-block;
  vertical-align: baseline;
  color: #2E7BFF;
  font-weight: 700;
  transition: opacity 0.35s ease, transform 0.35s var(--gu-ease);
}
.gu-rotate.swap {
  opacity: 0;
  transform: translateY(-8px);
}

.gu-hero-sub { color: var(--gu-body); font-size: clamp(1rem,0.95rem + 0.3vw,1.125rem); line-height: 1.75; max-width: 520px; margin-bottom: 2.1rem; opacity: 0; animation: gu-rise 0.8s var(--gu-ease) 0.34s forwards; }

.gu-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; opacity: 0; animation: gu-rise 0.8s var(--gu-ease) 0.46s forwards; }
.gu-btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.9rem; font-size: 1rem; font-weight: 700;
  border-radius: 12px; cursor: pointer; overflow: hidden;
  transition: transform 0.25s var(--gu-ease), box-shadow 0.25s var(--gu-ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.gu-btn svg { width: 17px; height: 17px; transition: transform 0.25s var(--gu-ease); position: relative; z-index: 1; }
.gu-btn span { position: relative; z-index: 1; }

/* Shine sweep on hover */
.gu-btn::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg); transition: left 0.6s var(--gu-ease);
}
.gu-btn:hover::before { left: 130%; }

.gu-btn-primary { color: #fff; background: var(--gu-gradient); box-shadow: 0 6px 20px rgba(27,95,232,0.35); stroke: #fff; }
.gu-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(27,95,232,0.5); }
.gu-btn-primary:hover svg { transform: translateX(4px); }
.gu-btn-ghost { color: var(--gu-navy); background: #fff; border: 1px solid var(--gu-line); box-shadow: 0 2px 10px rgba(15,37,87,0.05); stroke: var(--gu-navy); }
.gu-btn-ghost:hover { transform: translateY(-3px); border-color: var(--gu-blue); color: var(--gu-blue); stroke: var(--gu-blue); box-shadow: 0 10px 24px rgba(27,95,232,0.15); }
.gu-btn:active { transform: translateY(-1px) scale(0.98); }

.gu-hero-trust { display: flex; flex-wrap: wrap; gap: 0.9rem 1.6rem; opacity: 0; animation: gu-rise 0.8s var(--gu-ease) 0.58s forwards; }
.gu-hero-trust .item { display: flex; align-items: center; gap: 0.5rem; color: var(--gu-navy); font-size: 0.875rem; font-weight: 600; }
.gu-hero-trust .item .chk { width: 20px; height: 20px; border-radius: 50%; background: rgba(27,95,232,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gu-hero-trust .item .chk svg { width: 12px; height: 12px; stroke: var(--gu-blue); }

/* ==========================================================================
   DASHBOARD MOCKUP
   ========================================================================== */
.gu-hero-visual {
  position: relative; opacity: 0; animation: gu-rise 0.9s var(--gu-ease) 0.4s forwards;
  perspective: 1400px;
  padding: 40px 44px;
  max-width: 100%;
}
.gu-hero-visual::before {
  content: ""; position: absolute; top: 50%; left: 50%; width: 320px; height: 320px;
  transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(46,123,255,0.2), transparent 65%); filter: blur(24px);
}

.gu-dash {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(15,37,87,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
  padding: 1.25rem;
  transform: rotateY(-6deg) rotateX(2deg);
}

.gu-dash-top { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 1rem; }
.gu-dash-top .dot { width: 10px; height: 10px; border-radius: 50%; }
.gu-dash-top .r { background: #FF5F57; } .gu-dash-top .y { background: #FEBC2E; } .gu-dash-top .g { background: #28C840; }
.gu-dash-top .title { margin-left: auto; font-size: 0.75rem; color: var(--gu-muted); font-weight: 600; }

.gu-dash-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0.85rem; }

.gu-dpanel { background: #fff; border: 1px solid var(--gu-line); border-radius: 14px; padding: 1rem; }
.gu-dpanel .h { font-size: 0.7rem; color: var(--gu-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }

/* Animated line chart */
.gu-chart { height: 90px; position: relative; }
.gu-chart svg { width: 100%; height: 100%; overflow: visible; }
.gu-chart .area { fill: url(#gGrad); opacity: 0; animation: gu-fade 1s ease 1.1s forwards; }
.gu-chart .linePath {
  fill: none; stroke: url(#gLine); stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 300; stroke-dashoffset: 300;
  animation: gu-draw 1.6s var(--gu-ease) 0.9s forwards;
}
.gu-chart .pt { opacity: 0; animation: gu-pop 0.4s var(--gu-ease) forwards; }
.gu-chart .pt1 { animation-delay: 1.7s; } .gu-chart .pt2 { animation-delay: 1.85s; } .gu-chart .pt3 { animation-delay: 2s; }
@keyframes gu-draw { to { stroke-dashoffset: 0; } }
@keyframes gu-fade { to { opacity: 1; } }
@keyframes gu-pop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

/* Animated bars */
.gu-bars { display: flex; align-items: flex-end; gap: 0.5rem; height: 90px; }
.gu-bars .bar { flex: 1; background: var(--gu-gradient); border-radius: 6px 6px 0 0; height: 0; animation: gu-grow 1s var(--gu-ease) forwards; opacity: 0.9; }
.gu-bars .bar:nth-child(1) { animation-delay: 1s; --h: 45%; }
.gu-bars .bar:nth-child(2) { animation-delay: 1.15s; --h: 72%; }
.gu-bars .bar:nth-child(3) { animation-delay: 1.3s; --h: 55%; }
.gu-bars .bar:nth-child(4) { animation-delay: 1.45s; --h: 90%; }
.gu-bars .bar:nth-child(5) { animation-delay: 1.6s; --h: 65%; }
@keyframes gu-grow { to { height: var(--h); } }

/* Progress rows */
.gu-rows { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.4rem; }
.gu-row .top { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--gu-muted); margin-bottom: 0.3rem; }
.gu-row .track { height: 6px; background: var(--gu-bg-soft); border-radius: 999px; overflow: hidden; }
.gu-row .fill { height: 100%; background: var(--gu-gradient); border-radius: 999px; width: 0; animation: gu-fill 1.4s var(--gu-ease) forwards; }
.gu-row:nth-child(1) .fill { --w: 85%; animation-delay: 1.2s; }
.gu-row:nth-child(2) .fill { --w: 68%; animation-delay: 1.4s; }
.gu-row:nth-child(3) .fill { --w: 92%; animation-delay: 1.6s; }
@keyframes gu-fill { to { width: var(--w); } }

.gu-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.85rem; }
.gu-mini { background: #fff; border: 1px solid var(--gu-line); border-radius: 11px; padding: 0.7rem 0.8rem; display: flex; align-items: center; gap: 0.55rem; }
.gu-mini .mi { width: 30px; height: 30px; border-radius: 8px; background: rgba(27,95,232,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gu-mini .mi svg { width: 15px; height: 15px; stroke: var(--gu-blue); fill: none; }
.gu-mini .mt { font-size: 0.72rem; font-weight: 700; color: var(--gu-ink); line-height: 1.2; }

/* Floating outer cards */
.gu-fcard {
  position: absolute; z-index: 3;
  max-width: 190px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 14px; padding: 0.75rem 0.9rem;
  box-shadow: 0 14px 40px rgba(15,37,87,0.16);
  display: flex; align-items: center; gap: 0.6rem;
  animation: gu-card-float 6s ease-in-out infinite;
}
.gu-fcard .fi { width: 34px; height: 34px; border-radius: 9px; background: var(--gu-gradient); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(27,95,232,0.35); }
.gu-fcard .fi svg { width: 17px; height: 17px; stroke: #fff; fill: none; }
.gu-fcard .ft { font-size: 0.78rem; font-weight: 700; color: var(--gu-ink); line-height: 1.2; }
.gu-fcard .fs { font-size: 0.68rem; color: var(--gu-muted); }
.gu-fcard.f1 { top: 4px; left: 6px; animation-delay: 0s; }
.gu-fcard.f2 { bottom: 56px; right: 4px; animation-delay: -2s; }
.gu-fcard.f3 { bottom: 8px; left: 60px; animation-delay: -4s; }

@keyframes gu-card-float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
@keyframes gu-rise { from{opacity:0;transform:translateY(28px);} to{opacity:1;transform:translateY(0);} }

@keyframes gu-scroll-dot { 0%{opacity:0;transform:translate(-50%,0);} 40%{opacity:1;} 80%{opacity:0;transform:translate(-50%,12px);} 100%{opacity:0;} }

@media (max-width: 900px) {
  .gu-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .gu-hero { min-height: auto; padding: 2.5rem 1.25rem 3.5rem; }
  .gu-dash { transform: none; width: 100%; max-width: 100%; }
  .gu-hero-visual { max-width: 440px; margin: 0 auto 1.5rem; width: 100%; padding: 34px 14px; }
  .gu-fcard.f1 { top: -6px; left: 4px; } .gu-fcard.f2 { bottom: 44px; right: 4px; } .gu-fcard.f3 { bottom: 2px; left: 26px; }
  .gu-hero-sub { max-width: 100%; }
  .gu-feature-wrap { margin-top: 1.5rem; }
}
@media (max-width: 560px) {
  .gu-hero { padding: 2rem 1rem 3rem; }
  .gu-hero-visual { margin-bottom: 2rem; }
  .gu-feature-wrap { margin-top: 1rem; }
  .gu-hero h1 { font-size: clamp(1.6rem, 5.5vw, 2.1rem); }
  .gu-btn { width: 100%; justify-content: center; }
  .gu-hero-actions { flex-direction: column; }
  .gu-hero-visual { padding: 30px 6px; }
  .gu-fcard { padding: 0.55rem 0.65rem; }
  .gu-fcard .ft { font-size: 0.72rem; } .gu-fcard .fs { font-size: 0.62rem; }
  .gu-fcard .fi { width: 30px; height: 30px; }
  .gu-fcard.f1 { top: -8px; left: -4px; }
  .gu-fcard.f2 { bottom: 40px; right: -4px; }
  .gu-fcard.f3 { bottom: -4px; left: 16px; }
  .gu-dash { padding: 0.9rem; }
  .gu-dash-grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .gu-mini-cards { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .gu-rotate .rw { position: static; opacity: 1; transform: none; }
  .gu-chart .linePath { stroke-dashoffset: 0; } .gu-chart .area, .gu-chart .pt { opacity: 1; }
  .gu-bars .bar { height: var(--h); } .gu-row .fill { width: var(--w); }
}

/* ==========================================================================
   FEATURE BAR
   ========================================================================== */
.gu-feature-wrap {
  position: relative;
  max-width: 1160px;
  margin: 2.5rem auto 0;
  padding: 0 1.25rem;
  z-index: 5;
}
.gu-feature-bar {
  background: linear-gradient(120deg, #0F2557 0%, #1B5FE8 60%, #2E7BFF 100%);
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(15, 37, 87, 0.30);
  padding: 2.1rem 1.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.gu-feature-bar::before {
  content: "";
  position: absolute;
  top: -60%; right: -5%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 65%);
  pointer-events: none;
}
.gu-feature-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 0.75rem;
  opacity: 0; transform: translateY(20px);
  animation: gu-frise 0.6s var(--gu-ease) forwards;
}
.gu-feature-item:nth-child(1) { animation-delay: 0.1s; }
.gu-feature-item:nth-child(2) { animation-delay: 0.22s; }
.gu-feature-item:nth-child(3) { animation-delay: 0.34s; }
.gu-feature-item:nth-child(4) { animation-delay: 0.46s; }
@keyframes gu-frise { to { opacity: 1; transform: translateY(0); } }

.gu-feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.16);
}
.gu-feature-ic {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: rgba(255,255,255,0.96);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(0,0,0,0.16);
  transition: transform 0.35s var(--gu-ease), box-shadow 0.35s var(--gu-ease);
}
.gu-feature-ic svg {
  width: 26px; height: 26px; stroke: var(--gu-blue); fill: none;
  transition: transform 0.35s var(--gu-ease), stroke 0.3s ease;
}
/* Hover animation on icons */
.gu-feature-item:hover .gu-feature-ic {
  transform: translateY(-4px) rotate(-6deg) scale(1.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}
.gu-feature-item:hover .gu-feature-ic svg {
  transform: scale(1.1);
  stroke: var(--gu-blue-bright);
}
.gu-feature-text .t { display: block; color: #fff; font-weight: 700; font-size: 1.0625rem; line-height: 1.3; margin-bottom: 0.25rem; }
.gu-feature-text .d { display: block; color: rgba(255,255,255,0.72); font-size: 0.8125rem; line-height: 1.4; }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.gu-marquee {
  margin-top: 3.5rem;
  background: rgba(15, 37, 87, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  padding: 0.6rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(46,123,255,0.18);
  border-bottom: 1px solid rgba(46,123,255,0.18);
}
.gu-marquee::before, .gu-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.gu-marquee::before { left: 0; background: linear-gradient(90deg, #0F2557, transparent); }
.gu-marquee::after { right: 0; background: linear-gradient(270deg, #0F2557, transparent); }

.gu-marquee-track {
  display: flex;
  width: max-content;
  animation: gu-scroll 38s linear infinite;
}
.gu-marquee:hover .gu-marquee-track { animation-play-state: paused; }
.gu-marquee-group { display: flex; align-items: center; flex-shrink: 0; }
.gu-marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.gu-marquee-item .txt { padding: 0 1.5rem; }
.gu-marquee-item .sep {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gu-blue-bright);
  box-shadow: 0 0 8px rgba(46,123,255,0.8);
  flex-shrink: 0;
}
@keyframes gu-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  .gu-feature-bar { grid-template-columns: 1fr 1fr; gap: 1.75rem 1rem; padding: 1.75rem; }
  .gu-feature-item:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
  .gu-feature-wrap { margin-top: -35px; padding: 0 1rem; }
  .gu-feature-bar { grid-template-columns: 1fr; gap: 1.5rem; }
  .gu-feature-item { padding: 0; }
  .gu-marquee-item { font-size: 0.85rem; }
  .gu-marquee-item .txt { padding: 0 1.1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .gu-feature-item { opacity: 1; transform: none; }
  .gu-marquee-track { animation: none; }
}



/* ==================== SERVICES ==================== */








/* ==========================================================================
   SERVICES INTERACTIVE
   ========================================================================== */
.gu-services {
  position: relative;
  padding: clamp(4rem, 3rem + 4vw, 7rem) 1.25rem;
  background: radial-gradient(ellipse 50% 45% at 90% 15%, rgba(46,123,255,0.06), transparent 60%), var(--gu-white);
  overflow: hidden;
}
.gu-services-inner { max-width: 1160px; margin: 0 auto; }

.gu-services .gu-sec-head { max-width: 640px; margin: 0 auto 3.25rem; text-align: center; }
.gu-services .gu-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gu-blue); margin-bottom: 1rem;
}
.gu-services .gu-kicker::before, .gu-services .gu-kicker::after { content: ""; width: 24px; height: 2px; border-radius: 999px; background: var(--gu-gradient); }
.gu-services .gu-sec-head h2 { color: var(--gu-ink); font-size: clamp(1.85rem, 1.3rem + 2.2vw, 2.75rem); line-height: 1.18; letter-spacing: -0.025em; font-weight: 700; margin-bottom: 1rem; }
.gu-services .gu-sec-head h2 .grad { background: var(--gu-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gu-services .gu-sec-head p { color: var(--gu-muted); font-size: 1.0625rem; }

/* Layout: tabs + panel */
.gu-services-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1.75rem;
  align-items: start;
}

/* Tab list */
.gu-tabs { display: flex; flex-direction: column; gap: 0.35rem; }
.gu-tab {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.12s var(--gu-ease), box-shadow 0.2s ease;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
/* Button press feel */
.gu-tab:active { transform: scale(0.97); }
.gu-tab .ti {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(27,95,232,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.25s ease;
}
.gu-tab .ti svg { width: 18px; height: 18px; stroke: var(--gu-blue); fill: none; transition: stroke 0.25s ease, transform 0.3s var(--gu-ease); }
.gu-tab .tt { font-size: 0.9375rem; font-weight: 600; color: var(--gu-body); line-height: 1.3; transition: color 0.25s ease; }
.gu-tab .ta { margin-left: auto; opacity: 0; transition: opacity 0.25s ease; }
.gu-tab .ta svg { width: 15px; height: 15px; stroke: #fff; }

/* Hover: sirf halka background + icon animate, panel nahi badalta */
.gu-tab:hover { background: var(--gu-bg-soft); }
.gu-tab:hover .ti svg { transform: scale(1.12); }
.gu-tab:hover .tt { color: var(--gu-ink); }

.gu-tab.active {
  background: var(--gu-navy);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(15,37,87,0.22);
}
.gu-tab.active .tt { color: #fff; }
.gu-tab.active .ti { background: rgba(255,255,255,0.15); }
.gu-tab.active .ti svg { stroke: #fff; }
.gu-tab.active .ta { opacity: 1; }
/* Left accent bar on active */
.gu-tab.active::before {
  content: "";
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 3px; border-radius: 0 3px 3px 0;
  background: var(--gu-blue-bright);
}

/* Panel */
.gu-panel-wrap {
  position: relative;
  background: var(--gu-bg-soft);
  border: 1px solid var(--gu-line);
  border-radius: 20px;
  padding: 2.5rem;
  min-height: 360px;
  overflow: hidden;
}

.gu-panel { display: none; }
.gu-panel.active { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: center; animation: gu-panel-in 0.5s var(--gu-ease); }
@keyframes gu-panel-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.gu-panel-content { position: relative; z-index: 1; }
.gu-panel-ic {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--gu-gradient); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.gu-panel-ic svg { width: 27px; height: 27px; stroke: #fff; fill: none; }
.gu-panel-content h3 { color: var(--gu-ink); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.85rem; }
.gu-panel-content p { color: var(--gu-body); font-size: 0.9875rem; line-height: 1.7; margin-bottom: 1.4rem; }

.gu-panel-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
.gu-panel-tags .tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.85rem; border-radius: 8px;
  background: #fff; border: 1px solid var(--gu-line); color: var(--gu-body);
  font-size: 0.8125rem; font-weight: 600;
}
.gu-panel-tags .tag svg { width: 13px; height: 13px; stroke: var(--gu-blue); fill: none; }

.gu-panel-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--gu-blue); font-size: 0.9375rem; font-weight: 700;
  transition: gap 0.3s var(--gu-ease), color 0.2s ease;
}
.gu-panel-link svg { width: 16px; height: 16px; stroke: currentColor; transition: transform 0.3s var(--gu-ease); }
.gu-panel-link:hover { color: var(--gu-blue-bright); gap: 0.7rem; }
.gu-panel-link:hover svg { transform: translateX(3px); }

/* Illustration */
.gu-panel-visual { position: relative; height: 260px; display: flex; align-items: center; justify-content: center; }
.gu-panel-visual .ill-glow {
  position: absolute; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(46,123,255,0.1), transparent 65%);
  filter: blur(12px);
}
.gu-ill {
  position: relative; z-index: 1;
  width: 100%; max-width: 260px;
  animation: gu-ill-float 5s ease-in-out infinite;
}
@keyframes gu-ill-float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }

.gu-ill .card-a, .gu-ill .card-b { transform-box: fill-box; transform-origin: center; }
.gu-ill .float-a { animation: gu-ill-a 4s ease-in-out infinite; }
.gu-ill .float-b { animation: gu-ill-b 4.5s ease-in-out infinite; }
@keyframes gu-ill-a { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
@keyframes gu-ill-b { 0%,100%{transform:translateY(0);} 50%{transform:translateY(7px);} }

/* animated bar/line inside illustrations */
.gu-ill .grow-bar { animation: gu-ill-grow 2s var(--gu-ease) infinite alternate; transform-origin: bottom; transform-box: fill-box; }
@keyframes gu-ill-grow { from { transform: scaleY(0.55); } to { transform: scaleY(1); } }
.gu-ill .dash-line { stroke-dasharray: 6 6; animation: gu-ill-dash 1.5s linear infinite; }
@keyframes gu-ill-dash { to { stroke-dashoffset: -24; } }
.gu-ill .pulse { animation: gu-ill-pulse 2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes gu-ill-pulse { 0%,100%{ opacity:1; transform: scale(1);} 50%{opacity:0.6; transform: scale(1.15);} }

@media (max-width: 960px) {
  .gu-services-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .gu-panel.active { grid-template-columns: 1fr; }
  .gu-panel-visual { order: -1; height: 210px; }

  /* Horizontal snap slider */
  .gu-tabs {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.6rem;
    padding: 0.25rem 0.25rem 0.75rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .gu-tabs::-webkit-scrollbar { display: none; }
  .gu-tab {
    flex-direction: row;
    align-items: center;
    min-width: max-content;
    gap: 0.55rem;
    scroll-snap-align: center;
    background: #fff;
    border: 1px solid var(--gu-line);
    white-space: nowrap;
  }
  .gu-tab.active::before { display: none; }
  .gu-tab .ta { display: none; }
  .gu-tab .tt { font-size: 0.875rem; }
  .gu-tab .ti { width: 30px; height: 30px; }
  .gu-tab .ti svg { width: 16px; height: 16px; }
}
@media (max-width: 560px) {
  .gu-panel-wrap { padding: 1.6rem; }
  .gu-panel-content h3 { font-size: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}


/* ==================== COMPARISON ==================== */








/* ==========================================================================
   COMPARISON
   ========================================================================== */
.gu-compare {
  position: relative;
  padding: clamp(4rem, 3rem + 4vw, 7rem) 1.25rem;
  background: var(--gu-bg-soft);
  overflow: hidden;
}
.gu-compare-inner { max-width: 1080px; margin: 0 auto; }

.gu-compare .gu-sec-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.gu-compare .gu-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gu-blue); margin-bottom: 1rem;
}
.gu-compare .gu-kicker::before, .gu-compare .gu-kicker::after { content: ""; width: 24px; height: 2px; border-radius: 999px; background: var(--gu-gradient); }
.gu-compare .gu-sec-head h2 { color: var(--gu-ink); font-size: clamp(1.5rem, 1.15rem + 1.6vw, 2.15rem); line-height: 1.25; letter-spacing: -0.02em; font-weight: 700; margin-bottom: 0.9rem; }
.gu-compare .gu-sec-head h2 .grad { background: var(--gu-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gu-compare .gu-sec-head p { color: var(--gu-muted); font-size: 1.0625rem; }

.gu-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

/* Columns */
.gu-col {
  border-radius: 22px;
  padding: 2.25rem 2rem;
  opacity: 0;
  transition: opacity 0.9s var(--gu-ease), transform 0.9s var(--gu-ease);
}
.gu-col-left { background: linear-gradient(180deg, #FEF2F2, #FFF7F7); border: 1px solid #FCE4E4; transform: translateX(-48px); }
.gu-col-right {
  background: linear-gradient(160deg, #0F2557, #1B4A9E);
  position: relative;
  transform: translateX(48px);
  box-shadow: 0 26px 60px rgba(15,37,87,0.30);
  overflow: hidden;
}
.gu-compare.in .gu-col-left,
.gu-compare.in .gu-col-right { opacity: 1; transform: translateX(0); }

.gu-col-right::before {
  content: ""; position: absolute; top: -30%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(46,123,255,0.25), transparent 65%);
  pointer-events: none;
}

/* Column head */
.gu-col-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--gu-line); position: relative; z-index: 1; }
.gu-col-right .gu-col-head { border-bottom-color: rgba(255,255,255,0.15); }
.gu-col-badge {
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gu-col-left .gu-col-head { border-bottom-color: #FCE4E4; }
.gu-col-left .gu-col-badge { background: rgba(239,68,68,0.12); }
.gu-col-left .gu-col-badge svg { width: 21px; height: 21px; stroke: #EF4444; fill: none; }
.gu-col-right .gu-col-badge { background: rgba(255,255,255,0.14); }
.gu-col-right .gu-col-badge svg { width: 21px; height: 21px; stroke: #fff; fill: none; }
.gu-col-head h3 { font-size: 1.1875rem; font-weight: 700; letter-spacing: -0.02em; }
.gu-col-left .gu-col-head h3 { color: #C0392B; }
.gu-col-right .gu-col-head h3 { color: #fff; }

.gu-col-right .gu-recommended {
  margin-left: auto;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: var(--gu-gradient);
  padding: 0.3rem 0.7rem; border-radius: 999px;
}

/* List */
.gu-col ul { list-style: none; position: relative; z-index: 1; }
.gu-col li { display: flex; align-items: flex-start; gap: 0.8rem; padding: 0.7rem 0; font-size: 0.9375rem; line-height: 1.55; }
.gu-col-left li { color: var(--gu-body); }
.gu-col-right li { color: rgba(255,255,255,0.9); }

.gu-mark { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.gu-col-left .gu-mark { background: rgba(239,68,68,0.1); }
.gu-col-left .gu-mark svg { width: 12px; height: 12px; stroke: #EF4444; }
.gu-col-right .gu-mark { background: rgba(74,222,128,0.18); }
.gu-col-right .gu-mark svg { width: 12px; height: 12px; stroke: #4ADE80; }

/* stagger list items */
.gu-col li { opacity: 0; transform: translateY(10px); transition: opacity 0.5s var(--gu-ease), transform 0.5s var(--gu-ease); }
.gu-compare.in .gu-col li { opacity: 1; transform: translateY(0); }
.gu-compare.in .gu-col li:nth-child(1) { transition-delay: 0.3s; }
.gu-compare.in .gu-col li:nth-child(2) { transition-delay: 0.4s; }
.gu-compare.in .gu-col li:nth-child(3) { transition-delay: 0.5s; }
.gu-compare.in .gu-col li:nth-child(4) { transition-delay: 0.6s; }
.gu-compare.in .gu-col li:nth-child(5) { transition-delay: 0.7s; }

@media (max-width: 820px) {
  .gu-compare-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .gu-col-left, .gu-col-right { transform: translateY(28px); }
  .gu-compare.in .gu-col-left,
  .gu-compare.in .gu-col-right { transform: translateY(0); }
  .gu-col-right .gu-recommended { font-size: 0.625rem; padding: 0.25rem 0.6rem; }
}
@media (max-width: 480px) {
  .gu-compare { padding: 3.5rem 1rem; }
  .gu-col { padding: 1.6rem 1.35rem; }
  /* Head: icon + title ek row, Recommended badge alag neeche */
  .gu-col-head {
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
    align-items: center;
  }
  .gu-col-head h3 { font-size: 1.05rem; white-space: normal; }
  .gu-col-right .gu-recommended {
    margin-left: 0;
    order: 3;
    flex-basis: 100%;
  }
  .gu-col-right .gu-recommended {
    width: max-content;
  }
  .gu-col li { font-size: 0.9rem; padding: 0.6rem 0; gap: 0.65rem; }
  .gu-col-badge { width: 36px; height: 36px; }
  .gu-compare .gu-sec-head { margin-bottom: 2.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
  .gu-col, .gu-col li { opacity: 1 !important; transform: none !important; }
}


/* ==================== PROCESS ==================== */








/* ==========================================================================
   PROCESS
   ========================================================================== */
.gu-process {
  position: relative;
  padding: clamp(4rem, 3rem + 4vw, 7rem) 1.25rem;
  background: var(--gu-white);
  overflow: hidden;
}
.gu-process-inner { max-width: 1120px; margin: 0 auto; }

.gu-ps-head { max-width: 600px; margin: 0 auto 3rem; text-align: center; }
.gu-ps-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gu-blue); margin-bottom: 1rem;
}
.gu-ps-kicker::before, .gu-ps-kicker::after { content: ""; width: 24px; height: 2px; border-radius: 999px; background: var(--gu-gradient); }
.gu-ps-head h2 { color: var(--gu-ink); font-size: clamp(1.45rem, 1.15rem + 1.35vw, 2.05rem); line-height: 1.28; letter-spacing: -0.02em; font-weight: 650; margin-bottom: 0.8rem; }
.gu-ps-head h2 .grad { background: var(--gu-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gu-ps-head p { color: var(--gu-muted); font-size: 1rem; line-height: 1.7; }

/* Steps row */
.gu-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}
/* connecting line behind */
.gu-steps::before {
  content: "";
  position: absolute;
  top: 50%; left: 14%; right: 14%;
  height: 1px;
  background: #E6EBF3;
  z-index: 0;
}

.gu-home .gu-step {
  position: relative;
  z-index: 1;
  margin: 0 0.6rem;
  padding: 1.05rem 1rem;
  background: linear-gradient(180deg, #FFFFFF, #F2F6FC);
  border: 1px solid #D8E1EF;
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  box-shadow: 0 1px 2px rgba(15,37,87,0.04);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.14s var(--gu-ease), box-shadow 0.25s var(--gu-ease);
  -webkit-tap-highlight-color: transparent;
}
.gu-step:hover {
  border-color: rgba(27,95,232,0.45);
  background: #FFFFFF;
  box-shadow: 0 8px 20px rgba(15,37,87,0.11);
  transform: translateY(-2px);
}
/* Press feel: dab kar andar */
.gu-step:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: inset 0 3px 8px rgba(15,37,87,0.14);
}
.gu-step.active:active {
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
}

.gu-step .num {
  display: block;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gu-muted); margin-bottom: 0.3rem;
}
.gu-step .lbl { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--gu-ink); line-height: 1.3; }

.gu-step.active {
  background: linear-gradient(135deg, #0F2557, #1B5FE8);
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(15,37,87,0.26), inset 0 1px 0 rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.gu-step.active .num { color: rgba(255,255,255,0.75); }
.gu-step.active .lbl { color: #fff; }


/* Panel */
.gu-ps-panel-wrap {
  position: relative;
  border: 1px solid var(--gu-line);
  border-radius: 22px;
  padding: 2.5rem;
  background: linear-gradient(180deg, #FFFFFF, #F8FAFD);
  min-height: 340px;
  box-shadow: 0 10px 30px rgba(15,37,87,0.05);
  overflow: hidden;
}
.gu-ps-panel-wrap::before {
  content: "";
  position: absolute; top: -30%; right: -8%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(46,123,255,0.07), transparent 65%);
  pointer-events: none;
}
.gu-ps-panel { display: none; }
.gu-ps-panel.active {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  animation: gu-ps-in 0.5s var(--gu-ease);
}
@keyframes gu-ps-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.gu-ps-content { position: relative; z-index: 1; }
.gu-ps-content h3 { color: var(--gu-ink); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1.6rem; line-height: 1.35; }
.gu-ps-content h3 .accent { color: var(--gu-blue); }

.gu-ps-item { display: flex; gap: 0.9rem; margin-bottom: 1.35rem; }
.gu-ps-item:last-child { margin-bottom: 0; }
.gu-ps-ic {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(27,95,232,0.1), rgba(46,123,255,0.05));
  border: 1px solid rgba(27,95,232,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s var(--gu-ease);
}
.gu-ps-ic svg { width: 19px; height: 19px; stroke: var(--gu-blue); fill: none; transition: stroke 0.3s ease; }
.gu-ps-item:hover .gu-ps-ic { background: var(--gu-gradient); transform: translateY(-2px); }
.gu-ps-item:hover .gu-ps-ic svg { stroke: #fff; }
.gu-ps-item h4 { color: var(--gu-ink); font-size: 0.975rem; font-weight: 700; margin-bottom: 0.25rem; }
.gu-ps-item p { color: var(--gu-muted); font-size: 0.9rem; line-height: 1.6; }

/* Illustration */
.gu-ps-visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; height: 268px; }
.gu-ps-visual .glow {
  position: absolute; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(46,123,255,0.1), transparent 65%);
  filter: blur(12px);
}
.gu-ps-ill { position: relative; z-index: 1; width: 100%; max-width: 320px; animation: gu-ps-float 5s ease-in-out infinite; }
@keyframes gu-ps-float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-11px);} }

.gu-ps-ill .float-slow { animation: gu-ps-fa 5.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.gu-ps-ill .float-fast { animation: gu-ps-fb 4.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes gu-ps-fa { 0%,100%{transform:translateY(0);} 50%{transform:translateY(7px);} }
@keyframes gu-ps-fb { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-9px);} }
.gu-ps-ill .pulse { animation: gu-ps-pulse 2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes gu-ps-pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.65;transform:scale(1.12);} }
.gu-ps-ill .dash { stroke-dasharray: 5 5; animation: gu-ps-dash 1.5s linear infinite; }
@keyframes gu-ps-dash { to { stroke-dashoffset: -20; } }
.gu-ps-ill .grow { animation: gu-ps-grow 2s var(--gu-ease) infinite alternate; transform-origin: bottom; transform-box: fill-box; }
@keyframes gu-ps-grow { from { transform: scaleY(0.6); } to { transform: scaleY(1); } }

@media (max-width: 900px) {
  .gu-steps { display: flex; overflow-x: auto; gap: 0.6rem; padding: 0.25rem 0.25rem 0.75rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .gu-steps::-webkit-scrollbar { display: none; }
  .gu-steps::before { display: none; }
  .gu-step { margin: 0; min-width: 165px; scroll-snap-align: center; flex-shrink: 0; }
  .gu-ps-panel.active { grid-template-columns: 1fr; gap: 1.75rem; }
  .gu-ps-visual { order: -1; height: 200px; }
}
@media (max-width: 480px) {
  .gu-process { padding: 3.5rem 1rem; }
  .gu-ps-panel-wrap { padding: 1.6rem; }
  .gu-ps-content h3 { font-size: 1.2rem; }
  .gu-step { min-width: 150px; padding: 0.9rem 0.85rem; }
  .gu-step .lbl { font-size: 0.875rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}


/* ==================== EXPERTISE ==================== */








/* ==========================================================================
   EXPERTISE
   ========================================================================== */
.gu-exp {
  position: relative;
  padding: clamp(3rem, 2.25rem + 2.6vw, 4.5rem) 1.25rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #EFF4FC 55%, #E8EFFA 100%);
  overflow: hidden;
  isolation: isolate;
  perspective: 1000px;
}

/* Soft drifting orbs */
.gu-exp-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.gu-exp-bg .orb { position: absolute; border-radius: 50%; filter: blur(70px); }
.gu-exp-bg .o1 {
  width: 380px; height: 380px; top: -16%; left: -6%;
  background: radial-gradient(circle, rgba(46,123,255,0.22), transparent 70%);
  animation: gu-drift-a 22s ease-in-out infinite;
}
.gu-exp-bg .o2 {
  width: 420px; height: 420px; bottom: -20%; right: -8%;
  background: radial-gradient(circle, rgba(27,95,232,0.18), transparent 70%);
  animation: gu-drift-b 26s ease-in-out infinite;
}
.gu-exp-bg .o3 {
  width: 300px; height: 300px; top: 30%; left: 48%;
  background: radial-gradient(circle, rgba(127,176,255,0.16), transparent 70%);
  animation: gu-drift-c 30s ease-in-out infinite;
}
@keyframes gu-drift-a {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  33% { transform: translate3d(70px,40px,0) scale(1.1); }
  66% { transform: translate3d(30px,-30px,0) scale(0.94); }
}
@keyframes gu-drift-b {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  33% { transform: translate3d(-60px,-40px,0) scale(1.08); }
  66% { transform: translate3d(-20px,35px,0) scale(0.95); }
}
@keyframes gu-drift-c {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-50px,30px,0) scale(1.14); }
}

/* 3D perspective floor grid: endless forward motion */
.gu-exp-bg .grid3d {
  position: absolute;
  left: -25%; right: -25%; bottom: -8%;
  height: 45%;
  background-image:
    linear-gradient(rgba(27,95,232,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,95,232,0.13) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: rotateX(72deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, #000 5%, transparent 88%);
  -webkit-mask-image: linear-gradient(to top, #000 5%, transparent 88%);
  animation: gu-grid-run 4.5s linear infinite;
}
@keyframes gu-grid-run {
  from { background-position: 0 0; }
  to   { background-position: 0 52px; }
}

/* 3D floating wireframe shapes */
.gu-exp-bg .shape {
  position: absolute;
  border: 1.5px solid rgba(27,95,232,0.18);
  border-radius: 10px;
  transform-style: preserve-3d;
}
.gu-exp-bg .s1 { width: 76px; height: 76px; top: 16%; left: 7%; animation: gu-spin-a 18s linear infinite; }
.gu-exp-bg .s2 { width: 54px; height: 54px; top: 62%; left: 12%; border-radius: 50%; animation: gu-spin-b 22s linear infinite; }
.gu-exp-bg .s3 { width: 66px; height: 66px; top: 24%; right: 9%; animation: gu-spin-b 20s linear infinite reverse; }
.gu-exp-bg .s4 { width: 44px; height: 44px; bottom: 22%; right: 16%; border-radius: 50%; animation: gu-spin-a 24s linear infinite; }
@keyframes gu-spin-a {
  0%   { transform: rotateX(0deg) rotateY(0deg) translateZ(0); }
  100% { transform: rotateX(360deg) rotateY(360deg) translateZ(0); }
}
@keyframes gu-spin-b {
  0%   { transform: rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateY(360deg) rotateZ(360deg); }
}

/* Light sweep */
.gu-exp::after {
  content: "";
  position: absolute; top: 0; bottom: 0; left: -40%; width: 35%;
  z-index: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-14deg);
  animation: gu-sweep 11s linear infinite;
  pointer-events: none;
}
@keyframes gu-sweep {
  0% { left: -45%; }
  100% { left: 130%; }
}
.gu-exp-inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; }

.gu-exp-head { text-align: center; max-width: 580px; margin: 0 auto 1.9rem; }
.gu-exp-head h2 { color: var(--gu-navy); font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.2rem); font-weight: 650; letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 0.75rem; }
.gu-exp-head h2 .grad { background: var(--gu-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gu-exp-head p { color: var(--gu-muted); font-size: 1rem; }

/* Tab switcher */
.gu-exp-switch {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.3rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(15,37,87,0.09);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px rgba(15,37,87,0.07);
  margin: 0 auto 2.25rem;
}
.gu-exp-switch-wrap { display: flex; justify-content: center; }
.gu-exp-tab {
  padding: 0.6rem 1.3rem;
  border: none;
  background: transparent;
  color: var(--gu-muted);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.3s var(--gu-ease), transform 0.12s var(--gu-ease);
  -webkit-tap-highlight-color: transparent;
}
.gu-exp-tab:hover { color: var(--gu-navy); }
.gu-exp-tab:active { transform: scale(0.96); }
.gu-exp-tab.active {
  background: var(--gu-gradient);
  color: #fff;
  box-shadow: 0 6px 18px rgba(27,95,232,0.45);
}

/* Panels */
.gu-exp-panel { display: none; }
.gu-exp-panel.active { display: block; }

/* TAGS */
.gu-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; max-width: 900px; margin: 0 auto; }
.gu-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.05rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15,37,87,0.08);
  border-radius: 999px;
  color: var(--gu-navy);
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(15,37,87,0.05);
  transform-style: preserve-3d;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--gu-ease), box-shadow 0.3s var(--gu-ease), color 0.2s ease;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  animation: gu-tag-in 0.5s var(--gu-ease) forwards;
}
@keyframes gu-tag-in { to { opacity: 1; transform: translateY(0) scale(1); } }

/* Panel switch: poora content neeche se upar rise */
.gu-exp-panel.active { animation: gu-panel-rise 0.5s var(--gu-ease); }
@keyframes gu-panel-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.gu-tag:hover {
  background: var(--gu-gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px) rotateX(8deg) scale(1.04);
  box-shadow: 0 14px 28px rgba(27,95,232,0.35);
}
.gu-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gu-blue-bright);
  box-shadow: 0 0 8px rgba(46,123,255,0.8);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.gu-tag:hover .dot { background: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.9); }

/* TECH chips */
.gu-tech { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; max-width: 860px; margin: 0 auto; }
.gu-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,37,87,0.08);
  border-radius: 12px;
  color: var(--gu-navy);
  font-size: 0.875rem; font-weight: 600;
  box-shadow: 0 2px 8px rgba(15,37,87,0.05);
  transform-style: preserve-3d;
  transition: background 0.3s ease, transform 0.3s var(--gu-ease), border-color 0.3s ease;
  opacity: 0; transform: translateY(14px);
  animation: gu-tag-in 0.5s var(--gu-ease) forwards;
}
.gu-chip:hover { background: #fff; border-color: rgba(46,123,255,0.4); transform: translateY(-4px) rotateX(8deg); box-shadow: 0 12px 24px rgba(15,37,87,0.1); }
.gu-chip svg { width: 15px; height: 15px; stroke: var(--gu-blue); fill: none; flex-shrink: 0; }

/* WHAT YOU GET: visual cards */
.gu-get { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 980px; margin: 0 auto; }
.gu-get-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15,37,87,0.07);
  border-radius: 18px;
  padding: 1.1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 22px rgba(15,37,87,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  transform-style: preserve-3d;
  transition: background 0.3s ease, transform 0.35s var(--gu-ease), border-color 0.3s ease, box-shadow 0.35s ease;
  opacity: 0; transform: translateY(18px);
  animation: gu-tag-in 0.55s var(--gu-ease) forwards;
  overflow: hidden;
}
.gu-get-card:hover {
  background: #fff;
  border-color: rgba(46,123,255,0.35);
  transform: translateY(-8px) rotateX(4deg);
  box-shadow: 0 24px 48px rgba(15,37,87,0.15), inset 0 1px 0 rgba(255,255,255,1);
}

/* Visual mockup area */
.gu-get-visual {
  position: relative;
  height: 122px;
  border-radius: 12px;
  background: linear-gradient(160deg, #EEF4FD, #E3ECFA);
  border: 1px solid rgba(15,37,87,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}
.gu-get-visual svg { width: 100%; height: 100%; }
.gu-get-visual .fl { animation: gu-gv-float 4.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes gu-gv-float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }
.gu-get-visual .pl { animation: gu-gv-pulse 2.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes gu-gv-pulse { 0%,100%{opacity:1;} 50%{opacity:0.45;} }
.gu-get-visual .gr { animation: gu-gv-grow 2s var(--gu-ease) infinite alternate; transform-box: fill-box; transform-origin: bottom; }
@keyframes gu-gv-grow { from { transform: scaleY(0.55); } to { transform: scaleY(1); } }

.gu-get-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; }
.gu-get-ic {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--gu-gradient);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gu-get-ic svg { width: 16px; height: 16px; stroke: #fff; fill: none; }
.gu-get-card h4 { color: var(--gu-ink); font-size: 0.9375rem; font-weight: 700; }
.gu-get-card p { color: var(--gu-muted); font-size: 0.8125rem; line-height: 1.55; }

/* Bottom link */
.gu-exp-cta { text-align: center; margin-top: 2.5rem; }
.gu-exp-cta a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gu-blue); font-size: 0.9375rem; font-weight: 700;
  transition: gap 0.3s var(--gu-ease);
}
.gu-exp-cta a svg { width: 16px; height: 16px; stroke: currentColor; transition: transform 0.3s var(--gu-ease); }
.gu-exp-cta a:hover { gap: 0.75rem; }
.gu-exp-cta a:hover svg { transform: translateX(3px); }

@media (max-width: 820px) {
  .gu-get { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .gu-exp { padding: 2.75rem 1rem; }
  .gu-exp-head { margin-bottom: 1.75rem; }
  .gu-exp-switch-wrap { width: 100%; }
  .gu-exp-switch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 0.2rem;
    padding: 0.25rem;
    border-radius: 14px;
    margin-bottom: 2rem;
  }
  .gu-exp-tab {
    padding: 0.6rem 0.35rem;
    font-size: 0.75rem;
    border-radius: 11px;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }
  .gu-tag { font-size: 0.8125rem; padding: 0.5rem 0.85rem; }
  .gu-tags { gap: 0.5rem; }
  .gu-get { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .gu-tag, .gu-chip, .gu-get-card { opacity: 1; transform: none; }
}


/* ==================== FAQ ==================== */








/* ==========================================================================
   FAQ
   ========================================================================== */
.gu-faq {
  padding: clamp(3.5rem, 2.5rem + 3vw, 5.5rem) 1.25rem;
  background: var(--gu-white);
}
.gu-faq-inner { max-width: 1060px; margin: 0 auto; }

.gu-faq-head { text-align: center; max-width: 560px; margin: 0 auto 2.75rem; }
.gu-faq-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gu-blue); margin-bottom: 0.9rem;
}
.gu-faq-kicker::before, .gu-faq-kicker::after { content: ""; width: 22px; height: 2px; border-radius: 999px; background: var(--gu-gradient); }
.gu-faq-head h2 { color: var(--gu-navy); font-size: clamp(1.45rem, 1.15rem + 1.35vw, 2.05rem); font-weight: 650; letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 0.7rem; }
.gu-faq-head h2 .grad { background: var(--gu-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gu-faq-head p { color: var(--gu-muted); font-size: 1rem; }

/* Grid */
.gu-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; align-items: start; }

/* Item */
.gu-faq-item {
  background: var(--gu-bg-soft);
  border: 1px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.35s var(--gu-ease);
}
.gu-faq-item:hover { background: #EFF3FA; }
.gu-faq-item.open {
  background: var(--gu-white);
  border-color: rgba(27,95,232,0.18);
  box-shadow: 0 12px 32px rgba(15,37,87,0.09);
}

.gu-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.gu-faq-q:active { transform: scale(0.995); }

.gu-faq-plus {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.gu-faq-plus::before, .gu-faq-plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gu-navy);
  border-radius: 2px;
  transition: transform 0.35s var(--gu-ease), background 0.3s ease, opacity 0.3s ease;
}
.gu-faq-plus::before { width: 15px; height: 2px; transform: translate(-50%,-50%); }
.gu-faq-plus::after { width: 2px; height: 15px; transform: translate(-50%,-50%); }
.gu-faq-item.open .gu-faq-plus::before { background: var(--gu-blue); transform: translate(-50%,-50%) rotate(180deg); }
.gu-faq-item.open .gu-faq-plus::after { background: var(--gu-blue); transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.gu-faq-q span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gu-ink);
  line-height: 1.45;
  transition: color 0.25s ease;
}
.gu-faq-item.open .gu-faq-q span { color: var(--gu-blue); }

.gu-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--gu-ease);
}
.gu-faq-a-inner {
  padding: 0 1.35rem 1.3rem 3.6rem;
  color: var(--gu-body);
  font-size: 0.9rem;
  line-height: 1.72;
}

.gu-faq-cta { text-align: center; margin-top: 2.5rem; }
.gu-faq-cta p { color: var(--gu-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.gu-faq-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: var(--gu-gradient);
  color: #fff; font-size: 0.9375rem; font-weight: 700;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 6px 20px rgba(27,95,232,0.3);
  transition: transform 0.25s var(--gu-ease), box-shadow 0.25s var(--gu-ease);
}
.gu-faq-btn span { position: relative; z-index: 1; }
.gu-faq-btn svg { width: 16px; height: 16px; stroke: #fff; position: relative; z-index: 1; transition: transform 0.25s var(--gu-ease); }
.gu-faq-btn::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg); transition: left 0.6s var(--gu-ease);
}
.gu-faq-btn:hover::before { left: 130%; }
.gu-faq-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(27,95,232,0.42); }
.gu-faq-btn:hover svg { transform: translateX(3px); }

@media (max-width: 820px) {
  .gu-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gu-faq { padding: 3rem 1rem; }
  .gu-faq-q { padding: 1rem 1.1rem; gap: 0.75rem; }
  .gu-faq-q span { font-size: 0.9rem; }
  .gu-faq-a-inner { padding: 0 1.1rem 1.15rem 3rem; font-size: 0.875rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}


/* ==================== CTA ==================== */









/* ==========================================================================
   CTA
   ========================================================================== */
.gu-cta {
  position: relative;
  padding: clamp(3.5rem, 2.5rem + 3vw, 5.5rem) 1.25rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #EFF4FC 60%, #E9F0FA 100%);
  overflow: hidden;
  isolation: isolate;
  perspective: 1000px;
}

/* Background: drifting orbs + rotating 3D wireframes */
.gu-cta-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.gu-cta-bg .orb { position: absolute; border-radius: 50%; filter: blur(70px); }
.gu-cta-bg .o1 {
  width: 360px; height: 360px; top: -14%; left: -5%;
  background: radial-gradient(circle, rgba(46,123,255,0.22), transparent 70%);
  animation: gu-cta-drift-a 24s ease-in-out infinite;
}
.gu-cta-bg .o2 {
  width: 400px; height: 400px; bottom: -18%; right: -6%;
  background: radial-gradient(circle, rgba(27,95,232,0.18), transparent 70%);
  animation: gu-cta-drift-b 28s ease-in-out infinite;
}
@keyframes gu-cta-drift-a {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(60px,35px,0) scale(1.1); }
}
@keyframes gu-cta-drift-b {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-55px,-35px,0) scale(1.08); }
}

.gu-cta-bg .shape {
  position: absolute;
  border: 1.5px solid rgba(27,95,232,0.16);
  border-radius: 10px;
  transform-style: preserve-3d;
}
.gu-cta-bg .s1 { width: 70px; height: 70px; top: 18%; left: 8%; animation: gu-cta-spin-a 19s linear infinite; }
.gu-cta-bg .s2 { width: 48px; height: 48px; bottom: 20%; left: 15%; border-radius: 50%; animation: gu-cta-spin-b 23s linear infinite; }
.gu-cta-bg .s3 { width: 62px; height: 62px; top: 22%; right: 10%; animation: gu-cta-spin-b 21s linear infinite reverse; }
.gu-cta-bg .s4 { width: 40px; height: 40px; bottom: 24%; right: 17%; border-radius: 50%; animation: gu-cta-spin-a 26s linear infinite; }
@keyframes gu-cta-spin-a { to { transform: rotateX(360deg) rotateY(360deg); } }
@keyframes gu-cta-spin-b { to { transform: rotateY(360deg) rotateZ(360deg); } }

/* Glass card */
.gu-cta-card {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(2.25rem, 1.75rem + 2vw, 3.5rem) clamp(1.5rem, 1rem + 2.5vw, 3.5rem);
  text-align: center;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 26px;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: 0 26px 70px rgba(15,37,87,0.14), inset 0 1px 0 rgba(255,255,255,1);
  overflow: hidden;
  animation: gu-cta-float 7s ease-in-out infinite;
}
@keyframes gu-cta-float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-9px); } }

/* Logo watermark inside card */
.gu-cta-card::before {
  content: "";
  position: absolute;
  right: -40px; bottom: -50px;
  width: 260px; height: 130px;
  background-image: url('https://globaluniqueitsolutions.com/wp-content/uploads/2026/07/Global-Unique-IT-Solutions-logo-1.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
}
/* Top accent line */
.gu-cta-card::after {
  content: "";
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2E7BFF, transparent);
}

.gu-cta-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: rgba(27,95,232,0.08);
  border: 1px solid rgba(27,95,232,0.16);
  border-radius: 999px;
  font-size: 0.8125rem; font-weight: 600; color: var(--gu-blue);
  margin-bottom: 1.35rem;
}
.gu-cta-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E; box-shadow: 0 0 8px rgba(34,197,94,0.7);
  animation: gu-cta-blink 2s ease-in-out infinite;
}
@keyframes gu-cta-blink { 0%,100%{opacity:1;} 50%{opacity:0.35;} }

.gu-cta-card h2 {
  color: var(--gu-navy);
  font-size: clamp(1.6rem, 1.2rem + 1.9vw, 2.45rem);
  font-weight: 650; letter-spacing: -0.025em; line-height: 1.24;
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.gu-cta-card h2 .grad { background: var(--gu-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gu-cta-card > p {
  color: var(--gu-body);
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.0625rem);
  max-width: 520px; margin: 0 auto 2rem;
  position: relative; z-index: 1;
}

.gu-cta-actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0.85rem;
  margin-bottom: 1.85rem;
  position: relative; z-index: 1;
}
.gu-cta-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.9375rem; font-weight: 700;
  border-radius: 12px; overflow: hidden;
  transition: transform 0.25s var(--gu-ease), box-shadow 0.25s var(--gu-ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.gu-cta-btn span { position: relative; z-index: 1; }
.gu-cta-btn svg { width: 17px; height: 17px; position: relative; z-index: 1; transition: transform 0.25s var(--gu-ease); }
.gu-cta-btn::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-18deg); transition: left 0.6s var(--gu-ease);
}
.gu-cta-btn:hover::before { left: 130%; }
.gu-cta-btn:active { transform: translateY(-1px) scale(0.98); }

.gu-cta-primary {
  background: var(--gu-gradient); color: #fff; stroke: #fff;
  box-shadow: 0 8px 24px rgba(27,95,232,0.35);
}
.gu-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(27,95,232,0.48); }
.gu-cta-primary:hover svg { transform: translateX(4px); }

.gu-cta-whatsapp {
  background: #fff; color: #128C4A; stroke: #128C4A;
  border: 1px solid rgba(18,140,74,0.25);
  box-shadow: 0 4px 14px rgba(15,37,87,0.06);
}
.gu-cta-whatsapp:hover {
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: #fff; stroke: #fff; border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37,211,102,0.35);
}
.gu-cta-whatsapp svg { fill: currentColor; stroke: none; }

/* Trust line */
.gu-cta-trust {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem 1.75rem;
  position: relative; z-index: 1;
}
.gu-cta-trust span {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--gu-muted); font-size: 0.8125rem; font-weight: 600;
}
.gu-cta-trust span svg { width: 15px; height: 15px; stroke: var(--gu-blue); fill: none; flex-shrink: 0; }

@media (max-width: 560px) {
  .gu-cta { padding: 3rem 1rem; }
  .gu-cta-card { border-radius: 20px; animation: none; }
  .gu-cta-btn { width: 100%; justify-content: center; }
  .gu-cta-actions { flex-direction: column; }
  .gu-cta-trust { gap: 0.6rem 1.1rem; }
  .gu-cta-bg .shape { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}


/* ==========================================================================
   12. PERFORMANCE
   ========================================================================== */

/* Below the fold sections: browser inhe tab render kare jab qareeb aayein */
.gu-services,
.gu-compare,
.gu-process,
.gu-exp,
.gu-faq,
.gu-cta {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

/* Sirf animate hone wale elements par GPU hint */
.gu-hero-bg .orb,
.gu-exp-bg .orb,
.gu-cta-bg .orb,
.gu-marquee-track,
.gu-cta-card {
  will-change: transform;
}

/* Mobile: bhari blur aur background animations kam, battery aur speed ke liye */
@media (max-width: 768px) {
  .gu-hero-bg .orb,
  .gu-exp-bg .orb,
  .gu-cta-bg .orb {
    filter: blur(45px);
    animation: none;
  }
  .gu-exp-bg .grid3d,
  .gu-exp-bg .shape,
  .gu-cta-bg .shape { display: none; }
  .gu-exp::after,
  .gu-hero-grid { display: none; }
  .gu-dash { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255,255,255,0.92); }
  .gu-fcard { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255,255,255,0.95); }
}
