/* ==========================================================================
   Avention Media - Top Agency Design System
   High-Performance Vanilla CSS Framework (Zero Bootstrap / Zero jQuery)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* ==========================================================================
     User Defined 60-28-12 Brand Color Palette
     - 60% Dominant Canvas: White (#FFFFFF) & Light Backgrounds (#F8FAFC)
     - 28% Brand Primary Accent: Electric Royal Blue (#3466FC)
     - 12% Highlight Accent: Radiant Golden Yellow (#FDDA00)
     ========================================================================== */
  
  /* 60% Canvas & Containers */
  --bg-main: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-dark: #0F172A;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;

  /* 28% Brand Primary Accent (#3466FC) */
  --primary: #3466FC;
  --primary-dark: #1E46C7;
  --primary-light: #5A85FF;
  --primary-accent: #1533A1;
  --accent: #3466FC;
  --accent-hover: #2151D8;
  --accent-cyan: #3466FC;

  /* 12% Highlight Accent (#FDDA00) */
  --accent-yellow: #FDDA00;
  --accent-yellow-hover: #E5C400;
  --accent-yellow-dark: #C9AB00;
  --accent-yellow-text: #0F172A;
  --accent-gold: #FDDA00;

  /* Elevational Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(52, 102, 252, 0.05);
  --shadow-md: 0 4px 12px -1px rgba(52, 102, 252, 0.1);
  --shadow-lg: 0 10px 25px -5px rgba(52, 102, 252, 0.15);
  --shadow-xl: 0 20px 25px -5px rgba(52, 102, 252, 0.2);
  --shadow-glow: 0 10px 30px -5px rgba(52, 102, 252, 0.4);
  --shadow-yellow-glow: 0 10px 25px -5px rgba(253, 218, 0, 0.45);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(226, 232, 240, 0.8);
  --glass-dark: rgba(52, 102, 252, 0.95);

  /* Typography */
  --font-sans: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Structural Variables */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Setup
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
  background: var(--primary-accent);
  color: #94A3B8;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-contact-info a {
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-contact-info a:hover {
  color: #FFFFFF;
}

/* Solid White Navigation Header (Zero Blur, Zero Transparency) */
.header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: #FFFFFF !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease;
  padding: 5px 0 !important;
}

.header.scrolled {
  background: #FFFFFF !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08) !important;
  border-bottom: 1px solid #E2E8F0 !important;
  padding: 5px 0 !important;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  min-height: 64px;
  padding: 5px 0;
  position: relative;
}

/* Brand Logo */
/* Global Reset for Header & Navbar Link Underlines */
.header a,
.header .nav-link,
.header .dropdown-item,
.header .sub-dropdown-item,
.header .brand-logo,
.top-bar a {
  text-decoration: none !important;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  letter-spacing: -0.03em;
  text-decoration: none !important;
}

.brand-logo span {
  color: var(--accent);
  margin-left: 1px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(0.15rem, 0.5vw, 0.5rem);
  align-items: center;
}

.nav-item {
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 0.85vw, 0.95rem);
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.5rem clamp(0.45rem, 0.65vw, 0.85rem);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap !important;
  transition: var(--transition);
  text-decoration: none !important;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: rgba(37, 99, 235, 0.06);
  text-decoration: none !important;
}


/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #FFFFFF;
  border-radius: 0.85rem;
  box-shadow: 0 12px 36px rgba(15,23,42,0.12);
  border: 1px solid #E2E8F0;
  border-top: 3px solid #3466FC;
  padding: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 1010;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.has-mega-menu {
  position: static;
}

.nav-item.has-dropdown {
  position: relative;
}

/* Our Services centred mega panel — uses transform:translateX(-50%) on the dropdown itself */
.our-services-mega {
  /* positioning handled inline; ensure no clipping from parent */
  overflow: visible !important;
}

/* Hover lift on each service link icon */
.our-services-mega a:hover > div:first-child {
  background: #3466FC !important;
}
.our-services-mega a:hover > div:first-child i {
  color: #fff !important;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 1010;
  overflow: hidden;
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-sidebar {
  width: 230px;
  background: #F8FAFC;
  border-right: 1px solid var(--border-light);
  padding: 1rem 0;
  flex-shrink: 0;
  max-height: 65vh;
  overflow-y: auto;
}
.mega-sidebar::-webkit-scrollbar {
  width: 6px;
}
.mega-sidebar::-webkit-scrollbar-thumb {
  background-color: var(--border-light);
  border-radius: 4px;
}
.mega-hygiene-sidebar {
  width: 270px;
  background: #F8FAFC;
  border-left: 1px solid var(--border-light);
  padding: 1.25rem 1.5rem;
  flex-shrink: 0;
  max-height: 65vh;
  overflow-y: auto;
}
.mega-hygiene-sidebar::-webkit-scrollbar {
  width: 6px;
}
.mega-hygiene-sidebar::-webkit-scrollbar-thumb {
  background-color: var(--border-light);
  border-radius: 4px;
}
.mega-tab {
  padding: 0.85rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
  border-radius: 0 6px 6px 0;
}
.mega-tab:hover {
  background: rgba(52, 102, 252, 0.07);
  color: #3466FC;
  border-left-color: rgba(52,102,252,0.3);
}
.mega-tab.active {
  background: linear-gradient(90deg, rgba(52,102,252,0.08) 0%, rgba(52,102,252,0.03) 100%);
  color: #3466FC;
  font-weight: 700;
  border-left-color: #FDDA00;
  border-left-width: 4px;
}
.mega-content {
  flex-grow: 1;
  padding: 2rem;
  background: #FFFFFF;
  max-height: 65vh;
  overflow-y: auto;
}
.mega-content::-webkit-scrollbar {
  width: 6px;
}
.mega-content::-webkit-scrollbar-thumb {
  background-color: var(--border-light);
  border-radius: 4px;
}
.mega-pane {
  display: none;
}
.mega-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.mega-pane-header {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.5rem;
}
.mega-link {
  font-size: 0.88rem;
  color: #334155;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-flex;
  align-items: center;
  line-height: 1.4;
  font-weight: 500;
}
.mega-link:hover {
  color: #3466FC;
  padding-left: 3px;
}
.mega-link:hover span:first-child {
  background-color: #FDDA00 !important;
  box-shadow: 0 0 0 2px rgba(253,218,0,0.35);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item-wrapper {
  position: relative;
}

.dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0F172A;
  border-radius: 0.5rem;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.dropdown-item:hover {
  background: #EEF3FF;
  color: #3466FC !important;
  border-left-color: #FDDA00;
  padding-left: 1.15rem;
}

/* Sub Dropdown Flyout Menu */
.sub-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 280px;
  max-height: 380px;
  overflow-y: auto;
  background: #FFFFFF;
  border-radius: 0.85rem;
  box-shadow: 0 12px 36px rgba(15,23,42,0.12);
  border: 1px solid #E2E8F0;
  border-top: 3px solid #3466FC;
  padding: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  z-index: 1020;
}

.dropdown-item-wrapper:hover .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-dropdown-item {
  display: block;
  overflow: hidden;
  text-decoration: none !important;
}
}

.sub-dropdown-item:hover {
  background: var(--bg-alt);
  color: var(--accent);
  padding-left: 1.1rem;
}

/* Hamburger Toggle Button */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary);
  border-radius: var(--radius-sm);
}

.mobile-toggle:focus {
  outline: 2px solid var(--accent);
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #1D4ED8 100%);
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--accent) !important;
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   Page Hero & Breadcrumbs
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #0F172A 0%, #0F2537 60%, #1E3A5F 100%);
  color: #FFFFFF;
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 1.25rem;
}

.breadcrumbs a {
  color: var(--accent-cyan);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.hero-title {
  color: #FFFFFF;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  max-width: 900px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #CBD5E1;
  max-width: 750px;
  line-height: 1.6;
}

/* Main Content Area */
.main-content {
  padding: 4rem 0;
  background-color: var(--bg-main);
  flex: 1;
}

/* CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, #0F2537 0%, #1E3A5F 100%);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  margin: 4rem 0 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: #CBD5E1;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 2rem;
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.footer {
  background: var(--secondary);
  color: #94A3B8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

/* Scroll To Top Floating Button */
#scrollTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 990;
}

#scrollTopBtn.visible {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover {
  background: var(--accent-hover);
  transform: translateY(-4px);
}

/* ==========================================================================
   Homepage Special Component Styles
   ========================================================================== */

/* Hero Section & Floating Badges */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  text-align: center;
  background: radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  overflow: hidden;
}

.hero .glass-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  margin: 0.35rem;
  transition: var(--transition-smooth);
}

.hero .glass-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.hero-content {
  max-width: 900px;
  margin: 2rem auto 0;
}

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

#typing {
  color: var(--accent);
  border-bottom: 3px solid var(--accent-cyan);
  padding-bottom: 2px;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stats Section */
.stats-section {
  background: var(--bg-dark);
  color: #FFFFFF;
  padding: 4rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-xl);
  margin: 3rem 0;
}

.stats-section .sub-title {
  display: inline-block;
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.stats-section h2 {
  color: #FFFFFF;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
  line-height: 1.3;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
}

.stat-box:hover {
  transform: translateY(-5px);
  background: rgba(37, 99, 235, 0.15);
  border-color: var(--accent-cyan);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.stat-text {
  font-size: 0.9rem;
  color: #94A3B8;
}

/* Logo Section Infinite Marquee Slider (Right to Left) */
.logo-section {
  padding: 3.5rem 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  margin: 3rem 0;
}

.logo-section::before,
.logo-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt) 0%, rgba(248, 250, 252, 0) 100%);
}

.logo-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt) 0%, rgba(248, 250, 252, 0) 100%);
}

.logo-heading {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-track-wrapper {
  overflow: hidden;
  width: 100%;
  display: flex;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: logoMarqueeScroll 25s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  height: 42px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: var(--transition-normal);
}

.logo-box img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

@keyframes logoMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Solution Grid Section */
.section-wrapper {
  margin: 4rem 0;
}

.grid-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .grid-top {
    grid-template-columns: 1fr;
  }
}

.hero-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-accent) 100%);
  color: #FFFFFF;
  padding: 3rem;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-box small {
  color: var(--accent-cyan);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.hero-box h2 {
  color: #FFFFFF;
  font-size: 2.25rem;
  line-height: 1.3;
}

.hero-box h2 span {
  color: var(--accent-cyan);
}

.side-card, .grid-bottom .card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.side-card:hover, .grid-bottom .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.side-card .icon, .grid-bottom .card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.side-card .icon svg, .grid-bottom .card .icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.side-card h3, .grid-bottom .card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.side-card p, .grid-bottom .card p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read {
  font-weight: 700;
  color: var(--accent);
}

.grid-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* SaaS 4-Step Process Section */
.saas-process {
  padding: 4rem 0;
  text-align: center;
}

.process-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.process-header p {
  max-width: 680px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.process-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-cyan);
}

.process-card .circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent-cyan);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Compliance Scroll */
.compliance-scroll {
  background: var(--bg-alt);
  padding: 3.5rem 1.5rem;
  border-radius: var(--radius-xl);
  margin: 3rem 0;
  text-align: center;
}

.compliance-heading .pill-heading {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.compliance-heading p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}

.compliance-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.compliance-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.compliance-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.compliance-card img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.compliance-card span {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

/* SaaS Trust Section */
.saas-trust-section {
  background: linear-gradient(135deg, #0B132B 0%, #1C2541 100%);
  color: #FFFFFF;
  padding: 4rem 2rem;
  border-radius: var(--radius-xl);
  margin: 4rem 0;
  text-align: center;
}

.saas-trust-section .sub-title {
  color: var(--accent-cyan);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.saas-trust-section h2 {
  color: #FFFFFF;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.saas-trust-section p {
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.trust-metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 400px;
  margin: 0 auto 3rem;
}

.trust-metric h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 0.25rem;
}

.trust-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: left;
}

.trust-feature h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.trust-feature p {
  color: #94A3B8;
  font-size: 0.9rem;
  margin: 0;
}

/* CTA Section */
.cta-section {
  margin: 4rem 0;
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #FFFFFF;
  padding: 4rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow);
}

.cta-box h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-btn {
  display: inline-block;
  background: #FFFFFF;
  color: var(--accent);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.cta-btn:hover {
  background: #F8FAFC;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ==========================================================================
   Advanced About Us Page Styles (60% White / 28% #3466FC / 12% #FDDA00)
   ========================================================================== */

/* Hero Banner */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, #3466FC 0%, #1E46C7 60%, #1533A1 100%);
  color: #FFFFFF;
  padding: 5rem 0 6.5rem;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(253, 218, 0, 0.25) 0%, rgba(52, 102, 252, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(52, 102, 252, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FDDA00;
  color: #0F172A;
  border: 1px solid #FDDA00;
  padding: 0.45rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(253, 218, 0, 0.35);
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.about-hero-title span {
  color: #FDDA00;
  text-decoration: underline;
  text-decoration-color: rgba(253, 218, 0, 0.4);
  text-underline-offset: 6px;
}

.about-hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 780px;
  margin: 0 auto 3rem;
}

/* Floating Stats Bar */
.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 40px rgba(21, 51, 161, 0.4);
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3.2vw, 3rem);
  font-weight: 800;
  color: #FDDA00;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Headings */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0F172A;
  margin-top: 0.5rem;
  line-height: 1.25;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

/* Story / Overview Section */
.about-overview-section {
  padding: 6rem 0;
  background: #FFFFFF;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
}

@media (max-width: 991px) {
  .about-overview-grid {
    grid-template-columns: 1fr;
  }
}

.overview-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.overview-card-stack {
  display: grid;
  gap: 1.5rem;
}

.overview-highlight-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-left: 5px solid #3466FC;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.overview-highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: #FDDA00;
}

.overview-highlight-card h4 {
  font-size: 1.15rem;
  color: #3466FC;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.overview-highlight-card h4 svg {
  color: #3466FC;
}

.overview-highlight-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Trust Logos Section */
.about-trust-section {
  padding: 5rem 0;
  background: #F8FAFC;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.logo-card {
  background: #FFFFFF;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  transition: var(--transition-normal);
}

.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #3466FC;
}

.logo-card img {
  max-height: 48px;
  max-width: 80%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: var(--transition-normal);
}

.logo-card:hover img {
  filter: grayscale(0%);
}

/* Why Choose Us Section */
.about-why-section {
  padding: 6rem 0;
  background: #FFFFFF;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-top: 5px solid #3466FC;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: #FDDA00;
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(52, 102, 252, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3466FC;
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* Mission Section */
.about-mission-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #3466FC 0%, #1E46C7 100%);
  color: #FFFFFF;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 991px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

.mission-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0.5rem 0 1.5rem;
  line-height: 1.2;
}

.mission-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mission-subcard {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #FDDA00;
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1.5rem;
}

.mission-subcard h4 {
  color: #FDDA00;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.mission-subcard p {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin: 0;
}

.metrics-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-normal);
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #FDDA00;
  transform: translateY(-4px);
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #FDDA00;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-title {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Testimonials Carousel Section */
.about-testimonials-section {
  padding: 6.5rem 0;
  background: #FFFFFF;
  overflow: hidden;
}

.testimonial-slider-container {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}

.testimonial-track-wrapper {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 0.5rem;
}

.testimonial-card-inner {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-top: 5px solid #3466FC;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.testimonial-company-logo {
  height: 36px;
  max-width: 140px;
  object-fit: contain;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #FDDA00;
  font-size: 1.25rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #0F172A;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3466FC;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #3466FC;
  margin: 0 0 0.2rem;
}

.author-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Slider Controls */
.slider-nav-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-medium);
  color: #3466FC;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.slider-btn:hover {
  background: #3466FC;
  border-color: #3466FC;
  color: #FFFFFF;
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-medium);
  cursor: pointer;
  transition: var(--transition-normal);
}

.dot.active {
  width: 28px;
  border-radius: 10px;
  background: #3466FC;
}

/* CTA Banner */
.about-cta-banner {
  background: linear-gradient(135deg, #3466FC 0%, #1533A1 100%);
  color: #FFFFFF;
  padding: 4.5rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  margin: 4rem 0;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  border: 2px solid #FDDA00;
}

.about-cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.about-cta-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.about-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-yellow {
  background: #FDDA00 !important;
  color: #0F172A !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(253, 218, 0, 0.4);
}

.btn-yellow:hover {
  background: #E5C400 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253, 218, 0, 0.5);
}

/* Team Page Styles */
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-top-color: #FDDA00 !important;
}

.team-card:hover .team-avatar-wrapper {
  border-color: #FDDA00 !important;
}

.team-linkedin-btn:hover {
  background: #3466FC !important;
  color: #FFFFFF !important;
  border-color: #3466FC !important;
  transform: scale(1.1);
}

/* Hide hero counts stats bar across all child pages under Data Solutions */
.rb-stats-bar,
.tb-stats-bar,
.gb-stats-bar,
.ib-stats-bar,
.hb-stats-bar {
  display: none !important;
}

/* Hero section bottom padding below form card */
.rb-hero,
.tb-hero,
.gb-hero,
.ib-hero,
.hb-hero {
  padding-bottom: 4.5rem !important;
}

/* ==========================================================================
   Redesigned Blog Post Hero Section (2-Column Layout)
   ========================================================================== */
.blog-post-hero,
.page-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1533A1 55%, #1E40AF 100%) !important;
  color: #FFFFFF !important;
  padding: 4rem 0 3.5rem !important;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post-hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(253, 218, 0, 0.15) 0%, rgba(52, 102, 252, 0.3) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.blog-post-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.blog-hero-breadcrumbs,
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #93C5FD !important;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.blog-hero-breadcrumbs a,
.breadcrumbs a {
  color: #FDDA00 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-hero-breadcrumbs a:hover,
.breadcrumbs a:hover {
  color: #FFFFFF !important;
  text-decoration: underline;
}

.blog-hero-breadcrumbs span.sep,
.breadcrumbs span {
  color: rgba(255, 255, 255, 0.5) !important;
}

.blog-hero-title,
.hero-title {
  font-family: var(--font-heading, 'Figtree', sans-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.25 !important;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem !important;
  max-width: 100% !important;
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.blog-hero-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FDDA00;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.blog-author-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 1.2;
}

.blog-author-role {
  font-size: 0.78rem;
  color: #93C5FD;
  font-weight: 600;
}

.blog-hero-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #E2E8F0;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.45rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-hero-image-box {
  background: #FFFFFF;
  border-radius: 1.25rem;
  padding: 0.5rem;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-hero-image-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.45), 0 0 0 1px rgba(253, 218, 0, 0.4);
}

.blog-hero-image-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

@media (max-width: 991px) {
  .blog-post-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-hero-image-box img {
    height: 230px;
  }
}

/* Custom Hero Padding & Guarantee Typography Tweaks */
section.tb-hero, section.hb-hero, section.ib-hero, section.gb-hero, section.rb-hero, section.dh-hero,
.tb-hero, .hb-hero, .ib-hero, .gb-hero, .rb-hero, .dh-hero {
  padding-top: 1rem !important;
}

.hero-trust-proof-box p {
  font-size: 1.02rem !important;
  line-height: 1.65 !important;
}

.breadcrumbs {
  margin-bottom: 2.25rem !important;
}







/* Hero Form Card White BG & Box Shadow */

.tb-hero-form-card, .hb-hero-form-card, .ib-hero-form-card, .gb-hero-form-card, .rb-hero-form-card, .dh-hero-form-card {
  background: #FFFFFF !important;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12), 0 2px 10px rgba(15, 23, 42, 0.06) !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px !important;
}

.tb-hero h1, .hb-hero h1, .ib-hero h1, .gb-hero h1, .rb-hero h1, .dh-hero h1, .hero-title {
  color: #0F172A !important;
}

.tb-hero-desc, .hb-hero-desc, .ib-hero-desc, .gb-hero-desc, .rb-hero-desc, .dh-hero-desc {
  color: #334155 !important;
}



/* Hero Breadcrumbs High Contrast Light Background Styles */
.breadcrumbs,
.tb-hero .breadcrumbs, .hb-hero .breadcrumbs, .ib-hero .breadcrumbs, .gb-hero .breadcrumbs, .rb-hero .breadcrumbs, .dh-hero .breadcrumbs {
  color: #64748B !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  margin-bottom: 2.25rem !important;
}
.breadcrumbs a,
.tb-hero .breadcrumbs a, .hb-hero .breadcrumbs a, .ib-hero .breadcrumbs a, .gb-hero .breadcrumbs a, .rb-hero .breadcrumbs a, .dh-hero .breadcrumbs a {
  color: #3466FC !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
.breadcrumbs a:hover,
.tb-hero .breadcrumbs a:hover, .hb-hero .breadcrumbs a:hover, .ib-hero .breadcrumbs a:hover, .gb-hero .breadcrumbs a:hover, .rb-hero .breadcrumbs a:hover, .dh-hero .breadcrumbs a:hover {
  text-decoration: underline !important;
}
.breadcrumbs span,
.tb-hero .breadcrumbs span, .hb-hero .breadcrumbs span, .ib-hero .breadcrumbs span, .gb-hero .breadcrumbs span, .rb-hero .breadcrumbs span, .dh-hero .breadcrumbs span {
  color: #0F172A !important;
  font-weight: 700 !important;
}

/* Hero Form Card Clean Padding & Logo Yellow Submit Button */
.tb-hero-form-card, .hb-hero-form-card, .ib-hero-form-card, .gb-hero-form-card, .rb-hero-form-card, .dh-hero-form-card {
  padding: 2.25rem 2rem !important;
  background: #FFFFFF !important;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12), 0 2px 10px rgba(15, 23, 42, 0.06) !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 18px !important;
}

.btn-form-submit {
  background: #FDDA00 !important;
  color: #0F172A !important;
  border: 2px solid #FDDA00 !important;
  font-weight: 900 !important;
  font-size: 1rem !important;
  border-radius: 8px !important;
  padding: 0.95rem !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 15px rgba(253, 218, 0, 0.35) !important;
}
.btn-form-submit:hover {
  background: #3466FC !important;
  color: #FFFFFF !important;
  border-color: #3466FC !important;
  box-shadow: 0 6px 20px rgba(52, 102, 252, 0.4) !important;
}


/* ==========================================================================
   Header & All Sections 100px Left / Right Side Padding Alignment (Desktop)
   ========================================================================== */
@media (min-width: 992px) {
  .header .container,
  .top-bar .container,
  .tb-hero .container, .hb-hero .container, .ib-hero .container, .gb-hero .container, .rb-hero .container, .dh-hero .container,
  .trusted-brands-section .container,
  .tb-section .container, .hb-section .container, .ib-section .container, .gb-section .container, .rb-section .container, .dh-section .container,
  .container {
    max-width: 100% !important;
    padding-left: 100px !important;
    padding-right: 100px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 991px) {
  .header .container,
  .top-bar .container,
  .tb-hero .container, .hb-hero .container, .ib-hero .container, .gb-hero .container, .rb-hero .container, .dh-hero .container,
  .trusted-brands-section .container,
  .tb-section .container, .hb-section .container, .ib-section .container, .gb-section .container, .rb-section .container, .dh-section .container,
  .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}


/* ==========================================================================
   Hero Section Reduced Top Padding & Breadcrumbs Spacing Standard
   ========================================================================== */
.tb-hero, .hb-hero, .ib-hero, .gb-hero, .rb-hero, .dh-hero {
  padding-top: 1rem !important;
  padding-bottom: 3.5rem !important;
}

@media (max-width: 991px) {
  .tb-hero, .hb-hero, .ib-hero, .gb-hero, .rb-hero, .dh-hero {
    padding-top: 0.75rem !important;
    padding-bottom: 2.5rem !important;
  }
}
