/* =====================================================
   Tech Magify LLP - Main Stylesheet v3.0
   Clean, Minimal, Professional Design
   Primary: #3889c1 | Secondary: #8bc25a | Accent: #fef04f
   ===================================================== */

/* ----- CSS Variables ----- */
:root {
  --primary: #3889c1;
  --primary-dark: #2a6d9e;
  --primary-light: #5aa3d5;
  --primary-deep: #1d5a87;
  --secondary: #8bc25a;
  --secondary-dark: #72a847;
  --accent: #fef04f;
  --dark: #1c1c2e;
  --gray-900: #212529;
  --gray-700: #495057;
  --gray-500: #6c757d;
  --gray-400: #adb5bd;
  --gray-300: #dee2e6;
  --gray-200: #e9ecef;
  --gray-100: #f8f9fa;
  --gray-50: #fbfcfd;
  --white: #ffffff;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

a { color: var(--primary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.9);
  padding: 0;
  z-index: 99999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
}

.cookie-consent.show { transform: translateY(0); }

.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 280px;
  font-size: 13px;
  line-height: 1.6;
}

.cookie-consent-text i { color: var(--secondary); font-size: 16px; margin-right: 8px; vertical-align: middle; }
.cookie-consent-text a { color: var(--secondary); text-decoration: underline; }

.cookie-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-consent-actions .btn-cookie {
  padding: 7px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.btn-cookie-accept { background: var(--secondary); color: var(--white); }
.btn-cookie-accept:hover { background: var(--secondary-dark); }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15) !important; }
.btn-cookie-decline:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* =====================================================
   HEADER - Single merged navbar, no top bar needed
   ===================================================== */

/* Top bar - hidden by default, info merged into navbar */
.top-bar { display: none; }

/* Single merged navbar - ALWAYS white */
.navbar {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar.scrolled {
  padding: 8px 0;
  background: #ffffff;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.navbar-brand img {
  height: 65px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 16px !important;
  font-size: 14px;
  letter-spacing: 0.1px;
  position: relative;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

/* Subtle underline on hover */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 1px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown toggle - no default caret */
.navbar-nav .dropdown-toggle::after { display: none; }

.navbar-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Hover-open dropdown on desktop */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: dropdownSlide 0.25s ease forwards;
  }
  .navbar-nav .dropdown-menu {
    display: none;
  }
}

@keyframes dropdownSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact Us nav button */
.btn-nav {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  padding: 8px 22px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  margin-left: 8px;
  letter-spacing: 0.2px;
  transition: var(--transition);
  border: none !important;
}

.btn-nav:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(56,137,193,0.25);
}

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

.dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 8px 0;
  margin-top: 0;
  min-width: 220px;
}

.dropdown-item {
  padding: 8px 20px;
  font-size: 13.5px;
  color: var(--gray-700);
  transition: all 0.15s ease;
}

.dropdown-item:hover {
  background: rgba(56,137,193,0.06);
  color: var(--primary);
  padding-left: 24px;
}

/* Navbar contact info (shown on large screens within navbar) */
.navbar-contact {
  display: none;
}

@media (min-width: 1200px) {
  .navbar-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 10px;
    font-size: 12px;
  }
  .navbar-contact a {
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .navbar-contact a:hover { color: var(--primary); }
  .navbar-contact i { font-size: 12px; }
}

/* =====================================================
   BUTTONS - Clean, minimal
   ===================================================== */
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(56,137,193,0.25);
}

.btn-secondary {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(139,194,90,0.25);
}

.btn-outline-primary {
  color: var(--primary);
  border: 1.5px solid var(--primary);
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(56,137,193,0.25);
}

.btn-outline-light {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0.2px;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: all 0.25s ease;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn-lg { padding: 12px 30px; font-size: 15px; }

/* Ghost / Text link button - minimalistic learn more */
.btn-ghost,
.link-more {
  background: transparent;
  border: none;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 4px 0;
  position: relative;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.btn-ghost::after,
.link-more::after {
  content: '\2192';
  transition: transform 0.3s ease;
  font-size: 16px;
}

.btn-ghost:hover,
.link-more:hover {
  color: var(--primary-dark);
}

.btn-ghost:hover::after,
.link-more:hover::after {
  transform: translateX(4px);
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section { padding: 80px 0; position: relative; }
.section-sm { padding: 60px 0; position: relative; }
.section-gray { background: var(--gray-100); }

/* Decorative section backgrounds - subtle design elements */
.section-decorated {
  position: relative;
}

.section-decorated::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,137,193,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.section-decorated::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,194,90,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Light line grid pattern for sections */
.section-lines {
  background-image:
    linear-gradient(rgba(56,137,193,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,137,193,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Subtle dot pattern */
.section-dots {
  background-image: radial-gradient(circle, rgba(56,137,193,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.section-header p {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--gray-500);
  font-size: 16px;
}

.section-header .subtitle,
.subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 8px;
}

/* =====================================================
   HERO SECTION - Clean with animated SVG illustration
   ===================================================== */
.hero {
  position: relative;
  background: var(--white);
  color: var(--dark);
  padding: 120px 0 80px;
  overflow: clip;
  overflow-clip-margin: 60px;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* Subtle gradient mesh */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,137,193,0.06) 0%, rgba(139,194,90,0.02) 50%, transparent 70%);
  pointer-events: none;
  animation: heroOrb1 14s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,194,90,0.04) 0%, rgba(254,240,79,0.02) 50%, transparent 70%);
  pointer-events: none;
  animation: heroOrb2 18s ease-in-out infinite;
}

@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 15px) scale(1.03); }
}

@keyframes heroOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -10px) scale(1.05); }
}

/* Decorative blob shapes */
.hero-shapes {
  position: absolute;
  right: 8%; top: 18%;
  width: 300px; height: 300px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: linear-gradient(135deg, rgba(56,137,193,0.06) 0%, rgba(139,194,90,0.03) 100%);
  pointer-events: none;
  animation: blobMorph 12s ease-in-out infinite;
}

.hero-shapes-2 {
  position: absolute;
  right: 18%; bottom: 12%;
  width: 160px; height: 160px;
  border-radius: 30% 70% 60% 40% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, rgba(254,240,79,0.06) 0%, rgba(139,194,90,0.04) 100%);
  pointer-events: none;
  animation: blobMorph2 9s ease-in-out infinite;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  33% { border-radius: 40% 60% 70% 30% / 50% 60% 30% 60%; }
  66% { border-radius: 30% 60% 50% 40% / 40% 50% 60% 50%; }
}

@keyframes blobMorph2 {
  0%, 100% { border-radius: 30% 70% 60% 40% / 50% 60% 40% 50%; }
  50% { border-radius: 60% 40% 50% 60% / 40% 50% 60% 40%; }
}

.hero-dots {
  position: absolute;
  top: 22%; right: 5%;
  width: 100px; height: 100px;
  background-image: radial-gradient(circle, rgba(56,137,193,0.1) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
  opacity: 0.5;
}

.hero h1 {
  color: var(--dark);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero .subtitle { position: relative; z-index: 2; }

.hero .lead {
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.hero .btn { margin-right: 10px; margin-bottom: 10px; position: relative; z-index: 2; }

/* Hero visual — person image + floating badges */
.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  height: 490px;
  margin: 0 auto;
}

/* Gradient backdrop — subtle, behind UI mockup */
.hero-backdrop {
  position: absolute;
  top: 50%; left: 50%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,137,193,0.05) 0%, rgba(139,194,90,0.03) 60%, transparent 100%);
  transform: translate(-50%, -50%);
  animation: heroBackdropPulse 8s ease-in-out infinite;
}

.hero-backdrop-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 1px dashed rgba(56,137,193,0.05);
  transform: translate(-50%, -50%);
  animation: heroRingSpin 60s linear infinite;
}

@keyframes heroBackdropPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.03); opacity: 0.9; }
}

@keyframes heroRingSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Person image — framed in rounded container */
.hero-person {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  object-position: top center;
  z-index: 2;
  border-radius: 200px 200px 30px 30px;
  box-shadow: 0 20px 60px rgba(56,137,193,0.2), 0 8px 24px rgba(0,0,0,0.08);
  opacity: 0;
  animation: heroPersonIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-person-fallback {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 440px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 200px 200px 30px 30px;
  background: linear-gradient(135deg, #e8f0f8 0%, #dbeaf6 100%);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(56,137,193,0.2), 0 8px 24px rgba(0,0,0,0.08);
  opacity: 0;
  animation: heroPersonIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes heroPersonIn {
  0% { opacity: 0; transform: translate(-50%, -46%) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Floating stat badges */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  z-index: 3;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.8);
  opacity: 0;
  animation: heroBadgeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
}

.hero-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-badge-text strong {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.hero-badge-text span {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
}

/* Badge positions + staggered animations */
.hero-badge-1 {
  top: 5%; right: -15px;
  animation: heroBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards,
             heroBadgeFloat1 5s ease-in-out 1.3s infinite;
}

.hero-badge-2 {
  top: 38%; left: -30px;
  animation: heroBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards,
             heroBadgeFloat2 6s ease-in-out 1.5s infinite;
}

.hero-badge-3 {
  bottom: 22%; right: -20px;
  animation: heroBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards,
             heroBadgeFloat3 4.5s ease-in-out 1.7s infinite;
}

.hero-badge-4 {
  bottom: 2%; left: -15px;
  animation: heroBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards,
             heroBadgeFloat4 5.5s ease-in-out 1.9s infinite;
}

@keyframes heroBadgeIn {
  0% { opacity: 0; transform: scale(0.8) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

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

@keyframes heroBadgeFloat2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-6px) translateX(3px); }
}

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

@keyframes heroBadgeFloat4 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-5px) translateX(-3px); }
}

/* Decorative floating dots */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.hero-dot-1 {
  width: 12px; height: 12px;
  background: var(--primary);
  opacity: 0.15;
  top: 2%; left: 15%;
  animation: heroBadgeFloat1 4s ease-in-out infinite;
}

.hero-dot-2 {
  width: 8px; height: 8px;
  background: var(--secondary);
  opacity: 0.2;
  top: 70%; right: 3%;
  animation: heroBadgeFloat2 5s ease-in-out infinite 0.5s;
}

.hero-dot-3 {
  width: 6px; height: 6px;
  background: var(--accent);
  opacity: 0.3;
  bottom: 15%; left: 8%;
  animation: heroBadgeFloat3 6s ease-in-out infinite 1s;
}

/* Hover effect on hero badges */
.hero-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Legacy float/pulse for any other uses */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-float-1 { animation: float 4s ease-in-out infinite; }
.hero-float-2 { animation: float 5s ease-in-out infinite 0.5s; }
.hero-float-3 { animation: floatSlow 6s ease-in-out infinite 1s; }
.hero-pulse { animation: pulse 3s ease-in-out infinite; }

/* Hero social proof strip */
.hero-proof {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-proof .proof-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  font-weight: 600;
  font-family: var(--font-heading);
}

.hero-proof .proof-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-proof .proof-logos img {
  max-height: 24px;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.hero-proof .proof-logos img:hover { opacity: 1; }

/* =====================================================
   PAGE BANNER - Modern, sleek with subtle design elements
   ===================================================== */
.page-banner {
  background: linear-gradient(135deg, #f0f6fb 0%, #f8fbfe 40%, #f4f9f0 100%);
  padding: 110px 0 40px;
  color: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.page-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56,137,193,0.08), rgba(139,194,90,0.04));
  pointer-events: none;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(56,137,193,0.04);
  pointer-events: none;
}

/* Subtle grid pattern overlay */
.page-banner-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(56,137,193,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.page-banner h1 {
  color: var(--dark);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.page-banner h1 .highlight {
  color: var(--primary);
}

.page-banner .banner-desc {
  color: var(--gray-500);
  font-size: 16px;
  max-width: 560px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.page-banner .breadcrumb {
  justify-content: left;
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 13px;
  background: rgba(255,255,255,0.6);
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  margin-top: 12px;
}

.page-banner .breadcrumb-item a { color: var(--primary); font-weight: 500; }
.page-banner .breadcrumb-item a:hover { color: var(--primary-dark); }
.page-banner .breadcrumb-item.active { color: var(--gray-700); font-weight: 500; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: var(--gray-400); }

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
  position: relative;
  overflow: hidden;
  background: var(--white) !important;
  display: none;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.stat-card {
  text-align: center;
  padding: 28px 16px;
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--gray-200);
}

.row > div:last-child .stat-card::after { display: none; }

.stat-card .stat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(56,137,193,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 18px;
  color: var(--primary);
}

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card .stat-label {
  font-size: 13px;
  color: var(--gray-500);
  font-family: var(--font-heading);
  font-weight: 500;
}

/* =====================================================
   CLIENT LOGO MARQUEE
   ===================================================== */
.client-marquee-section {
  padding: 50px 0;
  background: var(--white);
  overflow: hidden;
}

.client-marquee-section .section-header { margin-bottom: 30px; }

.marquee-wrapper,
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after,
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before,
.marquee-container::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.marquee-wrapper::after,
.marquee-container::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  flex-shrink: 0;
}

.marquee-item img {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.marquee-item img:hover { opacity: 1; }

/* =====================================================
   CARDS
   ===================================================== */

/* Service Card */
.card-service {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.card-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(56,137,193,0.15);
}

.card-service .icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(56,137,193,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--primary);
  font-size: 26px;
  transition: var(--transition);
}

.card-service:hover .icon {
  background: var(--primary);
  color: var(--white);
}

.card-service .icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.card-service:hover .icon img {
  filter: brightness(0) invert(1);
}

.card-service h4 { margin-bottom: 10px; font-size: 1.15rem; }
.card-service p { font-size: 14px; color: var(--gray-500); margin-bottom: 0; }

/* Feature Card */
.card-feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  height: 100%;
  border-left: 3px solid var(--primary);
}

.card-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-feature .icon-sm {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  background: rgba(56,137,193,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 14px;
}

.card-feature h5 { margin-bottom: 8px; }
.card-feature p { font-size: 14px; color: var(--gray-500); margin-bottom: 0; }

/* Industry Card - with background image */
.card-industry {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.card-industry:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.card-industry .card-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-industry .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-industry:hover .card-img-wrapper img {
  transform: scale(1.06);
}

.card-industry .card-img-top { height: 200px; object-fit: cover; }
.card-industry .card-body { padding: 24px; }

.card-industry .badge-industry {
  display: inline-block;
  background: rgba(56,137,193,0.08);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-industry h3 { margin-bottom: 10px; font-size: 1.35rem; }

/* =====================================================
   PROCESS / APPROACH STEPS
   ===================================================== */
.approach-section { position: relative; }

.approach-timeline {
  position: relative;
  padding-top: 20px;
}

/* Connecting line sits BEHIND the step circles — push below them */
.approach-timeline::before {
  content: '';
  position: absolute;
  top: 70px;          /* vertically centred on the 64px circles */
  left: calc(12.5% + 32px);  /* start at centre of first circle */
  right: calc(12.5% + 32px); /* end at centre of last circle */
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary), var(--primary-light));
  opacity: 0.25;
  z-index: 0;         /* behind z-index:2 circles */
  pointer-events: none;
}

.process-step {
  text-align: center;
  padding: 20px 16px;
  position: relative;
}

.process-step .step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(56,137,193,0.25);
  transition: var(--transition);
  border: 3px solid var(--white);
  outline: 2px solid rgba(56,137,193,0.15);
}

.process-step:hover .step-number {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 28px rgba(56,137,193,0.35);
  outline-color: rgba(56,137,193,0.3);
}

.process-step .step-icon { font-size: 24px; color: var(--white); }

.process-step h5 { margin-bottom: 8px; font-weight: 600; }

.process-step p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.6;
}

.process-connector { position: relative; }
.process-connector::after { display: none; }

/* =====================================================
   ZOHO GRID
   ===================================================== */
.zoho-app-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: block;
}

.zoho-app-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.zoho-app-card .icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 10px;
}

.zoho-app-card h6 { margin-bottom: 4px; font-weight: 600; font-size: 0.85rem; }
.zoho-app-card p { font-size: 12px; color: var(--gray-500); margin-bottom: 0; }

/* =====================================================
   CERTIFICATIONS
   ===================================================== */
.certifications-section {
  background: linear-gradient(135deg, #f0f7fc 0%, #e8f5e9 40%, #fef9e7 100%);
  color: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.certifications-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,137,193,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.certifications-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,194,90,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.certifications-section .section-header h2 { color: var(--dark); }
.certifications-section .section-header p { color: var(--gray-600); }
.certifications-section .section-header .subtitle { color: var(--primary); }
.certifications-section .section-header h2::after { background: var(--secondary); }

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 20px 20px 16px;
  background: rgba(255,255,255,0.75);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56,137,193,0.08);
  transition: var(--transition);
  min-width: 110px;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.cert-item:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: 0 6px 24px rgba(56,137,193,0.12);
  border-color: rgba(56,137,193,0.15);
}

.cert-item img {
  height: 60px;
  width: auto;
  object-fit: contain;
  /* Recolor white SVGs to dark blue for light background */
  filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(800%) hue-rotate(170deg) brightness(95%) contrast(90%);
  transition: var(--transition);
}

.cert-item:hover img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(60%) saturate(600%) hue-rotate(170deg) brightness(90%) contrast(95%);
}

/* Text label hidden - logo contains product name, sr-only for screen readers */
.cert-item span {
  font-size: 0;
  color: transparent;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Cert badges on zoho page */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56,137,193,0.06);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin: 3px;
}

.cert-badge i { color: var(--secondary); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  height: 100%;
  position: relative;
  border: 1px solid var(--gray-200);
}

.testimonial-card::before {
  content: '\201C';
  font-size: 48px;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 10px; left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  color: var(--gray-700);
}

.testimonial-card .author { display: flex; align-items: center; gap: 12px; }

.testimonial-card .author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 14px;
}

.testimonial-card .author-info strong { display: block; font-size: 14px; color: var(--dark); }
.testimonial-card .author-info span { font-size: 12px; color: var(--gray-500); }

/* =====================================================
   CLIENT LOGOS (Static Grid)
   ===================================================== */
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  height: 90px;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.client-logo:hover { opacity: 1; transform: scale(1.05); }

.client-logo img {
  max-height: 45px;
  max-width: 130px;
  object-fit: contain;
}

/* =====================================================
   CONTACT FORM
   ===================================================== */
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 11px 16px;
  font-size: 14px;
  transition: var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(56,137,193,0.1);
}

.contact-form label {
  font-weight: 500;
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 5px;
}

.contact-info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
}

.contact-info-card h3 { color: var(--white); margin-bottom: 20px; }

.contact-info-item { display: flex; gap: 12px; margin-bottom: 20px; }

.contact-info-item i {
  font-size: 18px;
  color: var(--secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-item p { margin-bottom: 0; font-size: 14px; }
.contact-info-item a { color: var(--white); }
.contact-info-item a:hover { color: var(--secondary); }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-container img { border-radius: var(--radius-lg); }

.experience-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.experience-badge span { font-size: 12px; font-weight: 500; }

.value-card { text-align: center; padding: 28px 18px; }

.value-card .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(56,137,193,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary);
  font-size: 22px;
}

.value-card h5 { margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--gray-500); margin-bottom: 0; }

.team-card { text-align: center; padding: 28px 18px; }

.team-card .team-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid var(--gray-200);
}

.team-card .team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0 auto 14px;
}

.team-card h5 { margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--secondary); font-weight: 600; }

/* =====================================================
   CTA SECTION - Vibrant gradient with decorative graphics
   ===================================================== */
.cta-section {
  background: linear-gradient(135deg, #2a6d9e 0%, #3889c1 30%, #5aa3d5 60%, #8bc25a 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Animated gradient mesh blobs */
.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(139,194,90,0.2);
  pointer-events: none;
  animation: ctaBlob1 10s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: rgba(254,240,79,0.1);
  pointer-events: none;
  animation: ctaBlob2 12s ease-in-out infinite;
}

@keyframes ctaBlob1 {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0,0); }
  50% { border-radius: 40% 60% 50% 50% / 50% 60% 40% 60%; transform: translate(-20px, 15px); }
}

@keyframes ctaBlob2 {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(0,0); }
  50% { border-radius: 60% 40% 30% 70% / 50% 40% 60% 50%; transform: translate(15px, -10px); }
}

/* Dot grid pattern */
.cta-section .cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Decorative ring */
.cta-section .cta-ring {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  transform: translateY(-50%);
  pointer-events: none;
}

.cta-section .cta-ring::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

.cta-section h2 { color: var(--white); margin-bottom: 14px; font-size: 2.2rem; position: relative; z-index: 1; }
.cta-section p { opacity: 0.9; max-width: 600px; margin: 0 auto 28px; font-size: 17px; position: relative; z-index: 1; line-height: 1.7; }
.cta-section .btn { position: relative; z-index: 1; }

.cta-section .btn-white {
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 15px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.cta-section .btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  color: var(--primary-dark);
}

/* CTA section variant for home page */
.cta-modern {
  background: linear-gradient(135deg, #1d5a87 0%, #3889c1 40%, #5aa3d5 70%, #72a847 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Animated gradient mesh */
.cta-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(139,194,90,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(254,240,79,0.08) 0%, transparent 40%),
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
}

.cta-modern .container { position: relative; z-index: 1; }

.cta-modern .cta-content {
  max-width: 680px;
}

.cta-modern h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 14px;
  text-align: left;
}

.cta-modern p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 28px;
  text-align: left;
}

.cta-modern .cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-modern .btn-white {
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  border: none;
  transition: var(--transition);
}

.cta-modern .btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.cta-modern .cta-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cta-modern .cta-stat {
  text-align: center;
}

.cta-modern .cta-stat .number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.cta-modern .cta-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  margin-top: 4px;
}

/* =====================================================
   PODCAST SECTION
   ===================================================== */
.podcast-section {
  background: var(--gray-50);
  padding: 60px 0;
}

.podcast-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.podcast-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
}

.podcast-info h3 { margin-bottom: 8px; }
.podcast-info p { color: var(--gray-500); margin-bottom: 16px; font-size: 14px; }

.podcast-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.podcast-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(56,137,193,0.06);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition-fast);
}

.podcast-links a:hover {
  background: var(--primary);
  color: var(--white);
}

/* =====================================================
   INDUSTRY DETAIL
   ===================================================== */
.industry-detail {
  padding: 80px 0;
  position: relative;
}

.industry-detail:nth-child(even) {
  background: var(--gray-100);
}

/* Subtle decorative lines in industry sections */
.industry-detail::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(56,137,193,0.04) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
  opacity: 0.8;
}

.industry-detail .industry-img {
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(56,137,193,0.12), 0 4px 16px rgba(0,0,0,0.06);
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

/* =====================================================
   INDUSTRY DASHBOARD MOCKUPS (HTML/CSS)
   ===================================================== */
.ind-mockup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(56,137,193,0.13), 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(56,137,193,0.08);
  overflow: hidden;
  font-family: var(--font-body);
}

.ind-mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ind-mockup-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.ind-mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
}
.ind-mockup-dots span:nth-child(1) { background: #fc5c5c; }
.ind-mockup-dots span:nth-child(2) { background: #fdbc40; }
.ind-mockup-dots span:nth-child(3) { background: #34c749; }

.ind-mockup-title {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray-600);
  flex: 1;
}

.ind-mockup-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(56,137,193,0.1);
  color: var(--primary);
  letter-spacing: 0.3px;
}

.ind-mockup-body {
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* KPI Row */
.ind-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ind-kpi {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.05);
}

.ind-kpi-accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
}

.ind-kpi-label {
  font-size: 10px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.ind-kpi-accent .ind-kpi-label { color: rgba(255,255,255,0.7); }

.ind-kpi-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  font-family: var(--font-heading);
}

.ind-kpi-delta {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 3px;
}
.ind-kpi-delta.positive { color: #16a34a; }

/* Chart Area */
.ind-chart-area {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.05);
}

.ind-chart-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.ind-chart-svg-wrap { position: relative; }

.ind-chart-legend {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--gray-500);
  margin-top: 6px;
}
.ind-legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* Allocation bars */
.ind-alloc-row {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.05);
}

.ind-alloc-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.ind-alloc-bars { display: flex; flex-direction: column; gap: 7px; }

.ind-alloc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  color: var(--gray-600);
  font-weight: 500;
}
.ind-alloc-item > span:first-child { width: 38px; flex-shrink: 0; }

.ind-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(0,0,0,0.06);
  border-radius: 10px;
  overflow: hidden;
}

.ind-bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 1s cubic-bezier(0.4,0,0.2,1);
}

.ind-bar-pct {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-700);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

/* Status pills */
.ind-status-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ind-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
}
.ind-status-pill.green { background: rgba(22,163,74,0.08); color: #16a34a; }
.ind-status-pill.blue  { background: rgba(56,137,193,0.1); color: var(--primary-dark); }
.ind-status-pill.yellow{ background: rgba(240,180,41,0.12); color: #b8710a; }

/* Module Cards (ERP) */
.ind-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ind-module-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 13px;
  border: 1px solid rgba(0,0,0,0.05);
}

.ind-module-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.ind-module-info { flex: 1; }
.ind-module-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 2px;
}
.ind-module-stat {
  font-size: 10px;
  color: var(--gray-500);
}

/* Flow bar */
.ind-flow-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #f0f7fc;
  border-radius: 10px;
  padding: 10px 14px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.ind-flow-node {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  padding: 4px 9px;
  border-radius: 6px;
  border: 1px solid rgba(56,137,193,0.2);
  white-space: nowrap;
}
.ind-flow-node-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.ind-flow-arrow {
  color: var(--gray-400);
  font-size: 10px;
  flex-shrink: 0;
}

/* Bottom metrics */
.ind-bottom-metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ind-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--gray-700);
}

/* Project Profitability Bars (Propeoll) */
.ind-proj-bars { display: flex; flex-direction: column; gap: 8px; }

.ind-proj-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ind-proj-name {
  font-size: 10.5px;
  color: var(--gray-600);
  font-weight: 500;
  width: 72px;
  flex-shrink: 0;
}

/* Talent chips */
.ind-talent-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ind-talent-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 600;
}
.ind-chip-blue   { background: rgba(56,137,193,0.08); color: var(--primary-dark); }
.ind-chip-yellow { background: rgba(240,180,41,0.1); color: #8a5c00; }
.ind-chip-green  { background: rgba(139,194,90,0.12); color: #3d7a10; }

/* ── Engagement Phase Row ─────────────────────────────── */
.svc-phase-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.svc-phase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 9.5px;
  font-weight: 600;
  flex: 1;
  text-align: center;
  border: 1px solid transparent;
}
.svc-phase i { font-size: 14px; }
.svc-phase-done    { background: rgba(56,137,193,0.08); color: var(--primary-dark); border-color: rgba(56,137,193,0.15); }
.svc-phase-active  { background: linear-gradient(135deg,var(--primary),var(--primary-dark)); color: #fff; box-shadow: 0 3px 10px rgba(56,137,193,0.3); }
.svc-phase-pending { background: #f8fafc; color: var(--gray-400); border-color: rgba(0,0,0,0.06); }
.svc-phase-arrow   { color: var(--gray-300); font-size: 10px; flex-shrink: 0; }

/* ── Vertical Bar Chart ───────────────────────────────── */
.svc-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding: 0 2px;
}
.svc-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  height: 100%;
}
.svc-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  min-height: 4px;
}
.svc-bar-col span { font-size: 9px; color: var(--gray-400); font-weight: 500; white-space: nowrap; }

/* ── Product Lifecycle ────────────────────────────────── */
.svc-lifecycle-row { display: flex; align-items: center; gap: 0; }
.svc-lifecycle-item { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 0 0 auto; }
.svc-lifecycle-item span { font-size: 9px; font-weight: 600; color: var(--gray-500); white-space: nowrap; }
.svc-lc-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  border: 2px solid #e0e0e0;
}
.svc-lc-circle-active {
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  color: #fff; border-color: var(--primary);
  box-shadow: 0 3px 10px rgba(56,137,193,0.35);
}
.svc-lc-done .svc-lc-circle { background: rgba(56,137,193,0.1); color: var(--primary); border-color: rgba(56,137,193,0.25); }
.svc-lc-done span { color: var(--primary-dark); }
.svc-lc-line { flex: 1; height: 2px; background: #e0e0e0; margin-bottom: 16px; min-width: 8px; }
.svc-lc-line-done { background: rgba(56,137,193,0.4); }

/* ── Gantt Chart ──────────────────────────────────────── */
.svc-gantt { display: flex; flex-direction: column; gap: 7px; }
.svc-gantt-row { display: flex; align-items: center; gap: 8px; }
.svc-gantt-label { font-size: 10px; font-weight: 500; color: var(--gray-600); width: 64px; flex-shrink: 0; }
.svc-gantt-track { flex: 1; height: 8px; background: rgba(0,0,0,0.05); border-radius: 10px; display: flex; overflow: hidden; }
.svc-gantt-bar   { height: 100%; }
.svc-gantt-done  { background: #3889c1; }
.svc-gantt-active{ background: #8bc25a; }
.svc-gantt-pending{ background: #d0d0d0; }

/* Responsive — stack on mobile */
@media (max-width: 575.98px) {
  .ind-kpi-row { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .ind-kpi-value { font-size: 14px; }
  .ind-module-grid { grid-template-columns: 1fr 1fr; }
}

.industry-detail h2 { margin-bottom: 14px; }

.industry-detail .industry-subtitle {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.industry-detail .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.industry-detail .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
}

.industry-detail .feature-item i {
  color: var(--secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 50px 0 24px;
}

.footer-brand { margin-bottom: 14px; }
.footer-brand img { height: 150px !important; width: auto; }

.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  margin-right: 6px;
  transition: var(--transition-fast);
  font-size: 14px;
}

.footer-social a:hover { background: var(--primary); color: var(--white); }

.footer-heading {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--primary);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px; }

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  transition: var(--transition-fast);
}

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

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; }
.footer-contact li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; font-size: 13px; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--white); }

.footer-divider { border-color: rgba(255,255,255,0.08); margin: 16px 0; }
.footer-bottom { text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); }

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }

/* =====================================================
   FORM ALERTS
   ===================================================== */
.form-alert {
  display: none;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 14px;
}

.form-alert.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-alert.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* =====================================================
   IMAGE HOVER ZOOM
   ===================================================== */
.img-hover-zoom {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-hover-zoom img {
  transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.05);
}

/* =====================================================
   CASE STUDY CARDS
   ===================================================== */
.case-study-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
}

.case-study-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(56,137,193,0.15);
}

.case-study-card .badge-tech {
  display: inline-block;
  background: rgba(56,137,193,0.08);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin: 2px;
  font-family: var(--font-heading);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in,
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible,
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left.visible { opacity: 1; transform: translateX(0); }

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in.visible { opacity: 1; transform: scale(1); }

/* Staggered delays */
.fade-in:nth-child(1), .fade-up:nth-child(1), .scale-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2), .fade-up:nth-child(2), .scale-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3), .fade-up:nth-child(3), .scale-in:nth-child(3) { transition-delay: 0.12s; }
.fade-in:nth-child(4), .fade-up:nth-child(4), .scale-in:nth-child(4) { transition-delay: 0.16s; }
.fade-in:nth-child(5), .fade-up:nth-child(5), .scale-in:nth-child(5) { transition-delay: 0.2s; }
.fade-in:nth-child(6), .fade-up:nth-child(6), .scale-in:nth-child(6) { transition-delay: 0.24s; }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 14px;
  transition: var(--transition-fast);
}

.link-arrow i { transition: transform 0.3s ease; }
.link-arrow:hover { color: var(--primary-dark); }
.link-arrow:hover i { transform: translateX(4px); }

/* =====================================================
   SERVICE DETAIL PAGE
   ===================================================== */
.service-overview-img {
  border-radius: var(--radius-lg);
  min-height: 300px;
  object-fit: cover;
  width: 100%;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991.98px) {
  .stats-section { display: block !important; }
  .hero { padding: 100px 0 50px; min-height: auto; }
  .hero h1 { font-size: 2.4rem; }
  .hero-shapes, .hero-shapes-2, .hero-dots { display: none; }
  .hero-visual { display: none; }
  .hero-illustration { display: none; }
  .approach-timeline::before { display: none; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  .section { padding: 60px 0; }
  .navbar-nav .nav-link::after { display: none; }
  .industry-detail .feature-grid { grid-template-columns: 1fr; }
  .process-connector::after { display: none; }
  .cta-modern .cta-content { text-align: center; }
  .cta-modern h2, .cta-modern p { text-align: center; }
  .cta-modern .cta-actions { justify-content: center; }
  .cta-modern .cta-stats { justify-content: center; }
  .podcast-card { flex-direction: column; text-align: center; padding: 28px; }
  .podcast-links { justify-content: center; }
}

@media (max-width: 767.98px) {
  .hero { padding: 90px 0 40px; }
  .hero h1 { font-size: 1.8rem; }
  .page-banner { padding: 80px 0 24px; }
  .page-banner h1 { font-size: 1.6rem; }
  .section { padding: 44px 0; }
  .stat-card .stat-number { font-size: 2rem; }
  .stat-card { padding: 20px 10px; }
  .contact-info-card { margin-bottom: 24px; }
  .cookie-consent-inner { flex-direction: column; text-align: center; }
  .cookie-consent-actions { justify-content: center; }
  .navbar { padding: 10px 0; }
  .navbar.scrolled { padding: 8px 0; }
}

@media (max-width: 575.98px) {
  .hero h1 { font-size: 1.5rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
  .stat-card::after { display: none; }
  .cta-modern .cta-stat .number { font-size: 2rem; }
}

/* =====================================================
   TESTIMONIAL CAROUSEL
   ===================================================== */
.testimonials-section {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,137,193,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-carousel .carousel-item {
  padding: 20px 0;
}

.testimonial-carousel .carousel-indicators {
  bottom: -10px;
}

.testimonial-carousel .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gray-400);
  border: none;
  opacity: 0.5;
  transition: var(--transition);
}

.testimonial-carousel .carousel-indicators button.active {
  background-color: var(--primary);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.testimonial-large {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-large .quote-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(56,137,193,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 22px;
}

.testimonial-large blockquote {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-large .author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  font-size: 16px;
}

.testimonial-large .author-role {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
}

.testimonial-large .author-company {
  font-size: 13px;
  color: var(--gray-500);
}

/* =====================================================
   FOUNDERS / TEAM
   ===================================================== */
.founder-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.founder-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.founder-card .founder-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: block;
  border: 4px solid var(--gray-100);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  flex-shrink: 0;
}

.founder-card .founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 50%;
}

.founder-card .founder-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(56,137,193,0.2);
}

.founder-card h4 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.founder-card .role {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.founder-card p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.founder-card .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(56,137,193,0.06);
  color: var(--primary);
  margin: 0 3px;
  transition: var(--transition-fast);
  font-size: 14px;
}

.founder-card .social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

/* Team photo area */
.team-photo-area {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.team-photo-area img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.team-photo-area .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(28,28,46,0.7));
  padding: 40px 30px 24px;
  color: var(--white);
}

.team-photo-area .overlay h3 {
  color: var(--white);
  margin-bottom: 4px;
}

.team-photo-area .overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-bottom: 0;
}

/* =====================================================
   TECHNOLOGY LANDSCAPE
   ===================================================== */
.tech-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  height: 100%;
  min-height: 120px;
}

.tech-logo-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.tech-logo-card img {
  max-height: 48px;
  max-width: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

.tech-logo-card .tech-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  font-family: var(--font-heading);
  text-align: center;
}

.tech-category-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(56,137,193,0.1);
  font-family: var(--font-heading);
}

/* =====================================================
   VIDEO EMBED
   ===================================================== */
.video-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =====================================================
   PRELOADER - REMOVED (simple HTML page loads fast)
   ===================================================== */
.preloader { display: none !important; }

/* =====================================================
   ZOHO ONE — FEATURED SERVICE CARD  (index.html)
   ===================================================== */
.card-service-zoho {
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;    /* clip the gradient card edges cleanly */
  position: relative;
}

/* ── V2 redesign: blue/teal gradient + orbit products ── */
.card-service-zoho-v2 {
  background: linear-gradient(135deg, #0d3f6e 0%, #0e5d8c 40%, #0b7a7a 100%);
  border: none;
  box-shadow: 0 8px 40px rgba(13,63,110,0.18);
  padding: 0;
  height: auto;
  text-align: left;
}
.card-service-zoho-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(13,63,110,0.26);
}

.zoho-v2-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 360px;
}

/* Left text panel */
.zoho-v2-body {
  flex: 1 1 400px;
  padding: 44px 48px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.zoho-v2-body .zoho-service-badge {
  background: rgba(255,255,255,0.15);
  color: #a5f3fc;
  border: 1px solid rgba(165,243,252,0.3);
  align-self: flex-start;   /* prevent stretch in flex column */
}
.zoho-v2-body h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.zoho-v2-body p {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.zoho-v2-body .btn-zoho-cta {
  background: #fff;
  color: #0d3f6e;
  align-self: flex-start;
}
.zoho-v2-body .btn-zoho-cta:hover {
  background: #e0f2fe;
  color: #0d3f6e;
  transform: translateX(3px);
}

/* Right products visual — orbit items at ±120px radius, 30px padding keeps chips inside */
.zoho-v2-products {
  flex: 0 0 420px;
  width: 420px;
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 16px 30px 0;
  overflow: hidden;
}

/* Central hub */
.zp-hub {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.06);
}
.zp-hub-logo {
  width: 68px;
  height: auto;
  filter: none;
}
.zp-hub span {
  font-size: 7px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Product item orbit */
.zp-orbit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zp-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.zp-chip {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
/* Cert-style: circular white card with recolored SVG logo */
.zp-chip-cert {
  background: rgba(255,255,255,0.95);
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.1);
}
.zp-chip-cert img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Recolor white SVG to dark blue, matching cert-item on main section */
  filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(800%) hue-rotate(170deg) brightness(95%) contrast(90%);
}
.zp-item:hover .zp-chip {
  transform: scale(1.12);
}
.zp-item span {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Position items around a 120px radius — 60px chips, all clear card edges */
.zp-item-1 { transform: translate(0px, -120px); }
.zp-item-2 { transform: translate(85px, -85px); }
.zp-item-3 { transform: translate(120px, 0px); }
.zp-item-4 { transform: translate(85px, 85px); }
.zp-item-5 { transform: translate(0px, 120px); }
.zp-item-6 { transform: translate(-85px, 85px); }
.zp-item-7 { transform: translate(-120px, 0px); }
.zp-item-8 { transform: translate(-85px, -85px); }

/* Connector ring */
.zoho-v2-products::before {
  content: '';
  position: absolute;
  width: 270px;
  height: 270px;
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.zoho-service-badge {
  display: inline-block;
  background: rgba(232,56,13,0.08);
  color: #e8380d;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.btn-zoho-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8380d;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.btn-zoho-cta:hover {
  background: #c0280a;
  color: #fff;
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .zoho-v2-products { flex: 0 0 360px; width: 360px; }
}
@media (max-width: 991px) {
  .zoho-v2-inner { flex-direction: column; align-items: stretch; min-height: auto; }
  .zoho-v2-body { padding: 32px 28px 24px; }
  .zoho-v2-products {
    flex: none;
    width: 100%;
    min-height: 300px;
  }
  .zp-item-1 { transform: translate(0px, -110px); }
  .zp-item-2 { transform: translate(78px, -78px); }
  .zp-item-3 { transform: translate(110px, 0px); }
  .zp-item-4 { transform: translate(78px, 78px); }
  .zp-item-5 { transform: translate(0px, 110px); }
  .zp-item-6 { transform: translate(-78px, 78px); }
  .zp-item-7 { transform: translate(-110px, 0px); }
  .zp-item-8 { transform: translate(-78px, -78px); }
  .zoho-v2-products::before { width: 220px; height: 220px; }
}
@media (max-width: 768px) {
  .zoho-v2-body { padding: 24px 20px 20px; }
  .zoho-v2-body .btn-zoho-cta { align-self: stretch; justify-content: center; }
}

/* =====================================================
   HERO — EYEBROW, SUBHEAD, BUTTON
   ===================================================== */
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 12px;
}
.hero-subhead {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
  border: none;
  letter-spacing: 0.2px;
}
.btn-hero-cta:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56,137,193,0.28);
}

/* =====================================================
   HERO PROOF LOGOS — grayed out, uniform height
   ===================================================== */
.proof-logo-img {
  max-height: 22px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: var(--transition-fast);
}
.proof-logo-img:hover {
  opacity: 0.75;
  filter: grayscale(60%);
}

/* =====================================================
   HERO TEAM PHOTO  (index.html)
   ===================================================== */
.hero-team-illustration {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 450px;
  z-index: 2;
  border-radius: 150px 150px 0 0;
  overflow: hidden;
  opacity: 0;
  animation: heroPhotoIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  /* Seamless background matching the photo's blue tone */
  background: linear-gradient(180deg, #55bcd1 0%, #42a8be 50%, #3598ae 100%);
  box-shadow: 0 -8px 48px rgba(58,157,176,0.18), 0 4px 24px rgba(0,0,0,0.05);
}
@keyframes heroPhotoIn {
  0%   { opacity: 0; transform: translateX(-50%) translateY(24px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* Show from top — full face + upper body */
  object-position: center top;
}

/* =====================================================
   INDUSTRY CARDS — SVG ILLUSTRATION VARIANT
   ===================================================== */
.card-img-svg {
  height: 200px;
  background: transparent;
  display: block;
  overflow: hidden;
  /* Top corners match the card's border-radius */
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.card-img-svg .industry-svg {
  /* Stretch to fill full width, scale up slightly so content bleeds to top edge */
  width: 110%;
  height: 110%;
  margin-left: -5%;
  margin-top: -10px;
  display: block;
  transition: transform 0.5s ease;
}
.card-industry:hover .card-img-svg .industry-svg {
  transform: scale(1.04);
}

/* =====================================================
   PODCAST SECTION — WHITE / LIGHT REDESIGN  (index.html)
   ===================================================== */
.podcast-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.podcast-section-inner {
  position: relative;
  background: #ffffff;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 70px 0;
  overflow: hidden;
}

/* Decorative sound wave rings behind content */
.podcast-section-inner::before {
  content: '';
  position: absolute;
  top: 50%; left: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 60px solid rgba(56,137,193,0.05);
  transform: translateY(-50%);
  pointer-events: none;
}
.podcast-section-inner::after {
  content: '';
  position: absolute;
  top: 50%; left: -120px;
  width: 620px; height: 620px;
  border-radius: 50%;
  border: 40px solid rgba(56,137,193,0.03);
  transform: translateY(-50%);
  pointer-events: none;
}

.podcast-layout {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

/* Mic icon orb */
.podcast-orb {
  flex-shrink: 0;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #fff;
  box-shadow: 0 0 0 12px rgba(56,137,193,0.10), 0 0 0 24px rgba(56,137,193,0.05);
  animation: podcastPulse 3s ease-in-out infinite;
}

@keyframes podcastPulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(56,137,193,0.10), 0 0 0 24px rgba(56,137,193,0.05); }
  50% { box-shadow: 0 0 0 18px rgba(56,137,193,0.08), 0 0 0 36px rgba(56,137,193,0.03); }
}

.podcast-content {
  flex: 1;
}

.podcast-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56,137,193,0.10);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(56,137,193,0.20);
}

.podcast-content h3 {
  color: var(--dark);
  font-size: 1.7rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.podcast-content p {
  color: var(--gray-500);
  font-size: 14.5px;
  margin-bottom: 22px;
  max-width: 520px;
  line-height: 1.65;
}

/* Episode count stat badge */
.podcast-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 6px 14px;
  margin-bottom: 22px;
  color: var(--gray-700);
  font-size: 13px;
  font-family: var(--font-heading);
}
.podcast-stat strong { color: var(--primary); }

.podcast-platform-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.podcast-platform-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: var(--transition-fast);
  border: 1.5px solid transparent;
}

.podcast-platform-links .pl-youtube {
  background: rgba(255,0,0,0.06);
  color: #cc0000;
  border-color: rgba(255,0,0,0.15);
}
.podcast-platform-links .pl-youtube:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

.podcast-platform-links .pl-spotify {
  background: rgba(30,215,96,0.07);
  color: #1aa34a;
  border-color: rgba(30,215,96,0.18);
}
.podcast-platform-links .pl-spotify:hover {
  background: #1db954;
  color: #fff;
  border-color: #1db954;
}

.podcast-platform-links .pl-apple {
  background: var(--gray-100);
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.podcast-platform-links .pl-apple:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

@media (max-width: 768px) {
  .podcast-layout {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .podcast-content p { max-width: 100%; }
  .podcast-platform-links { justify-content: center; }
  .podcast-orb { width: 80px; height: 80px; font-size: 32px; }
  .podcast-section-inner::before,
  .podcast-section-inner::after { display: none; }
}

/* ── Video Popup Button ── */
.btn-video-popup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: black;
  border: 1px solid #bfc4c8;
  border-radius: 6px;
  padding: 10px 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  vertical-align: middle;
  font-family: var(--font-heading);
  margin-top:15px;
}

.btn-video-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 9px;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

/* ── Zoho subpage intro text ── */
.zoho-intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}
