/* ==========================================================
   MONASH TECHNOLOGIES — Main Stylesheet
   Bootstrap 5 + Custom CSS3
   Author: Jos iSOFT Technologies
   Version: 1.0.0
   ========================================================== */

/* ── Google Fonts ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --primary:        #2d2b8c;
  --primary-dark:   #1e1c6e;
  --primary-light:  #4a3fa8;
  --accent:         #c0392b;
  --accent-dark:    #a93226;
  --accent2:        #5b84b1;
  --light-blue:     #a8c4e0;
  --mauve:          #7b6fbd;
  --gold:           #ffd700;
  --white:          #ffffff;
  --off-white:      #f7f8fc;
  --light-gray:     #f0f2f7;
  --text:           #1a1a2e;
  --text-light:     #374151;
  --muted:          #6b7280;
  --border:         #e5e7eb;
  --border-dark:    #d1d5db;
  --shadow-sm:      0 2px 8px rgba(45, 43, 140, 0.07);
  --shadow:         0 8px 32px rgba(45, 43, 140, 0.10);
  --shadow-lg:      0 20px 60px rgba(45, 43, 140, 0.14);
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { transition: var(--transition); }
h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.18; }

/* ── Selection ──────────────────────────────────────────── */
::selection { background: var(--primary); color: #fff; }

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ── Page Loader ────────────────────────────────────────── */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s, visibility 0.5s;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  animation: loaderFill 1.2s ease forwards;
}
@keyframes loaderFill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ═══════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════ */

.section-tag {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(192, 57, 43, 0.08);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-tag--light { color: var(--gold); background: rgba(255,215,0,0.1); }
.section-tag--blue  { color: var(--accent2); background: rgba(91,132,177,0.1); }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.18;
}
.section-title--white { color: #fff; }

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.75;
}
.section-desc--light { color: rgba(255,255,255,0.72); }

.text-primary-brand { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-gold   { color: var(--gold)   !important; }

/* ── Divider ────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 10px;
  margin: 16px 0 28px;
}
.divider--center { margin-left: auto; margin-right: auto; }
.divider--white  { background: linear-gradient(90deg, var(--gold), rgba(255,255,255,0.4)); }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary-brand {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-primary-brand:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 43, 140, 0.28);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.28);
}
.btn-outline-brand {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-outline-brand:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.93rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.93rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 8px 20px; font-size: 0.83rem; }
.btn-lg { padding: 15px 42px; font-size: 1rem; }

/* ── Badges ─────────────────────────────────────────────── */
.badge-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ═══════════════════════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════════════════════ */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar a { color: rgba(255,255,255,0.75); text-decoration: none; transition: var(--transition); }
.topbar a:hover { color: #fff; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar {
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(45,43,140,0.14); }

.navbar-brand { padding: 10px 0; }
.brand-wrap { display: flex; align-items: center; gap: 12px; }
.brand-logo-svg { width: 48px; height: 48px; flex-shrink: 0; }
.brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.06em;
  line-height: 1;
}
.brand-tagline {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.navbar .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  padding: 26px 15px;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.25s;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 15px; right: 15px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active-nav { color: var(--primary) !important; }
.navbar .nav-link:hover::after,
.navbar .nav-link.active-nav::after { transform: scaleX(1); }

/* Dropdown */
.navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 10px 0;
  margin-top: 0;
  border-top: 3px solid var(--accent);
  min-width: 220px;
}
.navbar .dropdown-item {
  font-size: 0.86rem;
  font-weight: 500;
  padding: 9px 22px;
  color: var(--text);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .dropdown-item i { color: var(--primary); width: 16px; font-size: 0.78rem; }
.navbar .dropdown-item:hover {
  background: rgba(45,43,140,0.05);
  color: var(--primary);
  padding-left: 28px;
}
.navbar .dropdown-divider { margin: 6px 0; border-color: var(--border); }

/* Nav CTA */
.nav-cta-btn {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 22px !important;
  margin-left: 8px;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: var(--accent-dark) !important; color: #fff !important; transform: translateY(-1px); }

/* Mobile nav */
@media (max-width: 991px) {
  .navbar .nav-link { padding: 12px 16px !important; }
  .navbar .nav-link::after { display: none; }
  .nav-cta-btn { margin: 8px 0; }
  .navbar-collapse { border-top: 1px solid var(--border); margin-top: 8px; padding-bottom: 12px; }
}

/* ═══════════════════════════════════════════════════════
   TICKER / MARQUEE
   ═══════════════════════════════════════════════════════ */
.ticker-bar {
  background: var(--accent);
  padding: 11px 0;
  overflow: hidden;
}
.ticker-wrap { display: flex; overflow: hidden; }
.ticker-track {
  display: flex;
  gap: 56px;
  animation: tickerMove 32s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.ticker-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.45); }
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (Inner Pages)
   ═══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-orb-1 {
  width: 360px; height: 360px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(192,57,43,0.18) 0%, transparent 70%);
}
.page-hero-orb-2 {
  width: 240px; height: 240px;
  bottom: -60px; left: 10%;
  background: radial-gradient(circle, rgba(91,132,177,0.15) 0%, transparent 70%);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.page-hero .lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
}
.breadcrumb-custom { display: flex; align-items: center; gap: 8px; list-style: none; padding: 0; margin: 20px 0 0; }
.breadcrumb-custom li { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 500; }
.breadcrumb-custom li a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb-custom li a:hover { color: #fff; }
.breadcrumb-custom li.active { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); font-size: 0.7rem; }

/* ═══════════════════════════════════════════════════════
   HOME HERO
   ═══════════════════════════════════════════════════════ */
.home-hero {
  min-height: 92vh;
  background: #0a0a1a;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,40,0.82) 0%, rgba(30,20,80,0.72) 45%, rgba(20,30,90,0.68) 100%);
  z-index: 1;
}
.home-hero-grid {
  position: absolute;
  inset: 0;
/*  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);*/
  background-size: 60px 60px;
  z-index: 2;
}
.home-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}
.home-hero-orb-1 {
  width: 600px; height: 600px;
  right: -120px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(165,125,255,0.1) 0%, transparent 65%);
  border: 1px solid rgba(255,255,255,0.06);
}
.home-hero-orb-2 {
  width: 400px; height: 400px;
  right: 60px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
  border: 1px solid rgba(255,255,255,0.05);
}
.home-hero-orb-3 {
  width: 200px; height: 200px;
  left: 5%; bottom: 10%;
  background: radial-gradient(circle, rgba(91,132,177,0.18) 0%, transparent 70%);
}
.home-hero > .container {
  position: relative;
  z-index: 4;
}
.home-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.home-hero h1 .highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.home-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.78;
  margin-bottom: 36px;
}
.hero-stats-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 36px;
  margin-top: 36px;
  /*border-top: 1px solid rgba(255,255,255,0.12);*/
}
.hero-stat-item .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-item .label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero visual panel */
.hero-visual-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-panel-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 30px;
  width: 320px;
}
.hero-panel-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.hero-service-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
}
.hero-service-row:last-child { border-bottom: none; }
.hero-service-row i { color: var(--gold); font-size: 0.78rem; }

.hero-float {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.hero-float-1 { top: 20px; right: -30px; }
.hero-float-2 { bottom: 40px; left: -40px; }
.hero-float-3 { top: 140px; left: -50px; }
.float-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 7px;
}
.fi-red   { background: rgba(192,57,43,0.3); color: #ff8a80; }
.fi-blue  { background: rgba(91,132,177,0.3); color: #90caf9; }
.fi-gold  { background: rgba(255,215,0,0.2);  color: var(--gold); }
.float-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); font-weight: 600; }
.float-value { font-size: 1rem; color: #fff; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }

@media (max-width: 991px) {
  .home-hero { min-height: auto; padding: 80px 0 60px; }
  .hero-float-3 { display: none; }
  .hero-float-1 { right: -10px; }
  .hero-float-2 { left: -10px; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════ */
.about-section { padding: 100px 0; background: var(--off-white); }

.about-image-wrap { position: relative; display: inline-block; width: 100%; }
.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-img-placeholder {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 10px 32px rgba(192,57,43,0.32);
  text-align: center;
  z-index: 2;
}
.about-badge .big { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about-badge .small { font-size: 0.75rem; font-weight: 600; opacity: 0.85; margin-top: 4px; }

.about-feature-item { display: flex; gap: 16px; margin-bottom: 26px; }
.afi-icon {
  width: 50px; height: 50px; min-width: 50px;
  border-radius: var(--radius);
  background: rgba(45,43,140,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  transition: var(--transition);
}
.about-feature-item:hover .afi-icon { background: var(--primary); color: #fff; }
.afi-content h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.afi-content p { font-size: 0.87rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services-section { padding: 100px 0; background: #fff; }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--mauve));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.sc-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: rgba(45,43,140,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .sc-icon { background: var(--primary); color: #fff; transform: scale(1.06); }
.service-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.service-card p { font-size: 0.89rem; color: var(--muted); line-height: 1.68; margin: 0; }
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.25s, color 0.25s;
}
.sc-link:hover { gap: 10px; color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   SOLUTIONS
   ═══════════════════════════════════════════════════════ */
.solutions-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.solutions-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 55px 55px;
}
.sol-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  height: 100%;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.sol-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-5px);
}
.sol-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,215,0,0.22);
  line-height: 1;
  margin-bottom: 14px;
}
.sol-card h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.sol-card p { font-size: 0.88rem; color: rgba(255,255,255,0.63); line-height: 1.65; margin: 0; }
.sol-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,215,0,0.1);
  padding: 3px 12px;
  border-radius: 20px;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════════════════ */
.why-section { padding: 100px 0 100px 0; background: var(--off-white); }

.why-visual-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--mauve) 100%);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.why-visual-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.why-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-stat-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.why-stat-box .big { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
.why-stat-box .label { font-size: 0.78rem; color: rgba(255,255,255,0.72); margin-top: 5px; font-weight: 500; }

.cert-strip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 20px;
}
.cert-item { display: flex; align-items: center; gap: 14px; }
.cert-item + .cert-item { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); }
.cert-item .title { color: #fff; font-weight: 700; font-size: 0.88rem; }
.cert-item .sub   { color: rgba(255,255,255,0.52); font-size: 0.76rem; }

.why-list { list-style: none; padding: 0; margin: 0 0 32px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.62;
}
.why-list li:last-child { border-bottom: none; }
.why-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   WORKFLOW MODULES (TABS)
   ═══════════════════════════════════════════════════════ */
.modules-section { padding: 100px 0; background: #fff; }

.module-tabs-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; justify-content: center; }
.mod-tab {
  font-size: 0.84rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.mod-tab.active, .mod-tab:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.mod-content { animation: fadeSlide 0.4s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.mod-feature {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  height: 100%;
}
.mod-feature:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.mf-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 10px;
  background: rgba(45,43,140,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.mod-feature h6 { font-size: 0.94rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.mod-feature p  { font-size: 0.84rem; color: var(--muted); margin: 0; line-height: 1.58; }

/* ═══════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════ */
.gallery-section { padding: 100px 0; background: var(--off-white); }

.gallery-filter-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.gf-btn {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 22px;
  border-radius: 30px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.gf-btn.active, .gf-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.gallery-grid-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px)  { .gallery-grid-wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .gallery-grid-wrap { grid-template-columns: 1fr; } }

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-card-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.5s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gallery-card:hover .gallery-card-inner { transform: scale(1.08); }
.gallery-card-inner i { font-size: 2.5rem; color: rgba(255,255,255,0.3); }
.gallery-card-inner span { font-size: 0.78rem; color: rgba(255,255,255,0.4); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,28,110,0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 24px;
  text-align: center;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i   { color: var(--gold); font-size: 1.5rem; margin-bottom: 10px; }
.gallery-overlay h5  { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.gallery-overlay p   { color: rgba(255,255,255,0.7); font-size: 0.82rem; margin: 0; font-family: 'Inter', sans-serif; }

/* Gallery color themes */
.gc-1 { background: linear-gradient(135deg, var(--primary) 0%, var(--mauve) 100%); }
.gc-2 { background: linear-gradient(135deg, #1565c0, #42a5f5); }
.gc-3 { background: linear-gradient(135deg, var(--accent), #e57373); }
.gc-4 { background: linear-gradient(135deg, #2e7d32, #81c784); }
.gc-5 { background: linear-gradient(135deg, #e65100, #ffb74d); }
.gc-6 { background: linear-gradient(135deg, #4a148c, #ce93d8); }
.gc-7 { background: linear-gradient(135deg, #006064, #4dd0e1); }
.gc-8 { background: linear-gradient(135deg, #37474f, #90a4ae); }
.gc-9 { background: linear-gradient(135deg, #b71c1c, #ef9a9a); }

/* ═══════════════════════════════════════════════════════
   INSIGHTS / BLOG
   ═══════════════════════════════════════════════════════ */
.insights-section { padding: 100px 0; background: #fff; }

.insight-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
}
.insight-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.insight-thumb {
  height: 200px;
  overflow: hidden;
}
.insight-thumb-inner {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.insight-card:hover .insight-thumb-inner { transform: scale(1.06); }

.insight-cat-tag {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(192,57,43,0.07);
  padding: 3px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
.insight-body { padding: 24px; }
.insight-body h5 {
  font-size: 1.04rem; font-weight: 700;
  color: var(--text);
  line-height: 1.42;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.insight-card:hover .insight-body h5 { color: var(--primary); }
.insight-body p { font-size: 0.86rem; color: var(--muted); line-height: 1.67; margin-bottom: 16px; }
.insight-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.77rem; color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.insight-meta i { margin-right: 4px; color: var(--accent2); }

/* ═══════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════ */
.cta-section {
  padding: 88px 0;
  background: linear-gradient(135deg, #6499cb 0%, #6499cb 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 55%),
              radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 55%);
}
.cta-section h2    { color: #000; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.cta-section .lead { color: rgba(6 6 6); font-size: 1.05rem; max-width: 540px; margin: 0 auto 36px; line-height: 1.72; }

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact-section { padding: 100px 0; background: var(--off-white); }

.contact-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow);
}
@media (max-width: 576px) { .contact-form-box { padding: 28px 20px; } }

.form-label { font-size: 0.83rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-label span { color: var(--accent); }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
  background: var(--off-white);
  font-family: 'Inter', sans-serif;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,43,140,0.08);
  background: #fff;
  outline: none;
}
textarea.form-control { min-height: 130px; resize: vertical; }

.contact-info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.ci-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: var(--radius);
  background: rgba(45,43,140,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--primary);
}
.ci-label { font-size: 0.78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.ci-value { font-size: 0.95rem; color: var(--text); font-weight: 500; margin: 0; }
.ci-value a { color: var(--text); text-decoration: none; }
.ci-value a:hover { color: var(--primary); }

.social-links-wrap { display: flex; gap: 10px; margin-top: 30px; }
.social-link-btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(45,43,140,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
.social-link-btn:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════
   PRODUCTS PAGE
   ═══════════════════════════════════════════════════════ */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.product-card-header {
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.product-card-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.45) 100%);
}
.product-card-header i { font-size: 3rem; color: rgba(255,255,255,0.55); position: relative; z-index: 1; }
.product-card-body { padding: 26px; }
.product-card-body h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
.product-card-body p  { font-size: 0.87rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.product-tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.product-tag {
  font-size: 0.7rem; font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(45,43,140,0.06);
  color: var(--primary);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════
   TEAM CARDS
   ═══════════════════════════════════════════════════════ */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #fff;
}
.team-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.team-bio  { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }
.team-socials { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.team-social-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(45,43,140,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
.team-social-btn:hover { background: var(--primary); color: #fff; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials-section { padding: 100px 0; background: var(--off-white); }
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--border-dark);
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.testi-card p { font-size: 0.93rem; color: var(--text-light); line-height: 1.75; font-style: italic; margin-bottom: 22px; }
.testi-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 14px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-name  { font-size: 0.94rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.testi-title { font-size: 0.78rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  background: var(--primary-dark);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.68);
}
.footer-brand .name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
}
.footer-desc { font-size: 0.875rem; line-height: 1.75; margin: 14px 0 22px; max-width: 280px; }
.footer-cert { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-cert + .footer-cert { margin-top: 8px; }
.footer-cert i { font-size: 1rem; }

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  color: rgba(255,255,255,0.62);
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-nav a i { font-size: 0.58rem; color: var(--accent); }
.footer-nav a:hover { color: #fff; padding-left: 5px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--accent); width: 16px; margin-top: 2px; font-size: 0.9rem; }
.footer-contact-item span { font-size: 0.86rem; color: rgba(255,255,255,0.6); line-height: 1.55; }
.footer-contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }

.footer-social-row { display: flex; gap: 10px; margin-top: 18px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-social-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  margin-top: 50px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.38); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.52); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════
   FLOATING ELEMENTS
   ═══════════════════════════════════════════════════════ */

/* WhatsApp */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9998;
  text-decoration: none;
}
.wa-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  z-index: 2;
}
.wa-float:hover .wa-btn { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: waPulse 2s infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.85); opacity: 0;   }
}

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9997;
  box-shadow: 0 4px 16px rgba(45,43,140,0.32);
}
#backToTop.visible { opacity: 1; pointer-events: auto; }
#backToTop:hover { transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .about-badge { right: 0; }
  .why-visual-box { margin-bottom: 40px; }
}
@media (max-width: 767px) {
  .hero-stats-row { gap: 22px; }
  .contact-form-box { padding: 28px 20px; }
  .why-visual-box { padding: 28px 24px; }
}
@media (max-width: 576px) {
  .hero-float-3 { display: none; }
}
/**
 * Floating Buttons Styles
 * WhatsApp and LinkedIn floating action buttons
 */

/* ============================================
   SHARED FLOATING BUTTON STYLES
   ============================================ */

.wa-float,
.linkedin-float {
  position: fixed;
  right: 20px;
  z-index: 999;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
  opacity: 1;
  visibility: visible;
}

.wa-float[aria-hidden="true"],
.linkedin-float[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.wa-float {
  bottom: 20px;
  animation: slideInRight 0.5s ease-out 0.1s backwards;
}

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.15);
  animation: pulse 2s ease-in-out infinite;
}

.wa-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #1a9c56 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.wa-float:hover .wa-btn {
  background: linear-gradient(135deg, #1a9c56 0%, #128c46 100%);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  transform: translateY(-4px) scale(1.08);
}

.wa-float:active .wa-btn {
  transform: translateY(-2px) scale(0.95);
}

/* ============================================
   LINKEDIN FLOATING BUTTON
   ============================================ */

.linkedin-float {
  bottom: 90px;
  animation: slideInRight 0.5s ease-out 0.2s backwards;
}

.linkedin-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.linkedin-float:hover .linkedin-btn {
  background: linear-gradient(135deg, #005885 0%, #003d5c 100%);
  box-shadow: 0 8px 24px rgba(0, 119, 181, 0.6);
  transform: translateY(-4px) scale(1.08);
}

.linkedin-float:active .linkedin-btn {
  transform: translateY(-2px) scale(0.95);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

#backToTop {
  position: fixed;
  bottom: 160px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: slideInRight 0.5s ease-out 0.3s backwards;
}

#backToTop[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#backToTop:hover {
  background: linear-gradient(135deg, #495057 0%, #343a40 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px) scale(1.08);
}

#backToTop:active {
  transform: translateY(-2px) scale(0.95);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 0.15;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .wa-float,
  .linkedin-float,
  #backToTop {
    right: 15px;
  }

  .wa-float {
    bottom: 15px;
  }

  .linkedin-float {
    bottom: 85px;
  }

  #backToTop {
    bottom: 155px;
  }

  .wa-btn,
  .linkedin-btn,
  #backToTop {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .wa-pulse {
    display: none;
  }
}

@media (max-width: 480px) {
  .wa-float,
  .linkedin-float,
  #backToTop {
    right: 12px;
  }

  .wa-float {
    bottom: 12px;
  }

  .linkedin-float {
    bottom: 80px;
  }

  #backToTop {
    bottom: 150px;
  }

  .wa-btn,
  .linkedin-btn,
  #backToTop {
    width: 52px;
    height: 52px;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

@media (prefers-color-scheme: dark) {
  .wa-btn {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }

  .wa-float:hover .wa-btn {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  }

  .linkedin-btn {
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
  }

  .linkedin-float:hover .linkedin-btn {
    box-shadow: 0 8px 24px rgba(0, 119, 181, 0.5);
  }

  #backToTop {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  }

  #backToTop:hover {
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus visible styles for keyboard navigation */
.wa-float:focus-visible,
.linkedin-float:focus-visible,
#backToTop:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .wa-float,
  .linkedin-float,
  #backToTop,
  .wa-btn,
  .linkedin-btn {
    animation: none !important;
    transition: none !important;
  }

  .wa-pulse {
    animation: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  .wa-btn,
  .linkedin-btn,
  #backToTop {
    box-shadow: 0 0 0 2px currentColor;
  }
}
/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════════════════ */
.hero-slider { position: relative; min-height: 160px; }
.hero-slide  { display: none; animation: fadeSlide .6s ease; }
.hero-slide.active { display: block; }
@keyframes fadeSlide {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-slide h1 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); line-height:1.2; font-weight:700; color:#fff; }
.hero-slide p  { color:rgba(255,255,255,.75); font-size:1.1rem; margin-top:.75rem; }

/* ═══════════════════════════════════════════════════════════
   SECTORS SERVED
═══════════════════════════════════════════════════════════ */
.sectors-section { padding: 60px 0; background: var(--bg-light, #f8f9fb); overflow:hidden; }
.sectors-ticker  { overflow:hidden; position:relative; }
.sectors-track   {
  display:flex; gap:1rem; width:max-content;
  animation: tickerScroll 30s linear infinite;
}
.sectors-ticker:hover .sectors-track { animation-play-state:paused; }
@keyframes tickerScroll {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
.sector-chip {
  display:flex; align-items:center; gap:.6rem;
  background:#fff; border:1px solid #e0e4ed;
  border-radius:50px; padding:.55rem 1.25rem;
  white-space:nowrap; font-size:.92rem; font-weight:600;
  color:var(--primary, #2d2b8c);
  box-shadow:0 2px 8px rgba(0,0,0,.06);
  transition:background .25s, color .25s, transform .25s;
  cursor:default;
}
.sector-chip:hover {
  background:var(--primary, #2d2b8c); color:#fff; transform:translateY(-2px);
}
.sector-chip i { font-size:1rem; }

/* ═══════════════════════════════════════════════════════════
   CORE VALUES
═══════════════════════════════════════════════════════════ */
.values-section { padding:80px 0; background:#fff; }
.value-card {
  background:#fff; border:1px solid #e8eaf0; border-radius:var(--radius-lg, 16px);
  padding:2rem 1.75rem; height:100%;
  transition:box-shadow .3s, transform .3s, border-color .3s;
  text-align:center;
}
.value-card:hover {
  box-shadow:0 12px 36px rgba(45,43,140,.12);
  border-color:var(--primary, #2d2b8c);
  transform:translateY(-4px);
}
.vc-icon {
  width:64px; height:64px; border-radius:50%;
  background:linear-gradient(135deg, var(--primary,#2d2b8c), #5a56d4);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.25rem;
  font-size:1.5rem; color:#fff;
}
.value-card h4 { font-size:1.1rem; font-weight:700; color:var(--dark,#1a1a2e); margin-bottom:.75rem; }
.value-card p  { font-size:.92rem; color:#6b7280; line-height:1.7; margin:0; }

/* ═══════════════════════════════════════════════════════════
   EVENTS SECTION
═══════════════════════════════════════════════════════════ */
.events-section { padding:80px 0; background:var(--bg-light,#f8f9fb); }
.event-card {
  background:#fff; border-radius:var(--radius-lg,16px); overflow:hidden;
  border:1px solid #e8eaf0; height:100%;
  transition:box-shadow .3s, transform .3s;
}
.event-card:hover { box-shadow:0 12px 36px rgba(45,43,140,.12); transform:translateY(-4px); }
.event-thumb {
  height:200px; background-size:cover; background-position:center;
  position:relative;
}
.event-thumb::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.4),transparent);
}
.event-body { padding:1.5rem; }
.event-body h5 { font-size:1.05rem; font-weight:700; color:var(--dark,#1a1a2e); margin-bottom:.6rem; }
.event-meta  { display:flex; flex-direction:column; gap:.3rem; margin-bottom:.8rem; }
.event-meta span { font-size:.85rem; color:#6b7280; display:flex; align-items:center; gap:.4rem; }
.event-body p  { font-size:.9rem; color:#6b7280; line-height:1.65; margin-bottom:1rem; }

/* Ticker bar – remove UI/UX from services, add tech items */

.custom-logo-header{
  height: 45px !important;
  width: 100% !important;
}

.custom-logo-footer {
    height: 75% !important;
    width: 60% !important;
}