/* ============================================================
   FAST IT SOLUTION — MAIN STYLESHEET
   Dark Jazzy Enterprise Theme
   ============================================================ */

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

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #47b2e4;
  --primary-dark: #1a6ba0;
  --accent-gold: #f0b429;
  --accent-neon: #00ffe7;
  --bg-dark:        #0a1628;   /* deep blue, NOT black */
  --bg-card:        #0d2045;   /* rich navy card */
  --bg-section:     #0c1d3e;
  --bg-section-alt: #071630;   /* darker contrast section */
  --text-light: #eaf1fb;
  --text-muted: #b0c4de;       /* noticeably brighter muted text */
  --border-glass: rgba(71,178,228,0.3);   /* clearly visible borders */
  --glow-blue: 0 0 35px rgba(71,178,228,.65);
  --glow-gold: 0 0 35px rgba(240,180,41,.55);
  --glow-neon: 0 0 35px rgba(0,255,231,.55);
  --radius-card: 16px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Rajdhani', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(ellipse 90% 70% at 5%  0%,   rgba(71,178,228,.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 95% 100%,  rgba(240,180,41,.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 60%,   rgba(0,255,231,.07)  0%, transparent 55%);
  background-attachment: fixed;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-gold); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- PRELOADER ---- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 4px;
}
.preloader-logo .p-f { color: var(--primary); opacity: 0; animation: letterReveal .3s .2s forwards; }
.preloader-logo .p-i { color: var(--text-light); opacity: 0; animation: letterReveal .3s .4s forwards; }
.preloader-logo .p-t { color: var(--accent-gold); opacity: 0; animation: letterReveal .3s .6s forwards; }
.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold));
  animation: preloaderFill 1.2s .5s ease forwards;
}

/* ---- SCROLL PROGRESS ---- */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9998;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent-neon), var(--accent-gold));
  transition: width .1s linear;
}

/* ---- PAGE TRANSITION ---- */
#page-transition {
  position: fixed; inset: 0; z-index: 9990;
  background: var(--bg-dark);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease;
}
#page-transition.active { opacity: 1; visibility: visible; }

/* ---- CUSTOM CURSOR ---- */
#cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: white; border-radius: 50%;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 2px solid rgba(71,178,228,.6);
  border-radius: 50%; pointer-events: none; z-index: 9996;
  transform: translate(-50%,-50%);
  transition: all .12s ease;
}
body:has(a:hover) #cursor-dot,
body:has(button:hover) #cursor-dot { width: 14px; height: 14px; background: var(--accent-gold); }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 50px; height: 50px; border-color: var(--accent-gold); }

/* ---- NAVBAR ---- */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#mainNav.scrolled {
  padding: 12px 0;
  background: rgba(12,20,39,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(71,178,228,.25);
  box-shadow: 0 4px 30px rgba(0,0,0,.5), 0 1px 0 rgba(71,178,228,.1);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-light) !important;
}
.nav-logo .logo-accent { color: var(--accent-gold); }
.nav-logo .logo-dot { color: var(--primary); }
.navbar-nav .nav-link {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted) !important;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--text-light) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }
.navbar-nav .nav-link.active::after {
  background: var(--accent-gold);
  box-shadow: var(--glow-gold);
}
.btn-nav-cta {
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--primary);
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  border: none;
  transition: var(--transition);
  animation: pulse-glow 2.5s infinite;
}
.btn-nav-cta:hover {
  background: var(--primary-dark);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
  animation: none;
}

/* Mobile Nav */
.navbar-toggler { border: 1px solid var(--border-glass); padding: 8px 12px; }
.navbar-toggler-icon { background-image: none; }
.navbar-toggler span { display: block; width: 22px; height: 2px; background: var(--text-light); margin: 5px 0; transition: var(--transition); }
#mobileMenu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,14,26,.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease;
}
#mobileMenu.open { opacity: 1; visibility: visible; }
#mobileMenu .nav-link {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text-light) !important;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
#mobileMenu.open .nav-link { opacity: 1; transform: translateY(0); }
#mobileMenu.open .nav-link:nth-child(1) { transition-delay: .1s; }
#mobileMenu.open .nav-link:nth-child(2) { transition-delay: .2s; }
#mobileMenu.open .nav-link:nth-child(3) { transition-delay: .3s; }
#mobileMenu.open .nav-link:nth-child(4) { transition-delay: .4s; }
#mobileMenu.open .nav-link:nth-child(5) { transition-delay: .5s; }
#mobileMenu.open .nav-link:nth-child(6) { transition-delay: .6s; }
.menu-close {
  position: absolute; top: 24px; right: 24px;
  font-size: 2rem; background: none; border: none;
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.menu-close:hover { color: var(--accent-gold); transform: rotate(90deg); }

/* ---- SECTION UTILITIES ---- */
.section { padding: 100px 0; }
.section-alt {
  background: linear-gradient(180deg, #071630 0%, #091a38 60%, #071630 100%);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(71,178,228,.12) 0%, transparent 65%);
}
.section-heading {
  margin-bottom: 60px;
}
.section-prelabel {
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.gradient-text {
  background: linear-gradient(90deg, #47b2e4, #00ffe7, #f0b429);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}
.section-heading p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}
.section-heading.text-center p { margin: 0 auto; }
.heading-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold));
  border-radius: 2px;
  margin-top: 16px;
}
.section-heading.text-center .heading-line { margin: 16px auto 0; }

/* ---- GLASSMORPHISM CARD ---- */
.glass-card {
  background: linear-gradient(135deg, rgba(13,32,69,.85), rgba(10,25,55,.75));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(71,178,228,.3);
  border-radius: var(--radius-card);
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
}
.glass-card:hover {
  border-color: rgba(71,178,228,.6);
  box-shadow: var(--glow-blue), 0 16px 48px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08);
  transform: translateY(-6px);
}

/* ---- BUTTONS ---- */
.btn-primary-glow {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary-glow:hover {
  background: var(--primary-dark);
  box-shadow: var(--glow-blue);
  transform: translateY(-3px);
  color: white;
}
.btn-outline-glow {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  padding: 12px 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-outline-glow:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: var(--glow-gold);
  transform: translateY(-3px);
}
.btn-magnetic { cursor: pointer; }

/* Ripple effect */
.btn-ripple { position: relative; overflow: hidden; }
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: scale(0);
  animation: rippleAnim .6s linear;
  pointer-events: none;
}

/* ---- HERO SECTION ---- */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0d2045 50%, #091530 100%);
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 30% 50%,  rgba(71,178,228,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%,  rgba(0,255,231,.08)  0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 70% 80%,  rgba(240,180,41,.07) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}
#particles-js {
  position: absolute; inset: 0; z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-prelabel {
  font-family: var(--font-accent);
  font-size: .9rem;
  letter-spacing: 6px;
  color: var(--primary);
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid var(--border-glass);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  background: rgba(71,178,228,.08);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}
.glitch {
  position: relative;
  color: var(--text-light);
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  width: 100%;
  background: var(--bg-dark);
}
.glitch::before {
  color: var(--primary);
  animation: glitch1 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.glitch::after {
  color: var(--accent-gold);
  animation: glitch2 3s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}
.hero-typed-wrapper {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  min-height: 2em;
  margin-bottom: 32px;
}
.hero-typed-wrapper .typed-cursor { color: var(--accent-gold); }
.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-floating-icons {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 30px;
  z-index: 1;
}
.hero-floating-icons i {
  font-size: 2rem;
  color: rgba(71,178,228,.3);
  animation: float 3s ease-in-out infinite;
  transition: var(--transition);
}
.hero-floating-icons i:nth-child(2) { animation-delay: .5s; color: rgba(240,180,41,.3); }
.hero-floating-icons i:nth-child(3) { animation-delay: 1s; color: rgba(0,255,231,.3); }
.hero-floating-icons i:nth-child(4) { animation-delay: 1.5s; }
.scroll-down {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .75rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.scroll-down-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease infinite;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: linear-gradient(135deg, #0d2450 0%, #163060 50%, #0d2450 100%);
  border-top: 1px solid rgba(71,178,228,.4);
  border-bottom: 1px solid rgba(71,178,228,.4);
  padding: 60px 0;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 120% at 50% 50%, rgba(71,178,228,.1) 0%, transparent 65%);
  pointer-events: none;
}
.stat-item { text-align: center; padding: 20px; }
.stat-item i { font-size: 2.2rem; color: var(--primary); margin-bottom: 12px; display: block; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-light);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-accent);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-glass) 30%, var(--primary) 50%, var(--border-glass) 70%, transparent);
  align-self: stretch;
}
/* Border-based dividers — no extra columns needed */
.stat-col { border-right: 1px solid var(--border-glass); }
.stat-col:last-child { border-right: none; }
@media (max-width: 767px) {
  .stat-col:nth-child(2n) { border-right: none; }
  .stat-col:nth-child(odd) { border-right: 1px solid var(--border-glass); }
  .stat-col:nth-child(1),
  .stat-col:nth-child(2) { border-bottom: 1px solid var(--border-glass); }
}

/* ---- SERVICE CARDS ---- */
.service-card {
  padding: 36px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: rgba(71,178,228,.1);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-icon i { font-size: 1.8rem; color: var(--primary); transition: var(--transition); }
.service-card:hover .service-icon {
  background: rgba(71,178,228,.2);
  box-shadow: var(--glow-blue);
}
.service-card:hover .service-icon i { transform: rotate(360deg); color: var(--accent-neon); }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.service-card p { font-size: .95rem; color: var(--text-muted); margin-bottom: 20px; }
.service-card .card-link {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary);
  letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.service-card:hover .card-link { color: var(--accent-gold); gap: 10px; }

/* ---- WHY US SECTION ---- */
.why-feature {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(71,178,228,.1);
  border: 1px solid var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.why-icon i { font-size: 1.2rem; color: var(--accent-neon); }
.why-feature h4 {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}
.why-feature p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ---- TESTIMONIALS ---- */
.testimonial-card { padding: 36px; position: relative; }
.testimonial-quote-icon {
  font-size: 4rem; line-height: 1;
  color: rgba(71,178,228,.15);
  font-family: Georgia, serif;
  position: absolute; top: 16px; right: 24px;
}
.testimonial-text { font-size: 1rem; color: var(--text-muted); font-style: italic; margin-bottom: 24px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  border: 2px solid var(--border-glass);
}
.author-info h5 {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}
.author-info span { font-size: .85rem; color: var(--text-muted); }
.stars { color: var(--accent-gold); font-size: .9rem; margin-bottom: 4px; }

/* ---- BLOG CARDS ---- */
.blog-card {
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, #111827, #1a2540);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat-badge {
  font-family: var(--font-accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(71,178,228,.3);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-card p { font-size: .9rem; color: var(--text-muted); flex: 1; margin-bottom: 16px; }
.blog-meta { font-size: .8rem; color: var(--text-muted); display: flex; gap: 12px; flex-wrap: wrap; }
.blog-meta i { color: var(--primary); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, #1a3a5c, #0d2744, #1a2040);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(71,178,228,.15), transparent 70%);
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 36px; position: relative; }
.btn-cta-pulse {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: white;
  color: var(--bg-dark);
  border: none;
  padding: 18px 48px;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--transition);
  animation: pulse-glow-white 2.5s infinite;
  position: relative;
}
.btn-cta-pulse:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  animation: none;
  box-shadow: var(--glow-gold);
  transform: translateY(-3px);
}

/* ---- CLIENT LOGOS MARQUEE ---- */
.logos-marquee {
  overflow: hidden;
  padding: 30px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.logos-track {
  display: flex; gap: 60px; width: max-content;
  animation: marqueeScroll 25s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logo-item {
  display: flex; align-items: center;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 24px;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  transition: var(--transition);
}
.logo-item:hover { border-color: var(--primary); color: var(--primary); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--bg-dark), #0d1829);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent-gold), var(--primary), transparent);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(71,178,228,.08), transparent 60%);
}
.breadcrumb-custom { display: flex; gap: 8px; justify-content: center; align-items: center; font-size: .9rem; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb-custom a { color: var(--primary); }
.breadcrumb-custom span { color: var(--text-muted); }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--text-light); margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ---- PORTFOLIO ---- */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  font-family: var(--font-accent);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: var(--glow-blue);
}
.portfolio-item { position: relative; overflow: hidden; border-radius: var(--radius-card); cursor: pointer; }
.portfolio-img {
  height: 260px;
  background: linear-gradient(135deg, #111827, #1a2540);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(240,180,41,.9), rgba(10,14,26,.6));
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; transform: translateY(0); }
.portfolio-item:hover .portfolio-img img { transform: scale(1.08); }
.portfolio-overlay h4 { font-family: var(--font-heading); font-size: 1.1rem; color: white; margin-bottom: 8px; }
.portfolio-overlay p { font-size: .85rem; color: rgba(255,255,255,.8); text-align: center; margin-bottom: 16px; }
.portfolio-overlay .btn-view { font-family: var(--font-accent); font-size: .85rem; font-weight: 700; letter-spacing: 1px; color: var(--bg-dark); background: white; border: none; padding: 8px 20px; border-radius: 20px; }

/* ---- TEAM FLIP CARDS ---- */
.team-card-wrapper { height: 320px; perspective: 1000px; }
.team-card-inner {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .6s ease;
}
.team-card-wrapper:hover .team-card-inner { transform: rotateY(180deg); }
.team-card-front, .team-card-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.team-card-front {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 32px;
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  border: 3px solid var(--border-glass);
}
.team-card-front h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--text-light); margin-bottom: 6px; }
.team-card-front span { font-family: var(--font-accent); font-size: .9rem; color: var(--primary); font-weight: 600; }
.team-card-back {
  background: linear-gradient(135deg, var(--primary-dark), #1a2540);
  border: 1px solid var(--primary);
  transform: rotateY(180deg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px; text-align: center;
}
.team-card-back h4 { font-family: var(--font-heading); font-size: 1rem; color: white; margin-bottom: 8px; }
.team-card-back p { font-size: .85rem; color: rgba(255,255,255,.8); margin-bottom: 20px; }
.team-socials { display: flex; gap: 12px; }
.team-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: .9rem;
  transition: var(--transition);
}
.team-socials a:hover { background: var(--accent-gold); transform: translateY(-3px); }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--primary), var(--accent-gold), var(--primary), transparent);
  transform: translateX(-50%);
}
.timeline-item { display: flex; justify-content: flex-end; padding-right: calc(50% + 40px); margin-bottom: 48px; position: relative; }
.timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 40px); }
.timeline-dot {
  position: absolute; left: 50%; top: 20px;
  width: 14px; height: 14px;
  background: var(--primary);
  border: 3px solid var(--bg-dark);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: var(--glow-blue);
  z-index: 1;
}
.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 380px;
  transition: var(--transition);
}
.timeline-content:hover { border-color: var(--primary); box-shadow: var(--glow-blue); }
.timeline-year {
  font-family: var(--font-heading);
  font-size: .85rem;
  color: var(--accent-gold);
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.timeline-content h4 { font-family: var(--font-accent); font-size: 1.05rem; font-weight: 700; color: var(--text-light); margin-bottom: 6px; }
.timeline-content p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ---- SKILLS ---- */
.skill-item { margin-bottom: 28px; }
.skill-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.skill-name { font-family: var(--font-accent); font-size: .95rem; font-weight: 700; color: var(--text-light); letter-spacing: 1px; }
.skill-pct { font-family: var(--font-heading); font-size: .85rem; color: var(--primary); }
.skill-bar { height: 8px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; }
.skill-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-neon));
  width: 0; transition: width 1.5s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 10px rgba(71,178,228,.5);
}

/* ---- CONTACT ---- */
.contact-form-card { padding: 40px; }
.form-group-custom { margin-bottom: 20px; }
.form-label-custom {
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.form-control-custom {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-light);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  transition: var(--transition);
  outline: none;
}
.form-control-custom:focus {
  border-color: var(--primary);
  background: rgba(71,178,228,.05);
  box-shadow: 0 0 0 3px rgba(71,178,228,.1);
}
.form-control-custom option { background: var(--bg-card); }
.field-error { font-size: .82rem; color: #f87171; margin-top: 4px; display: none; }
.field-error.show { display: block; }
.contact-info-card { padding: 32px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(71,178,228,.1);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.1rem;
}
.contact-info-item h5 { font-family: var(--font-accent); font-size: .85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: .95rem; color: var(--text-light); margin: 0; }
.social-row { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--glow-blue); }
.map-wrapper { border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--border-glass); }
.map-wrapper iframe { filter: grayscale(80%) invert(90%) hue-rotate(180deg); display: block; }

/* ---- SUCCESS TOAST ---- */
#toast-container { position: fixed; bottom: 32px; right: 32px; z-index: 9000; }
.toast-msg {
  background: rgba(17,24,39,.95);
  backdrop-filter: blur(12px);
  border: 1px solid;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex; align-items: center; gap: 12px;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transform: translateX(120%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.toast-msg.show { transform: translateX(0); }
.toast-msg.success { border-color: #22c55e; }
.toast-msg.error { border-color: #ef4444; }
.toast-msg i { font-size: 1.3rem; }
.toast-msg.success i { color: #22c55e; }
.toast-msg.error i { color: #ef4444; }
.toast-msg span { font-family: var(--font-accent); font-size: .95rem; font-weight: 600; color: var(--text-light); }

/* ---- BACK TO TOP ---- */
#backToTop {
  position: fixed; bottom: 32px; right: 32px; z-index: 8000;
  width: 46px; height: 46px;
  background: var(--primary);
  border: none; border-radius: 50%;
  color: white; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  opacity: 0; visibility: hidden;
  box-shadow: var(--glow-blue);
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--accent-gold); box-shadow: var(--glow-gold); transform: translateY(-3px); }

/* ---- FOOTER ---- */
#footer {
  background: linear-gradient(180deg, #080f22 0%, #060b18 100%);
  padding: 80px 0 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--accent-gold), var(--accent-neon), var(--primary)) 1;
  position: relative;
}
#footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 200px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(71,178,228,.07) 0%, transparent 70%);
  pointer-events: none;
}
.footer-logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: var(--text-light); letter-spacing: 2px; }
.footer-logo-text .logo-accent { color: var(--accent-gold); }
.footer-desc { font-size: .9rem; color: var(--text-muted); margin: 12px 0 20px; line-height: 1.7; }
.footer-heading {
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .9rem; color: var(--text-muted); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--primary); }
.footer-contact p { font-size: .9rem; color: var(--text-muted); margin-bottom: 8px; display: flex; gap: 10px; }
.footer-contact i { color: var(--primary); width: 16px; flex-shrink: 0; }
.newsletter-form { display: flex; gap: 0; margin-top: 16px; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-glass);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--text-light);
  padding: 10px 16px;
  font-size: .9rem;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form button {
  background: var(--primary);
  border: none;
  border-radius: 0 8px 8px 0;
  color: white;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--primary-dark); }
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid var(--border-glass);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .85rem; color: var(--text-muted); margin: 0; }
.footer-bottom a { color: var(--primary); }

/* ---- ABOUT PAGE ---- */
.story-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(71,178,228,.1);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  padding: 6px 16px;
  font-family: var(--font-accent);
  font-size: .85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}
.mvv-card { padding: 32px; text-align: center; }
.mvv-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 16px; display: block; }
.mvv-card h4 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text-light); margin-bottom: 12px; }
.mvv-card p { font-size: .95rem; color: var(--text-muted); }

/* ---- BLOG DETAIL ---- */
.blog-detail-body h2,
.blog-detail-body h3 { font-family: var(--font-heading); color: var(--text-light); margin: 28px 0 12px; }
.blog-detail-body p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.blog-detail-body ul, .blog-detail-body ol { color: var(--text-muted); padding-left: 20px; margin-bottom: 16px; }
.blog-detail-body li { margin-bottom: 8px; }
.blog-detail-body strong { color: var(--text-light); }

/* ---- SIDEBAR ---- */
.sidebar-widget { padding: 24px; margin-bottom: 24px; }
.sidebar-title { font-family: var(--font-accent); font-size: .85rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-glass); }
.sidebar-search { display: flex; gap: 0; }
.sidebar-search input { flex: 1; background: rgba(255,255,255,.05); border: 1px solid var(--border-glass); border-right: none; border-radius: 8px 0 0 8px; color: var(--text-light); padding: 10px 14px; font-size: .9rem; outline: none; }
.sidebar-search button { background: var(--primary); border: none; border-radius: 0 8px 8px 0; color: white; padding: 10px 14px; cursor: pointer; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { font-size: .8rem; color: var(--text-muted); border: 1px solid var(--border-glass); padding: 4px 12px; border-radius: 20px; transition: var(--transition); }
.tag-pill:hover { border-color: var(--primary); color: var(--primary); }

/* ---- SERVICE DETAIL ---- */
.tech-badge { display: inline-block; background: rgba(71,178,228,.1); border: 1px solid rgba(71,178,228,.2); color: var(--primary); font-family: var(--font-accent); font-size: .8rem; font-weight: 600; letter-spacing: 1px; padding: 4px 12px; border-radius: 20px; margin: 4px; }

/* ---- PROCESS STEPS ---- */
.process-step { text-align: center; position: relative; }
.process-step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--bg-section));
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 16px;
  box-shadow: var(--glow-blue);
}
.process-step h4 { font-family: var(--font-accent); font-size: 1rem; font-weight: 700; color: var(--text-light); margin-bottom: 8px; }
.process-step p { font-size: .85rem; color: var(--text-muted); }
.process-line {
  position: absolute; top: 32px; left: calc(50% + 40px); right: calc(-50% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold));
  animation: drawLine 1s ease forwards;
}

/* ---- DASHBOARD ---- */
/* Admin styles are in admin.css */

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .section { padding: 70px 0; }
  .hero-floating-icons { display: none; }
  .timeline::before { left: 20px; }
  .timeline-item { padding-right: 0; padding-left: 60px; justify-content: flex-start; }
  .timeline-item:nth-child(even) { padding-left: 60px; }
  .timeline-dot { left: 20px; }
}
@media (max-width: 576px) {
  .section { padding: 50px 0; }
  .hero-actions { flex-direction: column; }
  .btn-primary-glow, .btn-outline-glow { width: 100%; justify-content: center; }
  .stats-bar .row { gap: 16px; }
  .contact-form-card { padding: 24px; }
  #backToTop { right: 16px; bottom: 80px; }
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  #particles-js { display: none; }
}

/* ============================================================
   VIEW COMPATIBILITY ALIASES
   Maps view class names → existing CSS rules
   ============================================================ */

/* Hero section wrapper */
.hero-section {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

/* Hero text aliases */
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subtext {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  min-height: 2em;
  margin-bottom: 32px;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-dot {
  width: 24px; height: 24px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease infinite;
}

/* Section utilities */
.section-pad { padding: 100px 0; }
.bg-alt {
  background: linear-gradient(180deg, #071630 0%, #091a38 60%, #071630 100%);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(71,178,228,.12) 0%, transparent 65%);
}

/* Section header/title/desc aliases */
.section-tag {
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.section-header { margin-bottom: 60px; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-light);
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}
.text-center .section-desc { margin: 0 auto; }

/* Button aliases */
.btn-hero-primary {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--glow-blue);
  transform: translateY(-3px);
  color: white;
}
.btn-hero-outline {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  padding: 12px 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.btn-hero-outline:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: var(--glow-gold);
  transform: translateY(-3px);
}

/* CTA section alias */
.cta-section {
  background: linear-gradient(135deg, #1a3a5c, #0d2744, #1a2040);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(71,178,228,.15), transparent 70%);
}
.cta-section h2 {
  font-family: var(--font-heading);
  color: var(--text-light);
  position: relative;
}
.cta-section p { position: relative; }
.cta-section .container { position: relative; }

/* Service icon wrapper */
.service-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(71,178,228,.1);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.service-icon-wrap i,
.service-icon-wrap .service-icon {
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: rgba(71,178,228,.2);
  box-shadow: var(--glow-blue);
}

/* Stat suffix */
.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  display: inline;
}

/* Portfolio card (view uses glass-card + portfolio-card) */
.portfolio-card {
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.portfolio-card:hover {
  border-color: rgba(71,178,228,.4);
  box-shadow: var(--glow-blue), 0 12px 40px rgba(0,0,0,.5);
  transform: translateY(-6px);
}
.portfolio-card img.portfolio-img {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  transition: transform .4s ease;
}
.portfolio-card:hover img.portfolio-img { transform: scale(1.05); }
.portfolio-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #111827, #1a2540);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

/* Blog cover image */
.blog-cover-img {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  transition: transform .4s ease;
}
.blog-card:hover .blog-cover-img { transform: scale(1.05); }
.blog-card { overflow: hidden; }

/* Testimonial quote */
.testimonial-quote {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 0;
  border: none;
  padding: 0;
}
.testimonial-card {
  background: rgba(17,24,39,.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 36px;
  position: relative;
}

/* Footer alias (layout uses class="site-footer") */
.site-footer {
  background: linear-gradient(180deg, #080f22 0%, #060b18 100%);
  padding: 80px 0 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--accent-gold), var(--accent-neon), var(--primary)) 1;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 200px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(71,178,228,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Footer social links */
.footer-social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-link:hover {
  background: var(--primary); color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--glow-blue);
}

/* Inner page hero title/subtitle */
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero tech grid (right column visual) */
.hero-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-tech-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  transition: var(--transition);
  cursor: default;
}
.hero-tech-item:hover {
  background: rgba(71,178,228,.08);
  border-color: rgba(71,178,228,.35);
  transform: translateY(-4px);
  box-shadow: var(--glow-blue);
}
.hero-tech-item i { font-size: 1.9rem; transition: var(--transition); }
.hero-tech-item span {
  font-family: var(--font-accent);
  font-size: .72rem; font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .8px;
  text-transform: uppercase;
  text-align: center;
}

/* Simple vertical timeline (About page) */
.timeline-simple { position: relative; padding-left: 36px; }
.timeline-simple::before {
  content: '';
  position: absolute; left: 8px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent-gold));
}
.timeline-simple-item {
  position: relative;
  margin-bottom: 32px;
}
.timeline-simple-item::before {
  content: '';
  position: absolute; left: -32px; top: 6px;
  width: 12px; height: 12px;
  background: var(--primary);
  border: 2px solid var(--bg-dark);
  border-radius: 50%;
  box-shadow: var(--glow-blue);
}

/* Section-pad responsive overrides */
@media (max-width: 991px) { .section-pad { padding: 70px 0; } }
@media (max-width: 576px) {
  .section-pad { padding: 50px 0; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
  .hero-tech-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-tech-item { padding: 12px 6px; }
  .hero-tech-item i { font-size: 1.4rem; }
}

/* ── FAQ Custom Collapse ─────────────────────────────────────── */
.faq-list { width: 100%; }

.faq-item {
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
}

.faq-question {
  background: transparent;
  border: none;
  padding: 18px 22px;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: color .2s;
  outline: none;
}
.faq-question:hover { color: var(--primary); }
.faq-question:focus { outline: 2px solid rgba(71,178,228,.4); outline-offset: -2px; }

.faq-icon {
  font-size: 1rem;
  color: var(--primary);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 18px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .95rem;
  border-top: 1px solid rgba(71,178,228,.12);
  padding-top: 14px;
}
