/* SnapTech — enterprise IT & security systems, Qatar. Corporate navy/indigo theme.
   Consumes CSS vars from layout/theme :: tenantHead (--color-primary/secondary/accent, fonts). */

:root{
  --st-navy: var(--color-primary, #1b2a5b);
  --st-indigo: var(--color-secondary, #3e3a6e);
  --st-accent: var(--color-accent, #3d5af1);
  --st-ink: #16203d;
  --st-muted: #5b6478;
  --st-line: #e6e9f2;
  --st-bg-alt: #f6f8fc;
  --st-radius: 14px;
  --st-shadow: 0 10px 30px rgba(27,42,91,.08);
  --st-shadow-lg: 0 24px 60px rgba(27,42,91,.16);
}

body{
  font-family: var(--font-body, 'Inter', system-ui, sans-serif);
  color: var(--st-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,.st-heading{ font-family: var(--font-heading, 'Manrope', sans-serif); letter-spacing:-.02em; }
a{ text-decoration:none; }

/* Wider content on large screens — less empty gutter at the sides */
@media (min-width:1200px){ .container{ max-width:1320px; } }
@media (min-width:1600px){ .container{ max-width:1460px; } }

/* ── Top bar ── */
.st-topbar{
  background: var(--st-navy); color:#cdd6f4; font-size:.82rem;
}
.st-topbar .container{ display:flex; gap:1.25rem; align-items:center; justify-content:flex-end; padding:.5rem 12px; flex-wrap:wrap; }
.st-topbar a{ color:#e7ecfb; display:inline-flex; gap:.4rem; align-items:center; }
.st-topbar a:hover{ color:#fff; }
.st-topbar svg{ width:14px; height:14px; fill:currentColor; }

/* ── Nav ── */
.st-nav{
  background:rgba(255,255,255,.72); -webkit-backdrop-filter:blur(14px) saturate(1.6); backdrop-filter:blur(14px) saturate(1.6);
  padding:.55rem 0; position:sticky; top:0; z-index:1000;
  border-bottom:1px solid rgba(230,233,242,.7); transition:box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.st-nav--scrolled{ background:rgba(255,255,255,.9); box-shadow:0 8px 30px rgba(27,42,91,.12); border-color:transparent; }
.st-brand{ display:inline-flex; align-items:center; }
.st-logo{ height:90px; width:auto; display:block; }
.st-wordmark{ font-family:var(--font-heading); font-weight:800; font-size:2.1rem; color:var(--st-navy); }
.st-menu{ list-style:none; display:flex; gap:.2rem; margin:0; padding:0; align-items:center; }
.st-menu a{
  position:relative; color:var(--st-ink); font-weight:600; font-size:.94rem; padding:.5rem .8rem; border-radius:8px;
  transition:color .18s;
}
/* animated underline that grows on hover / active section */
.st-menu a::after{
  content:""; position:absolute; left:.8rem; right:.8rem; bottom:.24rem; height:2px; border-radius:2px;
  background:var(--st-accent); transform:scaleX(0); transform-origin:left; transition:transform .25s ease;
}
.st-menu a:hover{ color:var(--st-accent); }
.st-menu a:hover::after, .st-menu a.active::after{ transform:scaleX(1); }
.st-menu a.active{ color:var(--st-accent); }
.st-menu a.st-cta-btn::after{ display:none; }          /* the CTA pill gets no underline */
.st-menu a.st-cta-btn:hover, .st-menu a.st-cta-btn.active{ color:#fff; }
.st-cta-btn{
  background:var(--st-accent); color:#fff !important; border-radius:9px; padding:.6rem 1.15rem !important;
  font-weight:700; box-shadow:0 8px 20px rgba(61,90,241,.28);
}
.st-cta-btn:hover{ background:#2f49d8; color:#fff !important; }
.st-nav-toggle{ display:none; background:none; border:0; font-size:1.5rem; color:var(--st-navy); line-height:1; }

/* ── Hero ── */
.st-hero{
  position:relative; color:#fff; overflow:hidden;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(61,90,241,.45), transparent 60%),
    radial-gradient(900px 500px at 5% 110%, rgba(62,58,110,.55), transparent 55%),
    linear-gradient(135deg, #16224a 0%, var(--st-navy) 55%, var(--st-indigo) 100%);
  padding:5.5rem 0 5rem;
}
.st-hero::after{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:44px 44px; mask-image:radial-gradient(70% 70% at 70% 20%, #000, transparent);
}
.st-hero .container{ position:relative; z-index:1; }
.st-badge{
  display:inline-flex; align-items:center; gap:.5rem; background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22); border-radius:999px; padding:.4rem .9rem;
  font-size:.8rem; font-weight:600; letter-spacing:.02em; margin-bottom:1.1rem;
}
.st-badge::before{ content:""; width:7px; height:7px; border-radius:50%; background:#48d597; box-shadow:0 0 0 4px rgba(72,213,151,.25); }
.st-hero-title{ font-size:clamp(2.1rem, 5vw, 3.6rem); font-weight:800; line-height:1.06; margin:0 0 1rem; max-width:16ch; }
.st-hero-title .accent{ color:#8ea2ff; }
.st-hero-tagline{ font-size:clamp(1.05rem,2vw,1.35rem); color:#c7d0ee; font-weight:500; margin-bottom:.4rem; }
.st-hero-sub{ color:#aab5dc; max-width:52ch; margin-bottom:1.9rem; }
.st-hero-actions{ display:flex; gap:.8rem; flex-wrap:wrap; }
.st-btn{
  display:inline-flex; align-items:center; gap:.5rem; border-radius:10px; padding:.85rem 1.5rem;
  font-weight:700; font-size:1rem; transition:transform .15s, box-shadow .2s, background .2s;
}
.st-btn-primary{ background:var(--st-accent); color:#fff; box-shadow:0 12px 30px rgba(61,90,241,.4); }
.st-btn-primary:hover{ background:#2f49d8; color:#fff; transform:translateY(-2px); }
.st-btn-ghost{ background:rgba(255,255,255,.08); color:#fff; border:1px solid rgba(255,255,255,.28); }
.st-btn-ghost:hover{ background:rgba(255,255,255,.16); color:#fff; }
.st-hero-stats{ display:flex; gap:2.2rem; margin-top:2.6rem; flex-wrap:wrap; }
.st-hero-stat b{ display:block; font-family:var(--font-heading); font-size:1.6rem; font-weight:800; color:#fff; }
.st-hero-stat span{ font-size:.82rem; color:#aab5dc; }

/* Two-column hero: copy left, capability panel right */
.st-hero-wrap{ display:grid; grid-template-columns:1.05fr .95fr; gap:3rem; align-items:center; }
.st-hero-copy{ min-width:0; }
.st-hero-panel{
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.15); border-radius:20px;
  padding:1.4rem; box-shadow:0 24px 60px rgba(0,0,0,.35); backdrop-filter:blur(4px);
}
.st-hero-panel-title{ font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:#8ea2ff; margin:.2rem .3rem 1rem; }
.st-hero-panel-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:.8rem; }
.st-hero-tile{ background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); border-radius:14px; padding:.9rem; display:flex; gap:.7rem; align-items:center; }
.st-hero-tile-ico{ width:40px; height:40px; border-radius:10px; background:rgba(61,90,241,.28); display:grid; place-items:center; font-size:1.15rem; flex:0 0 auto; }
.st-hero-tile b{ display:block; color:#fff; font-size:.9rem; font-weight:700; line-height:1.15; }
.st-hero-tile span{ color:#aab5dc; font-size:.74rem; }
/* Full-bleed background video hero (text centered over the video) */
.st-hero--video{ min-height:86vh; display:flex; align-items:center; padding:5rem 0; }
.st-hero--video::after{ display:none; }              /* drop the grid texture behind the video */
.st-hero-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.st-hero-overlay{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(13,18,40,.70) 0%, rgba(17,22,52,.84) 100%);
}
.st-hero--video .st-hero-inner{ position:relative; z-index:2; text-align:center; max-width:860px; margin:0 auto; }
.st-hero--video .st-hero-title{ max-width:20ch; margin:0 auto 1rem; }
.st-hero--video .st-hero-sub{ margin:0 auto 1.9rem; }
.st-hero--video .st-hero-actions{ justify-content:center; }
.st-hero--video .st-hero-stats{ justify-content:center; gap:2.6rem; }

/* ── Sections ── */
.st-section{ padding:6rem 0; }
.st-section-alt{ background:var(--st-bg-alt); }
.st-eyebrow{ text-align:center; color:var(--st-accent); font-weight:700; font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:.6rem; }
.st-section-title{ text-align:center; font-size:clamp(1.7rem,3vw,2.4rem); font-weight:800; margin:0 0 .7rem; color:var(--st-ink); }
.st-section-sub{ text-align:center; color:var(--st-muted); max-width:62ch; margin:0 auto 3.4rem; }

/* ── Cards (services + solutions) ── */
.st-grid{ display:grid; gap:1.5rem; grid-template-columns:repeat(auto-fill, minmax(250px,1fr)); }
.st-card{
  background:#fff; border:1px solid var(--st-line); border-radius:18px; padding:1.7rem 1.5rem;
  box-shadow:var(--st-shadow); transition:transform .22s, box-shadow .22s, border-color .22s; height:100%;
  display:flex; flex-direction:column; color:var(--st-ink); text-decoration:none;
}
.st-card:hover{ transform:translateY(-6px); box-shadow:var(--st-shadow-lg); border-color:#c9d2f0; }
.st-card-icon{
  width:54px; height:54px; border-radius:14px; display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(61,90,241,.14), rgba(62,58,110,.14)); color:var(--st-accent); margin-bottom:1.1rem;
  transition:transform .22s ease;
}
.st-card:hover .st-card-icon{ transform:translateY(-2px) scale(1.06); }
/* SVG icon sizing (line-icon set) */
.st-card-icon svg{ width:26px; height:26px; }
.st-why-ico svg{ width:22px; height:22px; }
.st-prod-icon svg{ width:30px; height:30px; }
.st-prod-illus-icon{ color:var(--st-accent); }
.st-prod-illus-icon svg{ width:52px; height:52px; }
.st-blog-thumb-icon{ color:rgba(255,255,255,.92); }
.st-blog-thumb-icon svg{ width:42px; height:42px; }
.st-card-title{ font-size:1.08rem; font-weight:700; margin:0 0 .4rem; color:var(--st-ink); }
.st-card-desc{ color:var(--st-muted); font-size:.9rem; margin:0 0 1rem; flex:1; }
.st-card-link{ color:var(--st-accent); font-weight:700; font-size:.86rem; display:inline-flex; align-items:center; gap:.3rem; margin-top:auto; }
.st-card-link::after{ content:"→"; transition:transform .2s; }
.st-card:hover .st-card-link::after{ transform:translateX(4px); }

/* ── Why us / trust ── */
.st-why{ display:grid; gap:1.4rem; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); }
.st-why-item{ display:flex; gap:.9rem; }
.st-why-ico{ flex:0 0 auto; width:44px; height:44px; border-radius:10px; background:var(--st-navy); color:#fff; display:grid; place-items:center; font-size:1.2rem; }
.st-why-item h4{ font-size:1.02rem; margin:0 0 .25rem; }
.st-why-item p{ color:var(--st-muted); font-size:.9rem; margin:0; }

/* ── Portfolio cards ── */
.st-port-meta{ color:var(--st-accent); font-weight:600; font-size:.82rem; margin:-.15rem 0 .5rem; }
.st-port-tags{ display:flex; flex-wrap:wrap; gap:.4rem; margin-top:auto; padding-top:.7rem; }
.st-port-tag{
  font-size:.72rem; font-weight:600; color:var(--st-muted);
  background:var(--st-bg-alt); border:1px solid var(--st-line); border-radius:999px; padding:.2rem .6rem;
}
.st-section-alt .st-port-tag{ background:#fff; }

/* ── Blog ── */
.st-blog-thumb{
  margin:-1.5rem -1.35rem 1.1rem; height:150px; border-radius:var(--st-radius) var(--st-radius) 0 0;
  display:grid; place-items:center; background-size:cover; background-position:center;
  background-image:linear-gradient(135deg, #1b2a5b, #3e3a6e);
}
.st-blog-thumb--sw{ background-image:linear-gradient(135deg, #24347a, #3d5af1); }
.st-blog-thumb-icon{ font-size:2.4rem; filter:drop-shadow(0 4px 10px rgba(0,0,0,.28)); }
.st-blog-meta{ color:var(--st-accent); font-weight:600; font-size:.8rem; margin:0 0 .4rem; }

/* ── Trust bar / technology partners (grayscale logo strip) ── */
.st-trust{ padding:2.2rem 0; border-bottom:1px solid var(--st-line); background:#fff; }
.st-trust-title{ text-align:center; color:var(--st-muted); font-size:.8rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase; margin:0 0 1.3rem; }
.st-trust-logos{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:1.4rem 2.8rem; }
.st-trust-logos img{ height:34px; width:auto; opacity:.6; filter:grayscale(1); transition:opacity .2s ease, filter .2s ease; }
.st-trust-logos img:hover{ opacity:1; filter:grayscale(0); }
.st-trust-logos--lg img{ height:46px; }

/* Client-logo marquee — fades at both edges, scrolls left→right, pauses on hover */
.st-marquee{ overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.st-marquee-track{ display:flex; align-items:center; gap:2.8rem; width:max-content; will-change:transform; animation:st-marquee-scroll var(--st-marquee-dur,30s) linear infinite; }
.st-marquee:hover .st-marquee-track{ animation-play-state:paused; }
.st-marquee-track img{ flex:0 0 auto; height:48px; width:auto; opacity:.92; transition:opacity .2s ease, transform .2s ease; }
.st-marquee-track img:hover{ opacity:1; transform:scale(1.06); }
@keyframes st-marquee-scroll{ from{ transform:translateX(-50%); } to{ transform:translateX(0); } }
@media (prefers-reduced-motion: reduce){
  .st-marquee-track{ animation:none; flex-wrap:wrap; justify-content:center; width:auto; }
}

/* ── Partners strip ── */
.st-partners{ display:flex; flex-wrap:wrap; gap:1rem 2.4rem; justify-content:center; align-items:center; }
.st-partner{ color:var(--st-muted); font-weight:700; font-size:1.05rem; opacity:.7; }

/* ── CTA band ── */
.st-ctaband{
  background:linear-gradient(120deg, var(--st-navy), var(--st-indigo)); color:#fff; border-radius:20px;
  padding:2.8rem; text-align:center; box-shadow:var(--st-shadow-lg);
}
.st-ctaband h2{ font-size:clamp(1.5rem,2.5vw,2rem); margin:0 0 .6rem; }
.st-ctaband p{ color:#c7d0ee; margin:0 0 1.5rem; }

/* ── Contact ── */
.st-contact-wrap{ display:grid; gap:2rem; grid-template-columns:1fr 1fr; align-items:start; }
.st-contact-info h3{ font-size:1.3rem; margin:0 0 1rem; }
.st-contact-row{ display:flex; gap:.75rem; align-items:flex-start; margin-bottom:1rem; color:var(--st-muted); }
.st-contact-sub{ font-size:.85rem; opacity:.72; }
.st-contact-row svg{ width:20px; height:20px; fill:var(--st-accent); flex:0 0 auto; margin-top:2px; }
.st-form{ background:#fff; border:1px solid var(--st-line); border-radius:var(--st-radius); padding:1.6rem; box-shadow:var(--st-shadow); }
.st-form label{ font-size:.82rem; font-weight:600; color:var(--st-ink); margin-bottom:.25rem; display:block; }
.st-form input, .st-form select, .st-form textarea{
  width:100%; border:1px solid var(--st-line); border-radius:9px; padding:.7rem .85rem; margin-bottom:.9rem;
  font-family:inherit; font-size:.95rem; background:#fbfcff;
}
.st-form input:focus, .st-form select:focus, .st-form textarea:focus{ outline:none; border-color:var(--st-accent); box-shadow:0 0 0 3px rgba(61,90,241,.15); }
.st-form button{ width:100%; }
.st-alert{ background:#e9f9f1; border:1px solid #b7ebd2; color:#0f7a52; padding:.8rem 1rem; border-radius:9px; margin-bottom:1rem; font-size:.9rem; }

/* ── FAQ (bootstrap accordion overrides) ── */
#stFaq .accordion-item{ border:1px solid var(--st-line); border-radius:12px !important; margin-bottom:.7rem; overflow:hidden; }
#stFaq .accordion-button{ font-weight:700; color:var(--st-ink); font-family:var(--font-heading); }
#stFaq .accordion-button:not(.collapsed){ background:var(--st-bg-alt); color:var(--st-navy); box-shadow:none; }
#stFaq .accordion-button:focus{ box-shadow:none; }
#stFaq .accordion-body{ color:var(--st-muted); }

/* ── Footer ── */
.st-footer{ background:var(--st-navy); color:#c7d0ee; padding:3.5rem 0 1.5rem; }
.st-footer-grid{ display:grid; gap:2rem; grid-template-columns:1.5fr 1fr 1fr 1.4fr; margin-bottom:2rem; }
.st-footer-office{ color:#fff; font-weight:700; }
.st-footer-office-2{ margin-top:.9rem; }
.st-footer-hours{ color:#8ea2ff; font-size:.85rem; }
.st-footer-logo{ height:48px; margin-bottom:1rem; }
.st-footer-about{ font-size:.9rem; color:#aab5dc; max-width:38ch; }
.st-footer h5{ color:#fff; font-size:.95rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:1rem; }
.st-footer-menu{ list-style:none; padding:0; margin:0; }
.st-footer-menu li{ margin-bottom:.55rem; }
.st-footer-menu a{ color:#c7d0ee; font-size:.92rem; }
.st-footer-menu a:hover{ color:#fff; }
.st-socials{ display:flex; gap:.6rem; margin-top:1rem; }
.st-social{ width:36px; height:36px; border-radius:9px; background:rgba(255,255,255,.1); display:grid; place-items:center; }
.st-social svg{ width:18px; height:18px; fill:#fff; }
.st-social:hover{ background:var(--st-accent); }
.st-footer-bottom{ border-top:1px solid rgba(255,255,255,.12); padding-top:1.3rem; display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:.85rem; color:#8ea2ff; }
.st-powered{
  display:inline-flex; align-items:center; gap:.5rem;
  background:#fff; color:var(--st-navy); font-size:.8rem; font-weight:600;
  padding:.35rem .8rem .35rem .4rem; border-radius:999px;
  box-shadow:0 6px 18px rgba(0,0,0,.22); transition:transform .2s, box-shadow .2s;
}
.st-powered:hover{ color:var(--st-navy); transform:translateY(-2px); box-shadow:0 10px 24px rgba(0,0,0,.32); }
.st-powered img{ height:26px; width:26px; border-radius:6px; display:block; }
.st-powered strong{ color:var(--st-accent); font-weight:800; }

/* ── Product / service detail page ── */
.st-prod-hero{
  background:linear-gradient(135deg, #16224a 0%, var(--st-navy) 60%, var(--st-indigo) 100%);
  color:#fff; padding:2.6rem 0 2.4rem;
}
.st-back{ display:inline-flex; align-items:center; gap:.4rem; color:#aab5dc; font-weight:600; font-size:.88rem; margin-bottom:1rem; }
.st-back:hover{ color:#fff; }
.st-prod-hero .st-eyebrow{ color:#8ea2ff; margin-bottom:.4rem; }
.st-prod-title{ font-size:clamp(1.7rem,3.5vw,2.6rem); font-weight:800; margin:0 0 .6rem; }
.st-prod-lead{ font-size:1.1rem; color:#c7d0ee; margin:0; max-width:64ch; }
.st-prod-img{ width:100%; border-radius:var(--st-radius); box-shadow:var(--st-shadow); }

/* Illustrated banner when a service/solution has no photo yet (swap via Admin) */
.st-prod-illus{
  position:relative; height:260px; border-radius:var(--st-radius); overflow:hidden;
  display:grid; place-items:center; border:1px solid var(--st-line);
  background:
    radial-gradient(600px 240px at 82% 8%, rgba(61,90,241,.32), transparent 60%),
    linear-gradient(135deg, #eef1fb 0%, #e5eaf7 100%);
}
.st-prod-illus--sol{
  background:
    radial-gradient(600px 240px at 82% 8%, rgba(62,58,110,.34), transparent 60%),
    linear-gradient(135deg, #edeefb 0%, #e7e6f5 100%);
}
.st-prod-illus::after{
  content:""; position:absolute; inset:0; opacity:.55;
  background-image:radial-gradient(rgba(27,42,91,.10) 1.5px, transparent 1.5px);
  background-size:22px 22px;
  -webkit-mask-image:radial-gradient(80% 80% at 50% 40%, #000, transparent);
          mask-image:radial-gradient(80% 80% at 50% 40%, #000, transparent);
}
.st-prod-illus-icon{
  position:relative; z-index:1; width:112px; height:112px; border-radius:26px; display:grid; place-items:center;
  font-size:3.4rem; background:#fff; box-shadow:var(--st-shadow-lg);
}

.st-page-content{ color:#3a4258; font-size:1rem; line-height:1.75; }
.st-page-content h2{ font-size:1.3rem; color:var(--st-ink); margin:1.8rem 0 .8rem; }
.st-page-content h3{ font-size:1.1rem; color:var(--st-ink); margin:1.4rem 0 .6rem; }
.st-page-content p{ margin:0 0 1rem; }
.st-page-content ul{ margin:0 0 1.2rem; padding-left:0; list-style:none; }
.st-page-content ul li{ position:relative; padding-left:1.7rem; margin-bottom:.55rem; }
.st-page-content ul li::before{ content:"✓"; position:absolute; left:0; top:0; color:var(--st-accent); font-weight:800; }
.st-page-content a{ color:var(--st-accent); font-weight:600; }
.st-page-content img{ max-width:100%; height:auto; border-radius:var(--st-radius); margin:1.2rem 0; display:block; }
.st-page-content h1{ font-size:1.7rem; color:var(--st-ink); margin:1.8rem 0 .8rem; }

.st-cta-card{
  position:sticky; top:110px; background:#fff; border:1px solid var(--st-line); border-radius:var(--st-radius);
  padding:1.8rem; box-shadow:var(--st-shadow); text-align:center;
}
.st-prod-icon{
  width:64px; height:64px; margin:0 auto 1rem; border-radius:14px; display:grid; place-items:center; font-size:1.9rem;
  background:linear-gradient(135deg, rgba(61,90,241,.14), rgba(62,58,110,.14)); color:var(--st-accent);
}
.st-cta-card h3{ font-size:1.15rem; margin:0 0 .5rem; }
.st-cta-card p{ color:var(--st-muted); font-size:.92rem; margin:0 0 1.2rem; }
.st-btn-outline{ background:#fff; color:var(--st-navy); border:1.5px solid var(--st-line); }
.st-btn-outline:hover{ border-color:var(--st-accent); color:var(--st-accent); }
.justify-content-center{ justify-content:center; }

/* ── Floating WhatsApp ── */
.st-wa-float{
  position:fixed; right:20px; bottom:20px; z-index:1200; width:56px; height:56px; border-radius:50%;
  background:#25D366; display:grid; place-items:center; box-shadow:0 10px 26px rgba(37,211,102,.5);
  transition:transform .2s;
}
.st-wa-float:hover{ transform:scale(1.08); }
.st-wa-float svg{ width:30px; height:30px; fill:#fff; }
.st-contact-row a{ color:var(--st-ink); }
.st-contact-row a:hover{ color:var(--st-accent); }

/* ── Reveal animation ── */
.st-io{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.st-io.in{ opacity:1; transform:none; }

/* ─────────────────────────────────────────────────────────────
   Premium enhancement layer (on-brand navy/indigo)
   ───────────────────────────────────────────────────────────── */

/* Doha skyline silhouette rising from the base of the hero */
.st-hero-skyline{ position:absolute; left:0; right:0; bottom:-1px; z-index:1; width:100%; pointer-events:none; line-height:0; }
.st-hero-skyline svg{ display:block; width:100%; height:auto; }

/* Larger, animated hero stats (count-up) */
.st-hero-stat b{ font-size:1.95rem; }

/* Buttons: sheen sweep on hover + rounded/shadowed already in .st-btn */
.st-btn{ position:relative; overflow:hidden; }
.st-btn::before{
  content:""; position:absolute; top:0; left:-130%; width:55%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform:skewX(-20deg); transition:left .6s ease; pointer-events:none;
}
.st-btn:hover::before{ left:150%; }
.st-btn svg{ width:18px; height:18px; fill:currentColor; transition:transform .2s ease; }
.st-btn:hover svg{ transform:translateX(3px); }

/* Primary hero CTA: gentle glow pulse to draw the eye (stops on hover) */
@keyframes st-cta-glow{ 0%,100%{ box-shadow:0 12px 30px rgba(61,90,241,.40); } 50%{ box-shadow:0 16px 42px rgba(61,90,241,.68); } }
.st-hero .st-btn-primary{ animation:st-cta-glow 2.8s ease-in-out infinite; }
.st-hero .st-btn-primary:hover{ animation:none; transform:translateY(-2px); }

/* ── Testimonials carousel ── */
.st-testi{ max-width:840px; margin:0 auto; position:relative; }
.st-testi-viewport{ overflow:hidden; border-radius:20px; }
.st-testi-track{ display:flex; transition:transform .5s cubic-bezier(.4,0,.2,1); }
.st-testi-card{
  flex:0 0 100%; margin:0; padding:3rem 2.6rem 2.4rem; background:#fff; border:1px solid var(--st-line);
  border-radius:20px; box-shadow:var(--st-shadow); text-align:center;
}
.st-section-alt .st-testi-card{ background:#fff; }
.st-testi-quote{ position:relative; font-size:1.2rem; line-height:1.75; color:var(--st-ink); margin:0 0 1.6rem; font-weight:500; }
.st-testi-quote::before{
  content:"\201C"; display:block; font-family:Georgia, serif; font-size:3.4rem; line-height:.4;
  color:var(--st-accent); opacity:.35; margin-bottom:.6rem;
}
.st-testi-author{ display:inline-flex; align-items:center; gap:.8rem; }
.st-testi-avatar{
  width:48px; height:48px; border-radius:50%; flex:0 0 auto; display:grid; place-items:center;
  background:linear-gradient(135deg, var(--st-navy), var(--st-indigo)); color:#fff; font-weight:800; font-size:1.05rem;
  font-family:var(--font-heading);
}
.st-testi-meta{ text-align:left; }
.st-testi-name{ display:block; font-weight:700; color:var(--st-ink); line-height:1.2; }
.st-testi-role{ display:block; color:var(--st-muted); font-size:.85rem; }
.st-testi-dots{ display:flex; gap:.5rem; justify-content:center; margin-top:1.5rem; }
.st-testi-dot{
  width:9px; height:9px; padding:0; border:0; border-radius:50%; background:#cfd6ea; cursor:pointer;
  transition:background .2s, transform .2s;
}
.st-testi-dot.active{ background:var(--st-accent); transform:scale(1.3); }
.st-testi-nav{
  position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border-radius:50%;
  background:#fff; border:1px solid var(--st-line); box-shadow:var(--st-shadow); color:var(--st-navy);
  display:grid; place-items:center; cursor:pointer; transition:background .2s, color .2s, box-shadow .2s; z-index:2;
}
.st-testi-nav:hover{ background:var(--st-accent); color:#fff; }
.st-testi-nav svg{ width:20px; height:20px; fill:currentColor; }
.st-testi-prev{ left:-22px; }
.st-testi-next{ right:-22px; }
@media (max-width:920px){ .st-testi-prev{ left:6px; } .st-testi-next{ right:6px; } }

/* Respect reduced-motion preferences for the added animations */
@media (prefers-reduced-motion: reduce){
  .st-hero .st-btn-primary{ animation:none; }
  .st-btn::before{ display:none; }
  .st-testi-track{ transition:none; }
}

/* ── Responsive ── */
@media (max-width: 991px){
  .st-hero-wrap{ grid-template-columns:1fr; }
  .st-hero-panel{ display:none; }
}

@media (max-width: 860px){
  .st-logo{ height:60px; }
  .st-menu{
    position:absolute; top:100%; left:0; right:0; background:#fff; flex-direction:column; align-items:stretch;
    gap:0; padding:.5rem; box-shadow:0 12px 30px rgba(27,42,91,.14); display:none; border-top:1px solid var(--st-line);
  }
  .st-menu.open{ display:flex; }
  .st-menu a{ padding:.85rem 1rem; border-radius:8px; }
  .st-nav-toggle{ display:block; }
  .st-contact-wrap, .st-footer-grid{ grid-template-columns:1fr; }
  .st-topbar .container{ justify-content:center; }
}
