/* ==========================================================================
   ISARVA DIGITAL MARKETING AGENCY - MAIN STYLESHEET
   Design Language: isarvait.com Brand Palette, Modern Typography, Glassmorphism
   ========================================================================== */

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

/* --- CSS Variables & Design Tokens --- */
:root {
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Space Grotesk', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Brand Emeralds & Greens (isarvait.com) */
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-darker: #047857;
  --primary-light: #d1fae5;
  --primary-ultralight: #ecfdf5;
  --accent-green: #2bc735;
  --accent-glow: rgba(43, 199, 53, 0.35);

  /* Signature Orange Action CTAs (isarvait.com) */
  --accent-orange: #f97316;
  --accent-orange-hover: #ea580c;
  --accent-orange-light: #ffedd5;
  --accent-orange-shadow: rgba(249, 115, 22, 0.3);

  /* Light Brand Gradients */
  --gradient-mint-hero: linear-gradient(135deg, #d4f4dd 0%, #defae4 50%, #f2fff5 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 255, 248, 0.85) 100%);
  --gradient-primary: linear-gradient(90deg, #ff4c00, #ff8c00);
  --gradient-orange: linear-gradient(90deg, #ff4c00, #ff8c00);
  --gradient-orange-hover: linear-gradient(90deg, #ff8c00, #ff4c00);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

  /* Neutrals & Dark Slate */
  --dark-950: #090d16;
  --dark-900: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Glassmorphism & Elevations */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  --shadow-emerald: 0 10px 25px rgba(16, 185, 129, 0.2);
  --shadow-orange: 0 10px 25px rgba(249, 115, 22, 0.25);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-full: 9999px;

  /* Layout */
  --container-max: 1360px;
  --header-height: 80px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-700);
  background-color: var(--white);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 2.5rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  background-color: var(--white);
}

main {
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

/* --- Global Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark-900);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--slate-600);
}

.text-lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.7;
  color: var(--slate-600);
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-emerald {
  color: var(--primary-dark);
}

.text-green-accent {
  color: var(--accent-green);
}

.text-orange {
  color: var(--accent-orange);
}

.text-white {
  color: var(--white) !important;
}

.text-center {
  text-align: center;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-narrow {
  max-width: 960px;
}

.section {
  padding: 40px 0;
  position: relative;
}

.section-lg {
  padding: 40px 0;
}

.section-hero {
  padding-top: calc(var(--header-height) + 4.5rem) !important;
  padding-bottom: 40px;
  background: url('/wp-content/uploads/2026/09/bg1-new-scaled.jpg') center top / cover no-repeat !important;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.section-hero>.container {
  position: relative;
  z-index: 2;
}

/* --- Buttons & CTAs --- */
/* Signature Press Illusion Orange Button from isarvait.com */
.press-illusion-btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white) !important;
  background: linear-gradient(90deg, #ff4c00, #ff8c00);
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 76, 0, 0.35);
  text-decoration: none;
  cursor: pointer;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.press-illusion-btn-orange:hover {
  background: linear-gradient(90deg, #ff8c00, #ff4c00);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 76, 0, 0.5);
}

.press-illusion-btn-orange:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(255, 76, 0, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-900);
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--primary-ultralight);
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-emerald {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white) !important;
  background: linear-gradient(90deg, #ff4c00, #ff8c00);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(255, 76, 0, 0.35);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-emerald:hover {
  background: linear-gradient(90deg, #ff8c00, #ff4c00);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 76, 0, 0.5);
}

.btn-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-900);
  background: var(--white);
  border: 1.5px solid var(--accent-orange);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.btn-pill-link:hover {
  background: var(--accent-orange);
  color: var(--white);
}

/* --- Badges & Pills --- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-800);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 12px var(--accent-green);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

/* --- Glassmorphic Cards --- */
.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card-glass:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(16, 185, 129, 0.4);
}

.card-white {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.card-white:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

/* --- Eyeweb Floating Pill Header & Navigation --- */
.site-header-floating {
  position: fixed;
  top: 1.25rem;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1000;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* WordPress Admin Bar Compatibility */
body.admin-bar .site-header-floating {
  top: calc(32px + 1.25rem);
}

body.admin-bar .mobile-drawer {
  top: 32px;
  height: calc(100vh - 32px);
  height: calc(100dvh - 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar #wpadminbar {
    position: fixed !important;
    top: 0;
  }

  body.admin-bar .site-header-floating {
    top: calc(46px + 0.75rem) !important;
  }

  body.admin-bar .mobile-drawer {
    top: 46px;
    height: calc(100vh - 46px);
    height: calc(100dvh - 46px);
  }
}

.nav-pill-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  pointer-events: auto;
}

.nav-pill-inner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.20) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 8px 32px rgba(0, 0, 0, .08);
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}

.nav-pill-inner:hover {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.site-header-floating.scrolled .nav-pill-inner {

  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 0.55rem 1.15rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-900);
  letter-spacing: -0.03em;
  text-decoration: none;
  padding: 0 0.85rem;
  /* left and right padding to logo */
}

.site-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: 160px;
  height: 60px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover .site-logo-img {
  transform: scale(1.04);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 0.94rem;
  font-weight: 600;
  color: #000;
  padding: 0.42rem 1.05rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  outline: none !important;
}

.nav-link:focus,
.nav-link:focus-visible,
.nav-dropdown-trigger:focus {
  outline: none !important;
}

/* Nav Link Hover & Active Menu Item Pill Style */
.nav-link:hover,
.nav-link.active,
.nav-dropdown:hover>.nav-link,
.nav-mega-dropdown.is-open>.nav-link,
.nav-link.nav-dropdown-trigger.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, .39) 0%, rgba(255, 255, 255, .44) 100%) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, .15) !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .45), inset 0 -1px 1px rgba(0, 0, 0, .04) !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  outline: none !important;
}

.nav-link::after {
  display: none !important;
}

.dropdown-chevron {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown:hover .dropdown-chevron,
.nav-mega-dropdown.is-open .dropdown-chevron {
  transform: rotate(180deg);
}

/* ============================================================
   EYEWEB 3-COLUMN SERVICES MEGA SUBMENU (Matches Screenshot 2)
   ============================================================ */
.nav-dropdown.nav-mega-dropdown {
  position: static;
}

.eyeweb-mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 980px;
  max-width: calc(100vw - 40px);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.04);
  padding: 1.85rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
  z-index: 1050;
  pointer-events: none;
}

/* Invisible Hover Bridge: covers gap between nav pill and menu */
.eyeweb-mega-menu::before {
  content: '';
  position: absolute;
  top: -38px;
  left: 0;
  right: 0;
  height: 44px;
  background: transparent;
  pointer-events: auto;
}

.nav-mega-dropdown:hover .eyeweb-mega-menu,
.nav-mega-dropdown.is-open .eyeweb-mega-menu,
.eyeweb-mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 310px 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

/* Col 1: Key Services */
.mega-col-services {
  display: flex;
  flex-direction: column;
  padding-right: 0.75rem;
}

.mega-services-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
  letter-spacing: -0.01em;
}

.mega-services-heading .literata-italic {
  font-style: italic;
  font-weight: 500;
  font-family: 'Literata', Georgia, serif;
}

.mega-services-list {
  display: flex;
  flex-direction: column;
}

.mega-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.35rem;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-service-item:last-child {
  border-bottom: none;
}

.mega-item-arrow {
  color: #0f172a;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.mega-service-item:hover {
  color: #ff4c00;
  padding-left: 0.45rem;
}

.mega-service-item:hover .mega-item-arrow {
  color: #ff4c00;
  transform: rotate(-45deg);
}

/* Col 2 & 3: Featured Photo Cards (Dark Vignette + Text + Circular Arrow) */
.mega-col-card {
  height: 100%;
}

.mega-feature-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem 1.75rem 1.75rem;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.mega-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.mega-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.mega-feature-card:hover .mega-card-bg {
  transform: scale(1.06);
}

.mega-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 42%, rgba(0, 0, 0, 0.94) 100%);
  z-index: 2;
  transition: background 0.35s ease;
}

.mega-feature-card:hover .mega-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.98) 100%);
}

.mega-card-body {
  position: relative;
  z-index: 3;
}

.mega-card-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.45rem 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.mega-card-subtext {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.48;
  margin: 0 0 1.25rem 0;
}

.mega-card-action {
  display: flex;
  align-items: center;
}

.mega-card-arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-feature-card:hover .mega-card-arrow-circle {
  background: linear-gradient(90deg, #ff4c00, #ff8c00);
  border-color: transparent;
  transform: rotate(-45deg) scale(1.1);
  box-shadow: 0 4px 16px rgba(255, 76, 0, 0.45);
}

.icon-indicator {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.item-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark-900);
}

.item-desc {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 400;
  display: block;
}

/* Eyeweb CTA Button Styling */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyeweb-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.45rem 0.35rem 1.35rem;
  background: linear-gradient(90deg, #ff4c00, #ff8c00);
  color: #ffffff !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(255, 76, 0, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.eyeweb-nav-cta:hover {
  background: linear-gradient(90deg, #ff8c00, #ff4c00);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 76, 0, 0.5);
}

.eyeweb-nav-cta .cta-arrow-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.eyeweb-nav-cta .cta-arrow-badge svg {
  display: block;
  transform-origin: 50% 50%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.eyeweb-nav-cta:hover .cta-arrow-badge {
  transform: scale(1.08);
}

.eyeweb-nav-cta:hover .cta-arrow-badge svg {
  transform: rotate(-45deg) !important;
}

/* Premium Mobile Burger Menu Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4.5px;
  border-radius: 12px;
  box-shadow: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible,
.mobile-nav-toggle:active {


  transform: scale(1.03);
  outline: none;
}

.mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.mobile-nav-toggle[aria-expanded="true"] {
  background: #ffffff;
  border-color: #10b981;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.22);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Drawer Backdrop Overlay */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
  z-index: 9998;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Slide-in Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 86vw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.16);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mobile-drawer.open {
  transform: translateX(0);
}

/* Drawer Header */
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.mobile-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.mobile-drawer-close {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Drawer Body */
.mobile-drawer-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #f8fafc;
  color: #ff4c00;
  padding-left: 0.95rem;
}

.mobile-nav-group {
  margin: 0.25rem 0;
}

.mobile-subnav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 0.75rem;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  border-left: 2px solid #f1f5f9;
}

.mobile-sublink {
  font-size: 0.92rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-sublink:hover {
  color: #ff4c00;
  background: #f8fafc;
  padding-left: 0.85rem;
}

/* Drawer Bottom CTA Button */
.mobile-drawer-cta {
  padding-top: 1.5rem;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
}

.mobile-drawer-btn {
  width: 100%;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.75rem 0.65rem 1.4rem !important;
  font-size: 0.98rem !important;
  box-shadow: 0 6px 20px rgba(255, 76, 0, 0.35) !important;
}

/* Prevent body scroll when drawer is open */
body.mobile-drawer-open {
  overflow: hidden;
}

/* --- Hero Section Elements --- */
.hero-headline {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--slate-600);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.hero-featured-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2.25rem 1.85rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  height: 100%;
}

.hero-featured-card.highlight {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(16, 185, 129, 0.25);
  transform: none;
  /* Keep all cards perfectly aligned on the same baseline */
  z-index: 2;
}

.hero-featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.hero-featured-card.highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(16, 185, 129, 0.18);
}

.hero-featured-card .svg-icon-box {
  margin-bottom: 1.35rem;
}

.hero-featured-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-900);
  margin: 0 0 0.75rem 0;
  min-height: 1.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.01em;
}

.hero-featured-card p {
  font-size: 0.94rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin: 0 0 2rem 0;
  flex-grow: 1;
  /* Expands to push action buttons to the exact same baseline */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 4.2rem;
}

.hero-card-action {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-action .btn-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.65rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #ff4c00;
  background: #ffffff;
  border: 1.5px solid #ff4c00;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(255, 76, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
}

.hero-card-action .btn-pill-link:hover {
  background: linear-gradient(90deg, #ff4c00, #ff8c00);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 76, 0, 0.4);
}

.hero-card-action .btn-pill-link.btn-pill-primary {
  background: linear-gradient(90deg, #ff4c00, #ff8c00) !important;
  color: #ffffff !important;
  border: 1.5px solid transparent !important;
  box-shadow: 0 4px 16px rgba(255, 76, 0, 0.38) !important;
}

.hero-card-action .btn-pill-link.btn-pill-primary:hover {
  background: linear-gradient(90deg, #ff8c00, #ff4c00) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 76, 0, 0.55) !important;
}

/* --- Redesigned Stat Cards Section --- */
.trust-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  border-bottom: 1px solid #eef2f6;
}

.trust-header-wrap {
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.trust-tag-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ea580c;
  background: rgba(249, 115, 22, 0.1);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.trust-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark-900);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}

.trust-section-subtitle {
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.stat-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 20px;
  padding: 2.25rem 1.85rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.09);
  border-color: rgba(255, 76, 0, 0.3);
}

.stat-card:hover::before {
  background: linear-gradient(90deg, #ff4c00, #ff8c00);
}

.stat-card-highlight {
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.08);
}

.stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.stat-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-card-icon {
  transform: scale(1.08);
}

.stat-icon-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.stat-icon-orange {
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
}

.stat-icon-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.stat-icon-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.stat-micro-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-500);
  background: #f1f5f9;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}

.stat-micro-pill.highlight {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.2vw, 3.25rem);
  font-weight: 800;
  color: var(--dark-900);
  line-height: 1;
  letter-spacing: -0.035em;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.4vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, #ff4c00, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
}

.stat-card .stat-label {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.stat-card .stat-desc {
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1024px) {
  .stats-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .stats-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* --- Services Grid --- */
.services-grid-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--slate-200);
  transition: var(--transition);
}

.service-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(16, 185, 129, 0.4);
}

.service-card-item:hover::before {
  background: var(--gradient-primary);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 1.25rem;
}

.service-card-item h3 {
  margin-bottom: 0.75rem;
  color: var(--dark-900);
}

.service-card-item p {
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 1.75rem;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--slate-600);
  margin-bottom: 0.5rem;
}

.service-features-list li svg {
  color: var(--primary-dark);
  flex-shrink: 0;
}

/* --- Why Isarva Section --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-ultralight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

/* --- Process Section (4 Steps Redesign) --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-step-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 2.25rem 1.85rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.process-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  border-color: rgba(16, 185, 129, 0.4);
}

.process-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.process-step-card .svg-icon-box {
  margin: 0;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover .svg-icon-box {
  transform: scale(1.08);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
  letter-spacing: -0.04em;
  transition: all 0.35s ease;
}

.process-step-card.step-blue:hover .process-step-num {
  color: rgba(59, 130, 246, 0.3);
}

.process-step-card.step-emerald:hover .process-step-num {
  color: rgba(16, 185, 129, 0.35);
}

.process-step-card.step-orange:hover .process-step-num {
  color: rgba(249, 115, 22, 0.35);
}

.process-step-card.step-purple:hover .process-step-num {
  color: rgba(168, 85, 247, 0.35);
}

.process-card-body {
  flex: 1;
}

.process-step-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.pill-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.pill-emerald {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.pill-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.pill-purple {
  background: rgba(168, 85, 247, 0.1);
  color: #9333ea;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.process-step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.65rem 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.process-step-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

.process-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover .process-card-line {
  width: 100%;
}

.line-blue {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.line-emerald {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.line-orange {
  background: linear-gradient(90deg, #ff4c00, #ff8c00);
}

.line-purple {
  background: linear-gradient(90deg, #a855f7, #c084fc);
}

/* --- Industries Tags & Grid --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}

.industry-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.industry-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

/* --- Funnel Visualizer (Performance Marketing) --- */
.funnel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.funnel-node {
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  text-align: center;
  min-width: 170px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.funnel-node:hover {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.funnel-node .node-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-900);
}

.funnel-node .node-sub {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
}

.funnel-arrow {
  color: var(--accent-orange);
  font-size: 1.5rem;
  font-weight: 900;
}

/* --- Metric Tiles --- */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.metric-box {
  background: var(--dark-900);
  color: var(--white);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--accent-green);
}

.metric-box .metric-val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: 0.25rem;
}

.metric-box .metric-name {
  font-size: 0.85rem;
  color: var(--slate-300);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(16, 185, 129, 0.35);
}

.faq-item.active {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 10px 25px -4px rgba(16, 185, 129, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-900);
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question .icon {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  color: var(--primary);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #ffffff;
}

/* Silky Smooth Accordion via CSS Grid */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
  overflow: hidden;
}

.faq-answer > * {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  color: var(--slate-600);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  display: block;
  grid-template-rows: 1fr;
  padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer > * {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ============================================================
   REDESIGNED SERVICE LIST PAGE CARDS WITH IMAGES & GLASS METRICS
   ============================================================ */
.service-showcase-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.12);
  border: 1px solid #e2e8f0;
  background: #0f172a;
}

.service-showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glass:hover .service-showcase-img-wrap img {
  transform: scale(1.05);
}

.service-metric-glass-pill {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 1.15rem 1.35rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
  z-index: 2;
}

/* ============================================================
   REDESIGNED IMPACT CONVERSION BANNER ("Ready to Turn Your Digital Presence...")
   ============================================================ */
.section-cta-wrap {
  padding: 5rem 0 3rem;
  position: relative;
}

.cta-banner-premium {
  position: relative;
  border-radius: 32px;
  background: #ffffff !important;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(16, 185, 129, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(255, 140, 0, 0.12) 0%, transparent 45%),
    linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #fefce8 100%) !important;
  border: 1.5px solid rgba(16, 185, 129, 0.3) !important;
  box-shadow: 0 24px 65px rgba(16, 185, 129, 0.08), 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  overflow: hidden;
  padding: 4.5rem 2.5rem 4rem;
  text-align: center;
}

.cta-banner-glow-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(43, 199, 53, 0.14), transparent 55%),
    radial-gradient(circle at 82% 75%, rgba(255, 140, 0, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.cta-status-pill {
  margin-bottom: 1.35rem;
  background: #ffffff !important;
  color: #047857 !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.1) !important;
}

.cta-banner-title {
  color: #0f172a !important;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.cta-title-main {
  display: block;
  color: #0f172a !important;
}

.cta-title-accent {
  display: block;
  font-size: 1.05em;
  margin-top: 0.35rem;
  background: linear-gradient(90deg, #ff4c00, #ff8c00) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.cta-banner-desc {
  color: #475569 !important;
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.eyeweb-nav-cta.cta-lg {
  font-size: 1.05rem;
  padding: 0.45rem 0.45rem 0.45rem 1.75rem;
}

.cta-banner-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a !important;
  background: #ffffff !important;
  backdrop-filter: blur(10px);
  border: 1.5px solid #0f172a !important;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-banner-secondary-btn:hover {
  background: #0f172a !important;
  border-color: #0f172a !important;
  transform: translateY(-2px);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.2);
}

.cta-trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.cta-trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #334155 !important;
  font-size: 0.92rem;
  font-weight: 600;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.badge-dot.emerald {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.badge-dot.blue {
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
}

.badge-dot.orange {
  background: #ff4c00;
  box-shadow: 0 0 10px #ff4c00;
}

/* --- Contact Page Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-800);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--slate-50);
  color: var(--dark-900);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--primary-ultralight);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Next Steps Box on Contact Page */
.next-steps-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
}

.timeline-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.step-num-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* --- Case Study Cards --- */
.case-study-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.case-study-header {
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid var(--slate-100);
}

.case-study-body {
  padding: 1.5rem 2rem 2rem;
  flex-grow: 1;
}

.case-study-results {
  background: var(--primary-ultralight);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.case-study-results .res-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-darker);
}

.case-study-results .res-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-600);
}

/* --- Footer --- */
.site-footer {
  background: var(--dark-950);
  color: var(--slate-400);
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: var(--slate-400);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-green);
  padding-left: 4px;
}

/* Social Media Links (Column 1) */
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--slate-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.footer-social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

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

/* Clean Footer Contact Info - Normal Style matching other columns */
.footer-contact-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-icon {
  color: var(--slate-400);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.footer-contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
}

.footer-contact-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-200);
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

.footer-contact-val:hover {
  color: var(--accent-green);
}

.footer-contact-val.static-val {
  font-size: 0.88rem;
  color: var(--slate-200);
  font-weight: 500;
}

.footer-contact-sub {
  font-size: 0.76rem;
  color: var(--slate-500);
  line-height: 1.35;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--slate-500);
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
  .hero-cards-row {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .hero-featured-card.highlight {
    transform: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .services-grid-5 {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   ENHANCED MODERN COMPONENTS: LOGO, SVG ICONS, PORTFOLIO & TESTIMONIAL SLIDER
   ========================================================================== */

/* 1. Logo Styling */
.site-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: 160px;
  height: 60px;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.site-logo-img:hover {
  transform: scale(1.03);
}

/* 2. Modern SVG Icon System */
.icon-svg {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
}

.svg-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: var(--primary-dark);
  border: 1.5px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.12);
  margin-bottom: 1.5rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.svg-icon-box.sm {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.svg-icon-box.sm .icon-svg {
  width: 24px;
  height: 24px;
}

.svg-icon-box.emerald {
  background: linear-gradient(135deg, #ecfdf5 0%, #a7f3d0 100%);
  color: #047857;
  border-color: rgba(5, 150, 105, 0.3);
}

.svg-icon-box.blue {
  background: linear-gradient(135deg, #eff6ff 0%, #bfdbfe 100%);
  color: #1d4ed8;
  border-color: rgba(59, 130, 246, 0.3);
}

.svg-icon-box.purple {
  background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
  color: #7e22ce;
  border-color: rgba(147, 51, 234, 0.3);
}

.svg-icon-box.orange {
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  color: #c2410c;
  border-color: rgba(249, 115, 22, 0.3);
}

.hero-featured-card:hover .svg-icon-box,
.service-card-item:hover .svg-icon-box,
.why-card:hover .svg-icon-box,
.process-card:hover .svg-icon-box {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.25);
}

/* 3. Portfolio Section */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.portfolio-tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border: 1.5px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-600);
  cursor: pointer;
  transition: var(--transition);
}

.portfolio-tab-btn:hover,
.portfolio-tab-btn.active {
  background: var(--dark-900);
  color: var(--white);
  border-color: var(--dark-900);
  box-shadow: var(--shadow-sm);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(16, 185, 129, 0.4);
}

.portfolio-thumb-wrap {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-size: cover;
  background-position: center;
}

.portfolio-metric-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-green);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(43, 199, 53, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.portfolio-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.portfolio-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--dark-900);
}

.portfolio-body p {
  font-size: 0.95rem;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* 4. Testimonial Slider */
.testimonial-slider-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem 0 3rem;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  text-align: center;
}

.quote-symbol {
  font-size: 4rem;
  line-height: 1;
  color: var(--primary-light);
  font-family: Georgia, serif;
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--dark-900);
  margin-bottom: 2.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.author-meta {
  text-align: left;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark-900);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.author-role {
  font-size: 0.85rem;
  color: var(--slate-500);
  font-weight: 500;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--slate-200);
  background: var(--white);
  color: var(--dark-900);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-nav-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate-300);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.slider-dot.active {
  width: 28px;
  border-radius: 12px;
  background: var(--primary-dark);
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 2.5rem 1.5rem;
  }
}

/* ==========================================================================
   EYEWEB 2026 DESIGN SYSTEM & ANIMATIONS
   - Typography: Literata Serif Italic Accents paired with Modern Grotesque
   - Always-Looping Animated Icons: Continuous Fluid Floating, Glowing, Rotating
   - Scroll Entrance Animations: All Sections & Staggered Elements
   - Eyeweb Interactive Cards: Overlay Transitions & Circular Arrow Badges
   ========================================================================== */

/* --- Eyeweb Typography: Serif Italic Accents --- */
.literata-font,
.literata-italic,
.serif-accent,
.highlight-serif {
  font-family: 'Literata', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 500 !important;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #2bc735 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Section Top & Bottom Padding with Eyeweb Curves --- */
.eyeweb-section-wrapper {
  margin: 1rem 1.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .eyeweb-section-wrapper {
    margin: 0.75rem 0.5rem;
    border-radius: 20px;
  }
}

/* --- ALWAYS-LOOPING ANIMATED ICONS (Continuous Infinite Loops) --- */
@keyframes isarvaLoopFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-6px) rotate(2deg);
  }

  50% {
    transform: translateY(-9px) rotate(0deg);
  }

  75% {
    transform: translateY(-4px) rotate(-2deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes isarvaLoopPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 4px 10px rgba(16, 185, 129, 0.15));
  }

  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 24px rgba(16, 185, 129, 0.45));
  }
}

@keyframes isarvaLoopRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes isarvaLoopGlowSweep {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4), 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(16, 185, 129, 0), 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0), 0 8px 24px rgba(0, 0, 0, 0.06);
  }
}

@keyframes isarvaLoopSheen {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Looping Utility Classes */
.isarva-loop-float {
  animation: isarvaLoopFloat 4s ease-in-out infinite !important;
}

.isarva-loop-pulse {
  animation: isarvaLoopPulse 3.5s ease-in-out infinite !important;
}

.isarva-loop-rotate {
  animation: isarvaLoopRotate 18s linear infinite !important;
}

/* Stagger animation loops for sibling cards so motion is harmonious */
.hero-cards-row> :nth-child(1) .svg-icon-box {
  animation: isarvaLoopFloat 3.8s ease-in-out infinite 0s, isarvaLoopGlowSweep 4s infinite 0s;
}

.hero-cards-row> :nth-child(2) .svg-icon-box {
  animation: isarvaLoopPulse 3.2s ease-in-out infinite 0.4s, isarvaLoopGlowSweep 3.6s infinite 0.5s;
}

.hero-cards-row> :nth-child(3) .svg-icon-box {
  animation: isarvaLoopFloat 4.2s ease-in-out infinite 0.8s, isarvaLoopGlowSweep 4.4s infinite 1s;
}

/* Grid icons continuous looping */
.services-grid> :nth-child(odd) .svg-icon-box {
  animation: isarvaLoopFloat 4s ease-in-out infinite;
}

.services-grid> :nth-child(even) .svg-icon-box {
  animation: isarvaLoopPulse 3.6s ease-in-out infinite 0.5s;
}

.process-steps-row> :nth-child(1) .step-number-pill {
  animation: isarvaLoopFloat 3.5s ease-in-out infinite;
}

.process-steps-row> :nth-child(2) .step-number-pill {
  animation: isarvaLoopFloat 3.5s ease-in-out infinite 0.3s;
}

.process-steps-row> :nth-child(3) .step-number-pill {
  animation: isarvaLoopFloat 3.5s ease-in-out infinite 0.6s;
}

.process-steps-row> :nth-child(4) .step-number-pill {
  animation: isarvaLoopFloat 3.5s ease-in-out infinite 0.9s;
}

/* SVG Icon Box Component */
.svg-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: isarvaLoopFloat 4s ease-in-out infinite;
}

.svg-icon-box svg,
.svg-icon-box .icon-svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.2;
  transition: transform 0.3s ease;
}

/* Active continuous pulse on SVG glyphs inside icon box */
.svg-icon-box svg {
  animation: isarvaLoopPulse 3.2s ease-in-out infinite;
}

/* Icon Box Color Variants with Vibrant Glass Tints */
.svg-icon-box.emerald {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.svg-icon-box.blue {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.svg-icon-box.purple {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  color: #9333ea;
  border-color: rgba(147, 51, 234, 0.35);
  box-shadow: 0 10px 25px rgba(147, 51, 234, 0.2);
}

.svg-icon-box.orange {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #ea580c;
  border-color: rgba(234, 88, 12, 0.35);
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.2);
}

.svg-icon-box.amber {
  background: linear-gradient(135deg, #fefce8 0%, #fef08a 100%);
  color: #ca8a04;
  border-color: rgba(202, 138, 4, 0.35);
  box-shadow: 0 10px 25px rgba(202, 138, 4, 0.2);
}

.hero-featured-card:hover .svg-icon-box,
.service-card:hover .svg-icon-box {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 16px 32px rgba(16, 185, 129, 0.3);
}

/* --- ALL SECTIONS SCROLL ENTRANCE ANIMATIONS --- */
.reveal-section,
.isarva-reveal,
.section-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-section.is-visible,
.isarva-reveal.is-visible,
.section-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Children Animations */
.reveal-section .stagger-child,
.isarva-reveal .stagger-child {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-section.is-visible .stagger-child:nth-child(1),
.isarva-reveal.is-visible .stagger-child:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.reveal-section.is-visible .stagger-child:nth-child(2),
.isarva-reveal.is-visible .stagger-child:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.reveal-section.is-visible .stagger-child:nth-child(3),
.isarva-reveal.is-visible .stagger-child:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.reveal-section.is-visible .stagger-child:nth-child(4),
.isarva-reveal.is-visible .stagger-child:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.reveal-section.is-visible .stagger-child:nth-child(5),
.isarva-reveal.is-visible .stagger-child:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.reveal-section.is-visible .stagger-child:nth-child(6),
.isarva-reveal.is-visible .stagger-child:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* --- EYEWEB WORK CARDS WITH OVERLAY HOVER & CIRCULAR ARROW --- */
.eyeweb-work-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  height: 480px;
  background: #0f172a;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  text-decoration: none;
}

@media (max-width: 768px) {
  .eyeweb-work-card {
    height: 380px;
  }
}

.eyeweb-work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.2);
}

.eyeweb-work-card .card-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.eyeweb-work-card:hover .card-media {
  transform: scale(1.06);
}

.eyeweb-work-card .card-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 40%, rgba(15, 23, 42, 0.1) 75%, transparent 100%);
  transition: all 0.5s ease;
  z-index: 1;
}

.eyeweb-work-card .card-tags-top {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.eyeweb-work-card .card-tag-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.eyeweb-work-card .card-content-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: #ffffff;
  z-index: 2;
  transition: transform 0.4s ease;
}

.eyeweb-work-card .card-client-title {
  font-family: 'Literata', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.eyeweb-work-card .card-metric-highlight {
  font-size: 1rem;
  color: #a7f3d0;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.eyeweb-work-card .card-description {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

/* Eyeweb Circular Yellow/Orange Arrow Action Button */
.eyeweb-arrow-btn {
  position: absolute;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff4c00, #ff8c00);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(255, 76, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.eyeweb-work-card:hover .eyeweb-arrow-btn {
  transform: rotate(-42deg) scale(1.12);
  background: linear-gradient(90deg, #ff8c00, #ff4c00);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 76, 0, 0.6);
}

/* --- EYEWEB STATUS PILL WITH GLOWING GREEN DOT --- */
.eyeweb-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.15rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.eyeweb-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #10b981;
  position: relative;
}

.eyeweb-status-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.4);
  animation: pulse-dot 1.8s infinite ease-in-out;
}

/* Ensure Hero has breathing space for floating pill header */
.section-hero {
  padding-top: calc(var(--header-height) + 5rem) !important;
}

/* ============================================================
   EYEWEB SECTION 1: KEY SERVICES (Screenshot 2 Design)
   Full-width container with 40px margin left/right
   ============================================================ */
.services-full-container {
  width: calc(100% - 80px);
  max-width: none;
  margin-left: 40px;
  margin-right: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 1024px) {
  .services-full-container {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
  }
}

@media (max-width: 768px) {
  .services-full-container {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }
}

.eyeweb-services-dark {
  background: #fcf6eb;
  border-radius: 24px;
  padding: 0;
  color: #0f172a;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.eyeweb-services-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.4) 100%);
  pointer-events: none;
}

.eyeweb-services-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  gap: 4rem;
  max-width: var(--container-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 4.5rem 20px;
  position: relative;
  z-index: 2;
}

.eyeweb-services-col-left {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyeweb-services-header-sub {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: #047857;
  margin-bottom: 0.25rem;
  letter-spacing: normal;
  text-transform: none;
}

.eyeweb-services-header-title {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 2rem 0;
  line-height: 1.15;
}

.eyeweb-services-list {
  display: flex;
  flex-direction: column;
}

.eyeweb-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.eyeweb-service-row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.eyeweb-service-name {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.75vw, 1.55rem);
  font-weight: 700;
  color: #1e293b;
  transition: all 0.25s ease;
  letter-spacing: -0.01em;
}

.eyeweb-service-arrow {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: #fff;

  border-radius: 50%;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.eyeweb-service-arrow svg {
  display: block;
  transform-origin: 50% 50%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.eyeweb-service-row:hover .eyeweb-service-name,
.eyeweb-service-row.is-active .eyeweb-service-name {
  color: #ff4c00;
  transform: translateX(6px);
}

.eyeweb-service-row.is-active .eyeweb-service-arrow {
  background: linear-gradient(90deg, #ff4c00, #ff8c00);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 76, 0, 0.45);
}

.eyeweb-service-row.is-active .eyeweb-service-arrow svg {
  transform: rotate(-45deg) !important;
}

.eyeweb-service-row:hover .eyeweb-service-arrow {
  background: linear-gradient(90deg, #ff8c00, #ff4c00);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(255, 76, 0, 0.55);
}

.eyeweb-service-row:hover .eyeweb-service-arrow svg {
  transform: rotate(-45deg) !important;
}

/* Bottom Pill Button: All our services */
.eyeweb-all-services-btn {
  margin-top: 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.85rem;
  background: linear-gradient(90deg, #ff4c00, #ff8c00) !important;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(255, 76, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
  border: none !important;
}

.eyeweb-all-services-btn:hover {
  background: linear-gradient(90deg, #ff8c00, #ff4c00) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 76, 0, 0.55);
}

.eyeweb-all-services-btn .btn-arrow-icon svg {
  display: block;
  transform-origin: 50% 50%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Rotate arrow straight to the right on hover */
.eyeweb-all-services-btn:hover .btn-arrow-icon svg,
.eyeweb-preview-cta:hover .btn-arrow-icon svg,
.eyeweb-nav-cta:hover .cta-arrow-badge svg {
  transform: rotate(-45deg) !important;
}

/* Right Column: Full-Height Showcase, NO BORDER with equal top/bottom space */
.eyeweb-services-col-right {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border: none !important;
  border-radius: 16px;
  background: #090d16;
}

.eyeweb-showcase-full {
  position: relative;
  width: 100%;
  height: 100%;
  border: none !important;
  border-radius: 16px;
  overflow: hidden;
}

.eyeweb-preview-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.5s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  border: none !important;
  border-radius: 16px;
  overflow: hidden;
}

.eyeweb-preview-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.eyeweb-preview-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none !important;
  border-radius: 16px;
}

.eyeweb-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 22, 0.35) 0%, rgba(10, 14, 22, 0.88) 100%);
  z-index: 2;
  border: none !important;
  border-radius: 16px;
}

.eyeweb-preview-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 3rem;
}

.eyeweb-preview-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.eyeweb-preview-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #e2e8f0;
  max-width: 480px;
  margin: 0 auto 2rem;
  text-align: center;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.eyeweb-preview-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.95rem;
  background: linear-gradient(90deg, #ff4c00, #ff8c00) !important;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 76, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none !important;
}

.eyeweb-preview-cta:hover {
  background: linear-gradient(90deg, #ff8c00, #ff4c00) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 76, 0, 0.6);
}

.eyeweb-preview-cta .btn-arrow-icon svg {
  display: block;
  transform-origin: 50% 50%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.eyeweb-preview-cta:hover .btn-arrow-icon svg {
  transform: rotate(-45deg) !important;
}

@media (max-width: 1024px) {
  .eyeweb-services-grid {
    grid-template-columns: 1fr;
  }

  .eyeweb-services-col-left {
    padding: 3rem 2rem;
  }

  .eyeweb-services-col-right {
    min-height: 480px;
    border-radius: 0 0 16px 16px;
  }
}

/* ============================================================
   EYEWEB SECTION 2: TESTIMONIALS CAROUSEL ("A Word from Our Customers")
   Matches Screenshot 1
   ============================================================ */
/* ============================================================
   EYEWEB SECTION 2: FULL-WIDTH CONTINUOUS LOOP TESTIMONIALS
   Matches Screenshot 1 with In-Card Video & Real Logos
   ============================================================ */
.eyeweb-testimonials-section {
  width: 100%;
  padding: 35px 0 45px;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.eyeweb-testimonials-marquee-wrap {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 1.5rem;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.eyeweb-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.marquee-group {
  display: flex;
  gap: 2rem;
  padding-right: 2rem;
  flex-shrink: 0;
  animation: isarvaInfiniteMarquee 75s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Pause continuous loop on hover */
.eyeweb-testimonials-marquee-wrap:hover .marquee-group,
.eyeweb-marquee-track.is-paused .marquee-group {
  animation-play-state: paused !important;
}

@keyframes isarvaInfiniteMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.eyeweb-customer-card {
  flex: 0 0 320px;
  width: 320px;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #111827;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  user-select: none;
}

.eyeweb-customer-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.22);
}

.customer-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.eyeweb-customer-card:hover .customer-card-bg {
  transform: scale(1.06);
}

/* Testimonial Card Overlay: absolute inset-0 bg-gradient-to-t from-black via-black/40 to-transparent opacity-20 */
.customer-card-gradient,
.customer-card-gradient.absolute.inset-0 {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, #000000 0%, rgb(0 0 0) 100%, transparent 100%) !important;
  opacity: 0.35 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.opacity-20 {
  opacity: 0.2 !important;
}

.customer-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  padding: 1.75rem 1.25rem 0;
}

.customer-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.customer-company {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* Video Play Button: Centered Horizontally AND Vertically, smaller size */
.customer-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  z-index: 5;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.65));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.customer-video-play-btn svg {
  width: 58px;
  height: 58px;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.customer-video-play-btn svg path {
  fill: #ffffff !important;
}

.customer-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.85));
}

/* In-Card Video Player Layer (Plays directly INSIDE the card - full width & full height!) */
.card-inline-video-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #000000;
  border-radius: 24px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.card-inline-video-layer.is-playing {
  opacity: 1;
  pointer-events: auto;
}

.card-inline-video-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}

.card-inline-video-inner iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  max-width: none !important;
  border: none;
  display: block;
}

.card-inline-video-inner video,
.card-inline-video-inner .card-cover-video {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 24px;
  display: block;
}

.card-inline-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.card-inline-close-btn:hover {
  background: #ffce00;
  color: #111827;
  border-color: #ffce00;
  transform: scale(1.1);
}

/* Testimonial Quote Text: Exactly 30px ABOVE the company logo */
.customer-quote-box {
  position: absolute;
  bottom: calc(1.75rem + 34px + 30px);
  left: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  text-align: center;
  margin: 0;
  padding: 0;
}

.customer-quote-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #f8fafc;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

/* Pinned Bottom Client Logo Image: Centered Horizontally, NO border, NO background */
.customer-logo-badge {
  position: absolute;
  bottom: 1.75rem;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 4;
  margin: 0 auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.customer-logo-badge.white-badge {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.customer-logo-badge img {
  max-height: 34px;
  max-width: 180px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto !important;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.75));
}

/* ============================================================
   EYEWEB SECTION 3: OUR WORK ("Example of Our Work")
   Matches Screenshot 3
   ============================================================ */
#work {
  padding: 40px 0;
  background: var(--white);
}

.eyeweb-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.eyeweb-work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s ease;
}

.eyeweb-work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.14), 0 8px 18px -4px rgba(15, 23, 42, 0.06);
  border-color: #cbd5e1;
}

/* 100% Full-Width Media Wrap - Zero blank space, 16:10 aspect ratio matching mockups */
.work-card-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
  display: block;
}

.work-card-media-wrap .work-card-media {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.eyeweb-work-card:hover .work-card-media-wrap .work-card-media {
  transform: scale(1.05);
}

/* Floating category pills at top left */
.work-card-tags {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  max-width: calc(100% - 2rem);
}

.work-tag-pill {
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.7rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.02em;
}

/* Content Wrap Below Image - Image is 100% visible and NEVER covered */
.work-card-content-wrap {
  padding: 1.35rem 1.45rem 1.45rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.work-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.45rem 0;
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.eyeweb-work-card:hover .work-card-title {
  color: #ff5500;
}

.work-card-subtitle {
  font-size: 0.84rem;
  font-weight: 700;
  color: #ea580c;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.work-card-extra-text {
  font-size: 0.85rem;
  color: #64748b !important;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
  max-height: none !important;
}

/* Footer row inside content wrap */
.work-card-footer-action {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.view-case-study-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.eyeweb-work-card:hover .view-case-study-label {
  color: #ff5500;
}

.work-card-arrow-action {
  position: static;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5500, #ff8800);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  text-decoration: none;
}

.work-card-arrow-action svg {
  width: 12px;
  height: 12px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.eyeweb-work-card:hover .work-card-arrow-action {
  transform: rotate(-45deg) scale(1.08);
  background: linear-gradient(135deg, #ff8800, #ff5500);
  box-shadow: 0 6px 16px rgba(255, 85, 0, 0.45);
}

/* Fallback for cards with work-card-bottom-info */
.eyeweb-work-card .work-card-bottom-info {
  padding: 1.35rem 1.45rem 1.45rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
  position: static;
  transform: none;
}
.eyeweb-work-card .work-card-bottom-info .work-card-title {
  color: #0f172a;
  text-shadow: none;
}
.eyeweb-work-card .work-card-bottom-info .work-card-subtitle {
  color: #ea580c;
  text-shadow: none;
}

/* Global Button Hover Reversal Utility */
.btn-cta,
.btn-primary,
button[type="submit"],
.contact-form-submit,
.lead-form-submit {
  background: linear-gradient(90deg, #ff4c00, #ff8c00) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(255, 76, 0, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-cta:hover,
.btn-primary:hover,
button[type="submit"]:hover,
.contact-form-submit:hover,
.lead-form-submit:hover {
  background: linear-gradient(90deg, #ff8c00, #ff4c00) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(255, 76, 0, 0.55) !important;
}

/* Eyeweb Bottom Director Bar (Matches Screenshot 3) */
.eyeweb-director-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 60px;
  padding: 0.65rem 0.85rem 0.65rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.director-profile {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.director-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
}

.director-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.director-role {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* Eyeweb Director Bar Action Button (Screenshot 1 Fix) */
.eyeweb-yellow-pill-btn,
.eyeweb-action-pill-btn {
  background: linear-gradient(90deg, #ff4c00, #ff8c00) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.65rem 1.45rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 76, 0, 0.35) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.eyeweb-yellow-pill-btn:hover,
.eyeweb-action-pill-btn:hover {
  background: linear-gradient(90deg, #ff8c00, #ff4c00) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 76, 0, 0.5) !important;
}

.eyeweb-action-pill-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.eyeweb-action-pill-btn:hover .eyeweb-action-pill-arrow {
  transform: rotate(-45deg);
}

/* ============================================================
   VIDEO MODAL POPUP
   ============================================================ */
.isarva-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 2rem;
}

.isarva-video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
}

.video-modal-content iframe,
.video-modal-content video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-modal-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease;
}

.video-modal-close-btn:hover {
  transform: scale(1.2);
  color: #FFCE00;
}

/* --- Focus Cards System (Matches Attached Screenshot) --- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.focus-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 24px;
  padding: 2.5rem 2rem 2.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
}

.focus-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.focus-card:hover .focus-icon-box {
  transform: scale(1.08);
}

.focus-icon-box svg {
  width: 24px;
  height: 24px;
}

.focus-icon-box.emerald {
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  color: #10b981;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.18);
}

.focus-icon-box.orange {
  background: #fff7ed;
  border: 1px solid #ffedd5;
  color: #f97316;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.2);
}

.focus-icon-box.blue {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #3b82f6;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.18);
}

.focus-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.65rem 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-align: left;
}

.focus-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

@media (max-width: 1024px) {
  .focus-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .eyeweb-services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .eyeweb-services-dark {
    padding: 3rem 2rem;
  }

  .eyeweb-work-grid {
    grid-template-columns: 1fr;
  }

  .eyeweb-customer-card {
    flex: 0 0 300px;
  }
}

@media (max-width: 768px) {

  /* Prevent horizontal scroll globally on mobile */
  body,
  html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }

  .site-header-floating {
    top: 0.75rem;
  }

  .nav-pill-container {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 100%;
  }

  .nav-pill-inner {
    padding: 0.4rem 0.75rem;
    border-radius: 40px;
    gap: 0.5rem;
  }

  .brand-logo {
    padding: 0;
    flex-shrink: 1;
    min-width: 0;
  }

  .site-logo-img {
    height: 41px !important;
    max-width: 100% !important;
    width: 120px !important;
    max-height: 100% !important;
    object-fit: contain !important;
  }

  .nav-desktop,
  .eyeweb-mega-menu {
    display: none !important;
  }

  /* Completely remove/hide eyeweb-nav-cta in mobile */
  .eyeweb-nav-cta {
    display: none !important;
  }

  /* Retain full consultation CTA inside mobile drawer menu */
  .mobile-drawer .mobile-drawer-btn {
    display: flex !important;
  }

  .nav-actions {
    gap: 0;
    flex-shrink: 0;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  /* Mobile section spacing - normal CSS */
  .section {
    padding: 35px 0;
  }

  #work {
    padding-top: 0 !important;
    padding-bottom: 35px !important;
  }

  .section-hero {
    padding-top: calc(var(--header-height) + 2.5rem) !important;
    padding-bottom: 40px !important;
  }

  /* Compact section header margins to maintain tight 40px visual rhythm */
  .section .container>.text-center[style*="margin-bottom"],
  .eyeweb-testimonials-section .container>.text-center[style*="margin-bottom"] {
    margin-bottom: 1.75rem !important;
  }

  /* Hero Mobile Adjustments */
  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.75rem) !important;
    word-break: break-word;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    padding: 0 0.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }

  .hero-cta-group .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-cards-row {
    width: 100%;
    max-width: 100%;
  }

  .hero-featured-card {
    padding: 1.75rem 1.25rem;
  }

  /* Stats Cards Mobile */
  .stats-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stat-card {
    padding: 1.75rem 1.25rem;
  }

  /* Key Services Section Mobile */


  .services-full-container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 40px 14px;
    overflow: hidden;
  }

  .eyeweb-services-dark {
    padding: 1.75rem 1.25rem 2.75rem !important;
    border-radius: 20px;
  }

  .eyeweb-services-grid {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .eyeweb-services-col-left {
    padding: 0 !important;
    width: 100% !important;
  }

  /* Completely remove eyeweb-services-col-right in mobile */
  .eyeweb-services-col-right {
    display: none !important;
  }

  .eyeweb-service-name {
    font-size: 1.15rem;
  }

  /* Focus Cards Mobile Design - Centered (Matches User Screenshot 3) */
  .focus-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    width: 100%;
  }

  .focus-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.4rem;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  }

  .focus-icon-box {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.15rem auto !important;
    border-radius: 12px;
  }

  .focus-icon-box svg {
    width: 22px;
    height: 22px;
  }

  .focus-card-title {
    font-size: 1.22rem;
    margin-bottom: 0.5rem;
    text-align: center !important;
  }

  .focus-card-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    text-align: center !important;
  }

  /* Our Work Mobile */
  .eyeweb-work-card {
    height: auto;
  }

  .eyeweb-director-bar {
    flex-direction: column;
    gap: 1rem;
    border-radius: 24px;
    text-align: center;
    padding: 1.25rem 1rem;
    width: 100%;
    max-width: 100%;
  }

  .director-profile {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Why Isarva Cards Mobile Centering (Matches User Screenshot 1) */
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.4rem;
    border-radius: 20px;
  }

  .why-card .svg-icon-box {
    margin: 0 auto 1.25rem auto !important;
  }

  .why-card h3 {
    text-align: center !important;
    font-size: 1.22rem;
    margin-bottom: 0.55rem;
  }

  .why-card p {
    text-align: center !important;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
  }

  /* Process Framework Cards Mobile Centering (Matches User Screenshot 2) */
  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .process-step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.25rem 1.4rem 2rem;
    border-radius: 24px;
    position: relative;
  }

  .process-card-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1.25rem;
  }

  .process-step-card .svg-icon-box {
    margin: 0 auto !important;
  }

  .process-step-num {
    position: absolute;
    top: -0.25rem;
    right: 0;
    font-size: 2.2rem;
    line-height: 1;
    opacity: 0.28;
  }

  .process-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .process-step-pill {
    margin: 0 auto 0.85rem auto !important;
    align-self: center;
  }

  .process-step-card h3 {
    text-align: center !important;
    font-size: 1.22rem;
    margin-bottom: 0.55rem;
  }

  .process-step-card p {
    text-align: center !important;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
  }

  .card-white {
    padding: 1.75rem 1.25rem;
  }

  /* Site Footer Mobile Centering (Matches User Screenshot 4) */
  .site-footer {
    text-align: center !important;
    padding: 4rem 0 2rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.75rem !important;
    text-align: center !important;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
    width: 100%;
  }

  .footer-brand-logo {
    margin: 0 auto 1.25rem auto !important;
    display: inline-flex !important;
    justify-content: center !important;
  }

  .footer-col p {
    text-align: center !important;
    max-width: 440px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.25rem !important;
  }

  /* Footer Column 1 Social Media Mobile Centering */
  .footer-social-links {
    justify-content: center !important;
    margin-top: 0.25rem !important;
  }

  .footer-col h4 {
    text-align: center !important;
    margin-bottom: 1.25rem !important;
    width: 100%;
  }

  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
  }

  .footer-links li {
    text-align: center !important;
    width: 100%;
    margin-bottom: 0.75rem !important;
  }

  .footer-links a {
    text-align: center !important;
    display: inline-block !important;
  }

  .footer-links a:hover {
    padding-left: 0 !important;
    color: var(--accent-green) !important;
    transform: translateY(-1px);
  }

  /* Footer Column 4 Clean Contact Mobile Centering */
  .footer-col-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-contact-clean {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    gap: 1.25rem !important;
  }

  .footer-contact-row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.35rem !important;
  }

  .footer-contact-text-wrap {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 1.25rem !important;
  }

  .footer-bottom-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.25rem !important;
  }

  /* Testimonials Marquee Mobile Overflow Fix */
  .eyeweb-testimonials-section {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    padding: 24px 0 32px !important;
  }

  .eyeweb-testimonials-marquee-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .eyeweb-customer-card {
    flex: 0 0 280px !important;
    width: 280px !important;
    height: 440px !important;
  }

  .marquee-group {
    gap: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Impact CTA Banner Mobile */
  .section-cta-wrap {
    padding: 40px 0 20px !important;
  }

  .cta-banner-premium {
    padding: 2.75rem 1.25rem 2.25rem !important;
    border-radius: 22px !important;
  }

  .cta-banner-title {
    font-size: clamp(1.75rem, 6vw, 2.2rem) !important;
  }

  .cta-banner-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
  }

  .cta-banner-buttons .eyeweb-nav-cta,
  .cta-banner-buttons .cta-banner-secondary-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cta-trust-badges {
    gap: 1rem;
  }
}

@media (max-width: 380px) {
  .site-logo-img {
    height: 41px !important;
    max-width: 100% !important;
    width: 120px !important;
    max-height: 100% !important;
    object-fit: contain !important;
  }

  .nav-pill-inner {
    padding: 0.35rem 0.5rem 0.35rem 0.75rem;
  }

  .eyeweb-customer-card {
    flex: 0 0 250px !important;
    width: 250px !important;
    height: 400px !important;
  }
}

/* ============================================================
   RESPONSIVE EYEWEB WORK GRID
   ============================================================ */
@media (max-width: 1024px) {
  .eyeweb-work-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 640px) {
  .eyeweb-work-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* ============================================================
   OUR WORK & CASE STUDIES: DYNAMIC PAGINATION
   ============================================================ */
.isarva-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2.25rem auto 1.25rem auto;
  flex-wrap: wrap;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pagination-btn,
.pagination-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 44px;
  height: 44px;
  padding: 0 1.15rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  user-select: none;
}

.pagination-btn:hover:not(.is-disabled),
.pagination-page-btn:hover:not(.is-active) {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.16);
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.pagination-page-btn.is-active {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
  color: #ffffff !important;
  border-color: #059669 !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
  transform: translateY(-1px);
  cursor: default;
}

.pagination-btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 44px;
  color: #94a3b8;
  font-weight: 700;
}

/* Tightly connect Director Bar and Content Cards to CTA Banner on all Service Pages, Industry Pages, Case Studies, and Articles */
.page-template-page-case-studies .section-cta-wrap,
.page-case-studies .section-cta-wrap,
.page-template-page-digital-marketing .section-cta-wrap,
.page-template-page-websites .section-cta-wrap,
.page-template-page-growth-strategy .section-cta-wrap,
.page-template-page-seo-ppc .section-cta-wrap,
.page-template-page-social-media .section-cta-wrap,
.page-template-page-bespoke-web-apps .section-cta-wrap,
.page-template-page-branding .section-cta-wrap,
.page-template-page-services .section-cta-wrap,
.page-template-page-industries .section-cta-wrap,
.page-template-page-industry-detail .section-cta-wrap,
.single-industry .section-cta-wrap,
.single-post .section-cta-wrap,
.single-case_study .section-cta-wrap,
.single .section-cta-wrap,
.section-director-wrap + .section-cta-wrap {
  padding-top: 15px !important;
}

.section-director-wrap {
  padding-top: 20px !important;
  padding-bottom: 10px !important;
}

/* --- Modern Focus / Deliverable Cards & Checkmark Styling --- */
.w-4 { width: 18px !important; }
.h-4 { height: 18px !important; }
.text-emerald { color: #10b981 !important; flex-shrink: 0 !important; }

.focus-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.09);
  border-color: rgba(255, 85, 0, 0.35);
}

.focus-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.focus-icon-box.orange {
  background: rgba(255, 85, 0, 0.1);
  color: #ff5500;
}

.focus-icon-box.blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.focus-icon-box.emerald {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.focus-icon-box svg {
  width: 26px;
  height: 26px;
}

.focus-card-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.focus-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.focus-card svg.w-4,
.focus-card svg[class*="w-4"],
.focus-card svg.text-emerald {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0 !important;
  color: #10b981 !important;
}

/* Deliverable Card Checklist Styles - Horizontal Row Alignment */
.focus-checklist {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
  margin-top: 1.25rem !important;
  list-style: none !important;
  padding: 0 !important;
}

.focus-checklist-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: #1e293b !important;
  line-height: 1.45 !important;
}

.focus-checklist-item svg,
.focus-checklist-item .icon-svg,
.focus-checklist-item svg.text-emerald,
.focus-checklist-item svg.w-4 {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
  color: #10b981 !important;
  display: inline-block !important;
}

.focus-checklist-item span {
  flex: 1 1 auto !important;
  display: inline-block !important;
  color: #334155 !important;
}

/* ============================================================
   LENIS SMOOTH SCROLLING STYLES
   ============================================================ */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ============================================================
   SINGLE ARTICLE & BLOG POST STYLES
   ============================================================ */
.article-single section,
.article-single .card-white {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.article-single .hero-headline {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark-900);
  margin-bottom: 1.25rem;
}

.article-single .card-white {
  padding: 3.5rem 3.5rem;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--slate-700);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
  border: 1px solid var(--slate-100);
}

.article-single .card-white h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  color: var(--dark-900);
  letter-spacing: -0.025em;
  margin-top: 2.75rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--slate-100);
  line-height: 1.25;
}

.article-single .card-white h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: var(--dark-900);
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.article-single .card-white h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.article-single .card-white p {
  margin-bottom: 1.4rem;
  color: var(--slate-700);
  font-size: 1.06rem;
  line-height: 1.85;
}

.article-single .card-white ul,
.article-single .card-white ol {
  margin-bottom: 1.75rem;
  padding-left: 1.75rem;
}

.article-single .card-white ul > li {
  list-style-type: disc;
  margin-bottom: 0.65rem;
  color: var(--slate-700);
  line-height: 1.75;
}

.article-single .card-white ol > li {
  list-style-type: decimal;
  margin-bottom: 0.65rem;
  color: var(--slate-700);
  line-height: 1.75;
}

.article-single .card-white strong {
  color: var(--dark-900);
  font-weight: 700;
}

.article-single .card-white em {
  color: var(--dark-800);
  font-style: italic;
}

.blog-comparison-table th,
.blog-comparison-table td {
  border: 1px solid var(--slate-200);
}

@media (max-width: 768px) {
  .article-single .card-white {
    padding: 2rem 1.25rem !important;
  }
  .article-single .featured-img-wrap {
    margin: -2rem -1.25rem 1.75rem !important;
    border-radius: 12px 12px 0 0 !important;
    max-height: 280px !important;
  }
}

/* ==========================================================================
   Modern Industry Cards & Filter Grid (/industries)
   ========================================================================== */
.industry-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.industry-filter-btn {
  padding: 0.5rem 1.15rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.industry-filter-btn:hover {
  border-color: #cbd5e1;
  color: #0f172a;
  background: #f8fafc;
  transform: translateY(-2px);
}

.industry-filter-btn.is-active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 900px) {
  .industry-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.14), 0 8px 18px -4px rgba(15, 23, 42, 0.06);
  border-color: #cbd5e1;
}

/* 100% Full-Width Media Header - Zero Blank Space, Zero Text Covering It */
.industry-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  background: #0f172a;
  display: block;
}

.industry-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover .industry-card-media img {
  transform: scale(1.05);
}

.industry-badge-row {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.industry-pill {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.industry-metric-pill {
  background: rgba(255, 85, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.35);
  letter-spacing: 0.02em;
}

/* Card Content Below Image */
.industry-card-body {
  padding: 1.65rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
  text-align: left !important;
}

.industry-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.35rem 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  text-align: left !important;
}

.industry-card:hover .industry-title {
  color: #ff5500;
}

.industry-user-line {
  font-size: 0.94rem;
  font-weight: 700;
  color: #ff5500;
  margin: 0 0 0.85rem 0;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-align: left !important;
}

.industry-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
  text-align: left !important;
}

.industry-levers-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left !important;
}

.industry-levers-list li {
  font-size: 0.86rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.45;
  text-align: left !important;
}

.industry-card-footer {
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.industry-action-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.industry-card:hover .industry-action-label {
  color: #ff5500;
}

.industry-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5500, #ff8800);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  flex-shrink: 0;
}

.industry-arrow-btn svg {
  width: 13px;
  height: 13px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover .industry-arrow-btn {
  transform: rotate(-45deg) scale(1.08);
  background: linear-gradient(135deg, #ff8800, #ff5500);
  box-shadow: 0 6px 16px rgba(255, 85, 0, 0.45);
}

/* ==========================================================================
   Case Studies Single Responsive & Metrics Layout
   ========================================================================== */
.cs-article-card {
  padding: 3.5rem 3.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 1 !important;
  transform: none !important;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.cs-featured-img {
  margin: -3.5rem -3.5rem 2.5rem;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  max-height: 560px;
}

.cs-banner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 1.75rem 2rem;
  border-radius: 16px;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 2.5rem;
}

.cs-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  flex-shrink: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.cs-metrics-grid > div {
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--slate-200);
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .cs-banner-row {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem;
  }
  .cs-metrics-grid {
    width: 100%;
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .cs-article-card {
    padding: 1.5rem 1.2rem !important;
    border-radius: 14px;
  }
  .cs-featured-img {
    margin: -1.5rem -1.2rem 1.5rem !important;
    border-radius: 14px 14px 0 0 !important;
  }
  .cs-banner-row {
    padding: 1.25rem 1rem !important;
    gap: 1.25rem;
  }
  .cs-metrics-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
  }
  .cs-metrics-grid > div {
    padding: 0.6rem 0.35rem !important;
  }
  .cs-metrics-grid > div div:first-child {
    font-size: 1.25rem !important;
  }
  .cs-metrics-grid > div div:last-child {
    font-size: 0.68rem !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 400px) {
  .cs-metrics-grid {
    grid-template-columns: 1fr !important;
  }
}