/*
Theme Name: ITE — Information Technology Experts
Theme URI: https://itepk.com
Author: Information Technology Experts
Author URI: https://itepk.com
Description: A custom WordPress theme for ITE — a total solutions company providing IT support, network design, infrastructure development, hardware & software services, and IT consultancy in Islamabad, Pakistan since 2004.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme, one-page, it-services, dark
Text Domain: ite-theme
*/

/* =====================================================
   GOOGLE FONTS IMPORT
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* =====================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ===================================================== */
:root {
  --background: hsl(220, 25%, 97%);
  --foreground: hsl(220, 40%, 13%);

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 40%, 13%);

  --primary: hsl(215, 80%, 22%);
  --primary-foreground: hsl(210, 40%, 98%);

  --secondary: hsl(215, 30%, 92%);
  --secondary-foreground: hsl(215, 80%, 22%);

  --muted: hsl(220, 20%, 94%);
  --muted-foreground: hsl(220, 10%, 46%);

  --accent: hsl(190, 95%, 45%);
  --accent-foreground: hsl(220, 40%, 8%);

  --border: hsl(220, 15%, 88%);
  --ring: hsl(190, 95%, 45%);
  --radius: 0.75rem;

  --navy: hsl(215, 70%, 28%);
  --navy-light: hsl(215, 60%, 35%);
  --cyan: hsl(190, 95%, 45%);
  --cyan-glow: hsl(190, 100%, 55%);
  --slate-blue: hsl(220, 25%, 30%);

  --gradient-hero: linear-gradient(135deg, hsl(215, 70%, 25%), hsl(215, 60%, 32%), hsl(220, 50%, 38%));
  --gradient-accent: linear-gradient(135deg, hsl(190, 95%, 45%), hsl(200, 90%, 55%));
  --gradient-card: linear-gradient(145deg, hsl(0, 0%, 100%, 0.08), hsl(0, 0%, 100%, 0.02));
  --gradient-section: linear-gradient(180deg, hsl(215, 70%, 28%), hsl(220, 60%, 35%));

  --shadow-glow: 0 0 30px hsl(190, 95%, 45%, 0.15);
  --shadow-card: 0 4px 30px hsl(220, 40%, 13%, 0.08);
  --shadow-elevated: 0 20px 60px hsl(220, 40%, 13%, 0.12);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

input, textarea {
  font-family: inherit;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* =====================================================
   UTILITIES
   ===================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: hsl(0, 0%, 100%, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsl(0, 0%, 100%, 0.1);
}

.glass-light {
  background: hsl(0, 0%, 100%, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsl(0, 0%, 100%, 0.3);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

.shadow-card {
  box-shadow: var(--shadow-card);
}

.shadow-elevated {
  box-shadow: var(--shadow-elevated);
}

.bg-hero {
  background: var(--gradient-hero);
}

.bg-section-dark {
  background: var(--gradient-section);
}

.bg-parallax {
  background-attachment: fixed;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50% { opacity: 0.6; box-shadow: 0 0 20px var(--accent); }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -60px) scale(1.2); }
  66% { transform: translate(-40px, 40px) scale(0.9); }
}

@keyframes blob-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, 80px) scale(0.85); }
  66% { transform: translate(50px, -30px) scale(1.15); }
}

@keyframes scanline {
  0% { top: 0%; }
  100% { top: 100%; }
}

@keyframes monitor-expand {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(12); opacity: 0; }
}

@keyframes monitor-intro {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fade-out-overlay {
  0% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-left {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-right {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes nav-drop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

@keyframes dot-twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.5); }
}

@keyframes timeline-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes bounce-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* =====================================================
   NAVBAR
   ===================================================== */
#ite-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: hsl(0, 0%, 100%, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(0, 0%, 100%, 0.3);
  animation: nav-drop 0.6s ease-out;
}

#ite-navbar.scrolled {
  background: hsl(0, 0%, 100%, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: hsl(220, 13%, 91%, 0.5);
  box-shadow: 0 4px 30px hsl(220, 40%, 13%, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.navbar-logo img {
  height: 3.5rem;
  width: auto;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.navbar-links a,
.navbar-links button {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(220, 9%, 46%);
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.navbar-links a:hover,
.navbar-links button:hover {
  color: var(--accent);
}

.navbar-cta {
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground) !important;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease !important;
}

.navbar-cta:hover {
  box-shadow: var(--shadow-glow) !important;
  color: var(--accent-foreground) !important;
}

.navbar-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.navbar-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.navbar-mobile-menu {
  display: none;
  background: hsl(0, 0%, 100%, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid hsl(220, 13%, 91%, 0.5);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}

.navbar-mobile-menu.open {
  display: flex;
}

.navbar-mobile-menu a,
.navbar-mobile-menu button {
  color: hsl(220, 40%, 13%);
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  padding: 0;
}

.navbar-mobile-menu a:hover,
.navbar-mobile-menu button:hover {
  color: var(--accent);
}

.navbar-mobile-cta {
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground) !important;
  font-weight: 600;
  text-align: center;
  display: block;
}

/* =====================================================
   WORDPRESS NAV MENU — ul/li/a styles
   wp_nav_menu() outputs: ul.nav-menu > li.menu-item > a
   These rules make that markup look identical to the
   original hardcoded links.
   ===================================================== */

/* Desktop — ul.nav-menu */
ul.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.nav-menu li {
  margin: 0;
  padding: 0;
}

ul.nav-menu li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(220, 9%, 46%);
  transition: color 0.3s ease;
  text-decoration: none;
}

ul.nav-menu li a:hover,
ul.nav-menu li.current-menu-item > a {
  color: var(--accent);
}

/* Mobile — ul.nav-menu-mobile */
ul.nav-menu-mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.nav-menu-mobile li {
  margin: 0;
  padding: 0;
}

ul.nav-menu-mobile li a {
  display: block;
  color: hsl(220, 40%, 13%);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  text-decoration: none;
}

ul.nav-menu-mobile li a:hover,
ul.nav-menu-mobile li.current-menu-item > a {
  color: var(--accent);
}

/* Hide any sub-menus (depth=1 is set but just in case) */
ul.nav-menu .sub-menu,
ul.nav-menu-mobile .sub-menu {
  display: none;
}

/* =====================================================
   END WORDPRESS NAV MENU STYLES
   ===================================================== */



/* =====================================================
   INTRO OVERLAY (Monitor Animation)
   ===================================================== */
#ite-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(215, 80%, 6%);
  animation: fade-out-overlay 2.6s ease forwards;
  pointer-events: none;
}

.monitor-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: monitor-expand 1.4s ease-in-out 1.2s forwards;
}

.monitor-bezel {
  position: relative;
  width: 280px;
  height: 180px;
  border-radius: 0.75rem;
  border: 3px solid hsl(190, 95%, 45%, 0.4);
  background: hsl(215, 80%, 10%);
  overflow: hidden;
  box-shadow: 0 0 60px hsl(190, 95%, 45%, 0.2), 0 0 120px hsl(190, 95%, 45%, 0.08);
  animation: monitor-intro 0.6s ease-out;
}

.monitor-scanline {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: hsl(190, 95%, 45%, 0.2);
  filter: blur(1px);
  animation: scanline 1.5s linear infinite;
}

.monitor-screen {
  position: absolute;
  inset: 0.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}

.monitor-screen-dots {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.375rem;
}

.monitor-screen-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.monitor-screen-dot.red   { background: hsl(0, 60%, 65%, 0.6); }
.monitor-screen-dot.yellow{ background: hsl(45, 90%, 65%, 0.6); }
.monitor-screen-dot.green { background: hsl(140, 60%, 65%, 0.6); }

.monitor-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 12px hsl(190, 95%, 45%, 0.5);
  animation: slide-up 0.4s ease 0.4s both;
}

.monitor-stand-neck {
  width: 16px;
  height: 32px;
  background: hsl(190, 95%, 45%, 0.2);
}

.monitor-stand-base {
  width: 64px;
  height: 6px;
  border-radius: 9999px;
  background: hsl(190, 95%, 45%, 0.2);
}

.monitor-init-text {
  margin-top: 1rem;
  font-family: monospace;
  font-size: 0.75rem;
  color: hsl(190, 95%, 45%, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: slide-up 0.8s ease 0.6s both;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: hsl(215, 80%, 6%, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-blob-1 {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: hsl(190, 95%, 45%, 0.1);
  filter: blur(100px);
  z-index: 1;
  animation: blob-drift 20s ease-in-out infinite;
}

.hero-blob-2 {
  position: absolute;
  bottom: 0;
  left: -8rem;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: hsl(190, 100%, 55%, 0.08);
  filter: blur(120px);
  z-index: 1;
  animation: blob-drift-2 25s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  z-index: 1;
  background-image:
    linear-gradient(hsl(190, 95%, 45%) 1px, transparent 1px),
    linear-gradient(90deg, hsl(190, 95%, 45%) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 1.5rem 2rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(210, 40%, 98%, 0.8);
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  animation: slide-left 0.8s ease-out;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: hsl(210, 40%, 98%, 0.6);
  max-width: 32rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: slide-left 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: slide-left 0.8s ease-out 0.4s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn-ghost:hover {
  background: hsl(190, 95%, 45%, 0.1);
}

/* Hero floating cards */
.hero-cards-col {
  display: none;
}

.hero-floating-cards {
  position: relative;
  height: 500px;
}

.hero-float-card {
  position: absolute;
  border-radius: 1rem;
  padding: 1.5rem;
  animation: float 6s ease-in-out infinite;
}

.hero-float-card:nth-child(1) { top: 0; left: 10%; animation-delay: 0s; animation-duration: 6s; }
.hero-float-card:nth-child(2) { top: 35%; left: 50%; animation-delay: 0.8s; animation-duration: 7s; }
.hero-float-card:nth-child(3) { top: 65%; left: 5%; animation-delay: 1.6s; animation-duration: 5.5s; }

.hero-float-card-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-float-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: hsl(190, 95%, 45%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  stroke: var(--accent);
}

.hero-float-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--primary-foreground);
}

.hero-stats-card {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  border-radius: 1rem;
  width: 14rem;
  animation: float-slow 7s ease-in-out infinite;
}

.hero-stats-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.hero-stats-label {
  font-size: 0.875rem;
  color: hsl(210, 40%, 98%, 0.6);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
#about {
  padding: 6rem 0 8rem;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: hsl(190, 95%, 45%, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
  pointer-events: none;
}

.section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  max-width: 42rem;
  margin: 0 auto;
}

.about-intro {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.about-intro.in-view {
  opacity: 1;
  transform: translateY(0);
}

.values-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 5rem;
}

.value-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(220, 15%, 88%, 0.5);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(40px);
}

.value-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover {
  box-shadow: var(--shadow-elevated);
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(190, 95%, 45%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.value-card:hover .value-icon {
  background: hsl(190, 95%, 45%, 0.2);
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
}

.value-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.75rem;
}

.value-text {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Core Values banner */
.core-values-banner {
  position: relative;
  border-radius: 1rem;
  padding: 2.5rem;
  overflow: hidden;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.4s;
}

.core-values-banner.in-view {
  opacity: 1;
  transform: translateY(0);
}

.core-values-overlay {
  position: absolute;
  inset: 0;
  background: hsl(215, 80%, 6%, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 1rem;
}

.core-values-inner {
  position: relative;
  z-index: 1;
}

.core-values-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-foreground);
  text-align: center;
  margin-bottom: 2rem;
}

.core-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.core-value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(210, 40%, 98%, 0.8);
}

.core-value-icon {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.core-value-item span {
  font-weight: 500;
}

/* =====================================================
   STATS SECTION
   ===================================================== */
#ite-stats {
  padding: 5rem 0;
  background: var(--background);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
}

.stat-item.in-view {
  opacity: 1;
  transform: scale(1);
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.stat-label {
  color: var(--muted-foreground);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =====================================================
   SERVICES SECTION — Marquee ticker
   ===================================================== */
#services {
  padding: 6rem 0 8rem;
  position: relative;
  overflow: hidden;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: hsl(215, 80%, 6%, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.services-blob-1 {
  position: absolute;
  top: 10rem;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: hsl(190, 95%, 45%, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
}

.services-blob-2 {
  position: absolute;
  bottom: 5rem;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: hsl(190, 95%, 45%, 0.03);
  border-radius: 50%;
  filter: blur(3rem);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.services-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

.services-header .section-title {
  color: var(--primary-foreground);
}

.services-header .section-desc {
  color: hsl(210, 40%, 98%, 0.6);
  margin: 0 auto;
}

/* ── Marquee wrapper ──────────────────────────────── */
@keyframes ite-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.services-marquee {
  position: relative;
  overflow: hidden;
  /* Edge fade masks — cards gracefully appear/disappear */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  /* Extra padding so cards aren't clipped by the mask */
  padding: 1rem 0 2rem;
}

/* The track holds 12 cards (6 real + 6 duplicate for seamless loop) */
.services-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: ite-marquee 28s linear infinite;
  will-change: transform;
}

/* Pause on hover anywhere in the marquee */
.services-marquee:hover .services-marquee-track {
  animation-play-state: paused;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .services-marquee-track {
    animation: none;
  }
}

/* ── Individual service card ──────────────────────── */
.sm-card {
  position: relative;
  width: 300px;
  flex-shrink: 0;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem 1.5rem;
  border: 1px solid hsl(0, 0%, 100%, 0.12);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  overflow: hidden;
}

.sm-card:hover {
  transform: translateY(-8px);
  border-color: hsl(190, 95%, 45%, 0.45);
  box-shadow:
    0 0 30px hsl(190, 95%, 45%, 0.2),
    0 20px 40px hsl(215, 80%, 6%, 0.4);
}

/* Glowing cyan accent bar at top */
.sm-card-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 60%;
  background: var(--gradient-accent);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 12px hsl(190, 95%, 45%, 0.5);
  transition: width 0.35s ease;
}

.sm-card:hover .sm-card-bar {
  width: 85%;
}

/* Icon circle */
.sm-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  background: hsl(190, 95%, 45%, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.sm-card:hover .sm-card-icon {
  background: hsl(190, 95%, 45%, 0.22);
  transform: scale(1.08);
}

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

/* Title */
.sm-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.sm-card:hover .sm-card-title {
  color: var(--accent);
}

/* Description */
.sm-card-desc {
  font-size: 0.875rem;
  color: hsl(210, 40%, 98%, 0.55);
  line-height: 1.65;
}

/* Footer dots */
.sm-card-footer {
  display: flex;
  gap: 0.375rem;
  margin-top: 1.5rem;
}

.sm-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(190, 95%, 45%, 0.3);
  transition: background 0.3s ease;
}

.sm-card:hover .sm-card-dot {
  background: var(--accent);
}

.sm-card:hover .sm-card-dot:nth-child(2) {
  background: hsl(200, 90%, 55%);
  transition-delay: 0.05s;
}

.sm-card:hover .sm-card-dot:nth-child(3) {
  background: hsl(210, 80%, 65%);
  transition-delay: 0.1s;
}

/* Responsive: slightly faster on mobile since viewport is smaller */
@media (max-width: 640px) {
  .services-marquee-track {
    animation-duration: 20s;
  }
  .sm-card {
    width: 260px;
  }
}



/* =====================================================
   WHY US SECTION
   ===================================================== */
#why-us {
  padding: 6rem 0 8rem;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 31rem;
  height: 31rem;
  background: hsl(190, 95%, 45%, 0.03);
  border-radius: 50%;
  filter: blur(3rem);
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  gap: 4rem;
}

.why-us-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s ease;
}

.why-us-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.why-us-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.quote-box {
  padding: 1.5rem;
  border-radius: 1rem;
  background: hsl(215, 80%, 22%, 0.05);
  border: 1px solid hsl(215, 80%, 22%, 0.1);
  margin-top: 2rem;
}

.quote-text {
  color: var(--foreground);
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
}

.quote-text .highlight {
  color: var(--accent);
  font-weight: 700;
}

.quote-attr {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.reason-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(220, 15%, 88%, 0.5);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.reason-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reason-card:hover {
  box-shadow: var(--shadow-elevated);
  border-color: hsl(190, 95%, 45%, 0.2);
}

.reason-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(190, 95%, 45%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}

.reason-card:hover .reason-icon {
  background: hsl(190, 95%, 45%, 0.2);
}

.reason-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.reason-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.reason-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* =====================================================
   CLIENTS SECTION
   ===================================================== */
#clients {
  padding: 6rem 0 8rem;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

#clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: hsl(190, 95%, 45%, 0.03);
  border-radius: 50%;
  filter: blur(3rem);
  pointer-events: none;
}

.clients-header {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.clients-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

.clients-timeline {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.timeline-line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-line-fill {
  width: 100%;
  background: hsl(190, 95%, 45%, 0.4);
  transform-origin: top;
  animation: timeline-grow 3s ease forwards;
  height: 100%;
}

.timeline-mobile-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.client-card {
  width: 100%;
  border-radius: 1rem;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid hsl(220, 15%, 88%, 0.5);
  box-shadow: var(--shadow-card);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateX(-40px);
}

.client-card.in-view {
  opacity: 1;
  transform: translateX(0);
}

.client-card.right-anim {
  transform: translateX(40px);
}

.client-card.right-anim.in-view {
  transform: translateX(0);
}

.client-card:hover {
  box-shadow: var(--shadow-elevated);
  border-color: hsl(190, 95%, 45%, 0.3);
}

.client-card-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: hsl(190, 95%, 45%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.client-card:hover .client-icon {
  background: hsl(190, 95%, 45%, 0.2);
}

.client-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.client-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--card-foreground);
  line-height: 1.4;
}

.client-category {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-top: 0.25rem;
  display: block;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
#contact {
  padding: 6rem 0 8rem;
  position: relative;
  overflow: hidden;
  background-image: url('../images/Contact.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: hsl(215, 80%, 6%, 0.9);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.contact-blob {
  position: absolute;
  top: 5rem;
  right: 2.5rem;
  width: 20rem;
  height: 20rem;
  background: hsl(190, 95%, 45%, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.contact-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

.contact-header .section-title {
  color: var(--primary-foreground);
}

.contact-header .section-desc {
  color: hsl(210, 40%, 98%, 0.6);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.contact-info {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s ease 0.2s;
}

.contact-info.in-view {
  opacity: 1;
  transform: translateX(0);
}

.contact-info-card {
  border-radius: 1rem;
  padding: 2rem;
  space-y: 1.5rem;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-row:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(190, 95%, 45%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.contact-info-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  color: hsl(210, 40%, 98%, 0.8);
  display: block;
  transition: color 0.3s ease;
}

.contact-info-value:hover {
  color: var(--accent);
}

.contact-info-sub {
  color: hsl(210, 40%, 98%, 0.4);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.whatsapp-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: hsl(142, 71%, 45%);
  opacity: 0.75;
  animation: ping 2s ease-in-out infinite;
}

.whatsapp-btn img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.contact-phone-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: space-between;
}

.contact-phone-details {
  flex: 1;
}

/* Map */
.map-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid hsl(210, 40%, 98%, 0.1);
  cursor: pointer;
  transition: border-color 0.3s ease;
  margin-top: 0.5rem;
}

.map-wrap:hover {
  border-color: hsl(190, 95%, 45%, 0.4);
}

.map-wrap iframe {
  display: block;
  pointer-events: none;
}

/* Social links */
.social-links-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  color: hsl(210, 40%, 98%, 0.6);
  transition: all 0.3s ease;
}

.social-btn:hover {
  color: var(--accent);
  background: hsl(190, 95%, 45%, 0.1);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

/* Contact Form */
.contact-form-wrap {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease 0.3s;
}

.contact-form-wrap.in-view {
  opacity: 1;
  transform: translateX(0);
}

.contact-form {
  border-radius: 1rem;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(210, 40%, 98%, 0.8);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background: hsl(210, 40%, 98%, 0.05);
  border: 1px solid hsl(210, 40%, 98%, 0.1);
  color: var(--primary-foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: hsl(210, 40%, 98%, 0.3);
}

.form-input:focus,
.form-textarea:focus {
  border-color: hsl(190, 95%, 45%, 0.5);
  outline: none;
}

.form-textarea {
  resize: none;
  rows: 4;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.form-submit:hover {
  box-shadow: var(--shadow-glow);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-submit svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}


/* =====================================================
   FOOTER (NEXT.JS EXACT REPLICA CSS)
   ===================================================== */
#ite-footer {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-top: 1px solid rgba(226, 232, 240, 0.6) !important;
  position: relative;
  z-index: 20;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 3rem;
  width: auto;
}

.footer-desc {
  color: #475569 !important;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-socials .social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569 !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials .social-link:hover {
  color: #0284c7 !important;
  background: rgba(2, 132, 199, 0.1);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #1e293b !important;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.footer-links,
.footer-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  color: #475569 !important;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #0284c7 !important;
}

.footer-services-list li {
  color: #475569 !important;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #64748b !important;
  font-size: 0.875rem;
  margin: 0;
}

.footer-location {
  color: #64748b !important;
  font-size: 0.875rem;
}


/* =====================================================
   WHATSAPP FLOAT BUTTON
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: hsl(142, 71%, 45%);
  opacity: 0.5;
  animation: ping 2s ease-in-out infinite;
}

.whatsapp-float img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* =====================================================
   SCROLL ANIMATIONS (Intersection Observer targets)
   ===================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE — TABLET (768px+)
   ===================================================== */
@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }

  .navbar-mobile-toggle {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    padding-top: 8rem;
  }

  .hero-cards-col {
    display: block;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .core-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline-line {
    display: block;
  }

  .timeline-mobile-line {
    display: none;
  }

  .timeline-item {
    padding-left: 0;
    margin-bottom: 0.5rem;
  }

  .timeline-item:nth-child(odd) .client-card {
    width: 45%;
    margin-left: 5%;
  }

  .timeline-item:nth-child(even) .client-card {
    width: 45%;
    margin-left: 50%;
  }

  .timeline-item:nth-child(odd) .client-card-inner {
    flex-direction: row-reverse;
  }

  .timeline-item:nth-child(odd) .client-card .client-info {
    text-align: right;
  }

  .timeline-dot {
    display: flex;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* =====================================================
   RESPONSIVE — DESKTOP (1024px+)
   ===================================================== */
@media (min-width: 1024px) {
  .services-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 6rem;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
    width: 360px;
    flex-shrink: 0;
  }
}

/* =====================================================
   MOBILE BACKGROUND PARALLAX FIX
   ===================================================== */
@media (max-width: 768px) {
  #services,
  #contact {
    background-attachment: scroll;
  }
}

/* =====================================================
   WORDPRESS SPECIFIC OVERRIDES
   ===================================================== */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

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

/* Timeline dot (desktop) */
.timeline-dot {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--shadow-glow);
  border: 3px solid var(--background);
}

/* =====================================================
   POLICY PAGES STYLES
   ===================================================== */
.policy-page {
  background: var(--background);
}

/* Policy Hero */
.policy-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.policy-hero-overlay {
  position: absolute;
  inset: 0;
  background: hsl(215, 80%, 6%, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.policy-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.policy-hero-title {
  color: var(--primary-foreground);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.policy-hero-desc {
  color: hsl(210, 40%, 98%, 0.7);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.policy-back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.policy-back-link:hover {
  opacity: 0.8;
}

/* Policy Hub Grid (Landing Page) */
.policy-cards-section {
  padding: 6rem 0;
}

.policy-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.policy-hub-card {
  display: block;
  text-decoration: none;
  padding: 3rem 2rem;
  border-radius: 1rem;
  border: 1px solid hsl(0, 0%, 100%, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.policy-hub-card:hover {
  transform: translateY(-5px);
  border-color: hsl(190, 95%, 45%, 0.4);
  box-shadow: 0 10px 30px hsl(190, 95%, 45%, 0.15);
}

.policy-hub-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(190, 95%, 45%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.policy-hub-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
}

.policy-hub-title {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.policy-hub-card:hover .policy-hub-title {
  color: hsl(190, 95%, 35%);
}

.policy-hub-excerpt {
  color: hsl(220, 30%, 30%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.policy-hub-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Single Policy Content */
.policy-content-section {
  padding: 4rem 0 8rem;
  margin-top: -4rem;
  position: relative;
  z-index: 2;
}

.policy-content-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem;
  border-radius: 1.25rem;
  border: 1px solid hsl(0, 0%, 100%, 0.1);
}

.policy-section {
  margin-bottom: 3.5rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section-title {
  color: var(--primary-foreground);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid hsl(0, 0%, 100%, 0.1);
}

.policy-subsection-title {
  color: var(--primary-foreground);
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
}

.policy-section p {
  color: hsl(210, 40%, 98%, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section p strong {
  color: var(--primary-foreground);
}

.policy-section a {
  color: var(--accent);
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

/* Lists */
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.policy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: hsl(210, 40%, 98%, 0.7);
  line-height: 1.6;
}

.policy-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.policy-list--prohibited li::before {
  color: #ef4444; /* red for prohibited items */
}

/* Tables */
.policy-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.policy-table th,
.policy-table td {
  padding: 1rem;
  border-bottom: 1px solid hsl(0, 0%, 100%, 0.1);
  color: hsl(210, 40%, 98%, 0.7);
}

.policy-table th {
  color: var(--primary-foreground);
  font-weight: 600;
  background: hsl(0, 0%, 100%, 0.02);
}

.policy-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.policy-badge--red { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }
.policy-badge--green { background: rgba(34, 197, 94, 0.2); color: #86efac; }
.policy-badge--white { background: rgba(255, 255, 255, 0.1); color: #ffffff; }
.policy-badge--black { background: rgba(0, 0, 0, 0.5); color: #9ca3af; border: 1px solid rgba(255,255,255,0.1); }

/* Alerts / Warnings */
.policy-section--warning,
.policy-section--alert {
  padding: 2rem;
  border-radius: 0.75rem;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.policy-section--warning .policy-section-title {
  color: #fca5a5;
  border-bottom-color: rgba(239, 68, 68, 0.2);
}

.policy-alert {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  color: #fca5a5;
  border-radius: 0 0.5rem 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-hero {
    padding: 8rem 0 4rem;
  }
  .policy-hero-title {
    font-size: 2.25rem;
  .policy-content-wrap {
    padding: 2rem 1.5rem;
  }
}


/* =====================================================
   POLICIES PAGES (NEXT.JS MATCHING LIGHT GLASS STYLES)
   ===================================================== */
.policy-page,
.policy-single-page {
  position: relative;
  min-height: 100vh;
  background-image: url('../images/policy.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.policy-hero-overlay,
.policy-single-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 0;
}

.policy-hero-inner,
.policy-single-container {
  position: relative;
  z-index: 10;
}

.policy-single-container {
  padding-top: 8rem;
  padding-bottom: 6rem;
  max-width: 960px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Policy Hub Hero */
.policy-hero {
  position: relative;
  padding: 10rem 1.5rem 4rem;
  text-align: center;
  z-index: 10;
}

.policy-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.policy-hero-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Policy Cards Section & Grid */
.policy-cards-section {
  position: relative;
  z-index: 10;
  padding-bottom: 6rem;
}

.policy-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.policy-hub-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 1rem !important;
  padding: 2rem !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.policy-hub-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(2, 132, 199, 0.5) !important;
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.15) !important;
}

.policy-hub-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15), rgba(15, 23, 42, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.policy-hub-card:hover .policy-hub-icon {
  transform: scale(1.1);
}

.policy-hub-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b !important;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.policy-hub-card:hover .policy-hub-title {
  color: #0284c7 !important;
}

.policy-hub-excerpt {
  color: #475569 !important;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.policy-hub-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0284c7 !important;
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.policy-hub-card:hover .policy-hub-link {
  gap: 0.75rem;
}

/* Breadcrumb & Navigation */
.policy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.policy-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.3s ease;
}

.policy-breadcrumb a:hover {
  color: #38bdf8;
}

.policy-breadcrumb .current {
  color: #e2e8f0;
  font-weight: 600;
}

.policy-top-actions {
  margin-bottom: 2rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease, color 0.3s ease;
}

.btn-back:hover {
  gap: 0.75rem;
  color: #7dd3fc;
}

/* Policy Card Content Detail */
.policy-card {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-radius: 1.25rem !important;
  padding: 2.5rem 3rem !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  color: #1e293b !important;
}

@media (max-width: 768px) {
  .policy-card {
    padding: 1.5rem 1.5rem !important;
  }
}

.policy-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.policy-card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15), rgba(15, 23, 42, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0284c7;
}

.policy-card-header-text h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a !important;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.policy-card-header-text p {
  color: #475569 !important;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Content Formatting inside Policy Detail Card */
.policy-card-body.prose {
  color: #334155 !important;
  line-height: 1.8;
  font-size: 1.05rem;
}

.policy-card-body.prose h2 {
  font-family: 'Space Grotesk', sans-serif;
  color: #0f172a !important;
  font-size: 1.65rem;
  font-weight: 700;
  margin: 2.25rem 0 1rem;
  padding-bottom: 0.5rem;
}

.policy-card-body.prose h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #1e293b !important;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.75rem 0 0.75rem;
}

.policy-card-body.prose p {
  color: #334155 !important;
  margin-bottom: 1.25rem;
}

.policy-card-body.prose strong {
  color: #0f172a !important;
  font-weight: 600;
}

.policy-card-body.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #334155 !important;
}

.policy-card-body.prose ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Policy Tables inside Light Glass Card */
.policy-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 0.75rem;
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.policy-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: #ffffff;
}

.policy-table-wrapper th,
.policy-table-wrapper td {
  padding: 1rem 1.25rem;
  border: 1px solid #cbd5e1;
}

.policy-table-wrapper th {
  background: linear-gradient(90deg, rgba(2, 132, 199, 0.1), rgba(15, 23, 42, 0.05));
  color: #0f172a !important;
  font-weight: 700;
  font-size: 0.95rem;
}

.policy-table-wrapper td {
  color: #334155 !important;
  font-size: 0.925rem;
}

.policy-table-wrapper tr:hover {
  background-color: #f8fafc;
}

/* Policy Footer Actions */
.policy-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.btn-footer-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: #f1f5f9;
  color: #1e293b !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-footer-back:hover {
  background: #e2e8f0;
  color: #0f172a !important;
}

.btn-footer-print {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: #0284c7;
  color: #ffffff !important;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-footer-print:hover {
  background: #0369a1;
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.4);
}



/* Get In Touch Vibrant Sky-Blue Accent Button Styling */
.navbar-cta,
.navbar-mobile-cta {
  padding: 0.5rem 1.25rem !important;
  border-radius: 0.5rem !important;
  background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.4) !important;
  transition: all 0.3s ease !important;
}

.navbar-cta:hover,
.navbar-mobile-cta:hover {
  background: linear-gradient(135deg, #0891b2, #0284c7) !important;
  color: #ffffff !important;
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.6) !important;
  transform: translateY(-1px) !important;
}

.navbar-mobile-cta {
  margin-top: 0.5rem !important;
  padding: 0.75rem 1.25rem !important;
  width: 100% !important;
}


/* =====================================================
   CLIENT LOGO SHOWCASE GRID
   ===================================================== */
.clients-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
  gap: 1rem;
}

.client-showcase-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 5.25rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.055);
  color: inherit;
  opacity: 1;
  text-decoration: none;
  transform: translateY(0);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.client-showcase-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.client-showcase-card:hover,
.client-showcase-card:focus-visible {
  border-color: #0284c7;
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.14);
  outline: none;
  transform: translateY(-2px);
}

.client-logo-wrap {
  display: grid;
  place-items: center;
  flex: 0 0 4.5rem;
  width: 4.5rem;
  height: 3.3rem;
}

.client-showcase-card img {
  display: block;
  max-width: 4.5rem;
  max-height: 2.85rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-showcase-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.client-showcase-name {
  color: #0f172a;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.client-showcase-cat {
  color: #0284c7;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .clients-showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(11.75rem, 1fr));
    gap: 0.85rem;
  }

  .client-showcase-card {
    min-height: 4.8rem;
    padding: 0.75rem 0.85rem;
  }

  .client-logo-wrap {
    flex-basis: 3.65rem;
    width: 3.65rem;
  }

  .client-showcase-card img {
    max-width: 3.65rem;
  }

  .client-showcase-name {
    font-size: 0.82rem;
  }

  .client-showcase-cat {
    font-size: 0.68rem;
  }
}


/* =====================================================
   PREMIUM INTERACTIVE CLIENT LOGO SHOWCASE GRID
   ===================================================== */
.client-filter-tabs {
  margin-bottom: 2rem;
}

.client-tab-btn {
  padding: 0.6rem 1.35rem;
  border-radius: 50px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.client-tab-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

.client-tab-btn.active {
  background: linear-gradient(135deg, #0284c7, #0ea5e9);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

#client-search-input:focus {
  border-color: #0284c7 !important;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15) !important;
}

.client-grid-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.5rem;
}

.showcase-client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.showcase-client-card:hover {
  transform: translateY(-6px);
  border-color: #0284c7;
  box-shadow: 0 16px 32px -8px rgba(2, 132, 199, 0.18);
  background: #ffffff;
}

.showcase-logo-box {
  height: 55px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.showcase-logo-box img {
  max-height: 48px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.showcase-client-card:hover .showcase-logo-box img {
  filter: grayscale(0%);
  transform: scale(1.06);
}

.showcase-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.showcase-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
}

.showcase-sub {
  font-size: 0.75rem;
  color: #0284c7;
  font-weight: 600;
}

.showcase-client-card.is-hidden {
  display: none !important;
}


/* =====================================================
   REVAMPED DYNAMIC ENTERPRISE HERO SECTION
   ===================================================== */
.hero-grid-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .hero-grid-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: #0284c7;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0ea5e9;
  box-shadow: 0 0 10px #0ea5e9;
  animation: hero-pulse-glow 2s infinite;
}

@keyframes hero-pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.5; }
}

.hero-glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -12px rgba(14, 165, 233, 0.22);
}

.hero-floating-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  z-index: 10;
  animation: hero-float-anim 5s ease-in-out infinite alternate;
}

.hero-floating-pill-top {
  top: -1.25rem;
  right: -1.25rem;
  animation-delay: 0s;
}

.hero-floating-pill-bottom {
  bottom: -1.25rem;
  left: -1.25rem;
  animation-delay: 2.5s;
}

@keyframes hero-float-anim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@media (max-width: 640px) {
  .hero-floating-pill-top,
  .hero-floating-pill-bottom {
    position: static;
    margin-bottom: 1rem;
  }
}


/* =====================================================
   TRUST STAT CARDS HOVER ANIMATIONS
   ===================================================== */
.trust-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.4) !important;
  box-shadow: 0 20px 40px -15px rgba(14, 165, 233, 0.3) !important;
}
