/* ==========================================================================
   EASY SERVE COMMUNICATION - BRAND STYLE SYSTEM (COMPLETE LAYOUT)
   ========================================================================== */

:root {
  /* Colors */
  --primary-blue: #1450A3;
  --primary-blue-rgb: 20, 80, 163;
  --primary-green: #1E9E6B;
  --primary-green-rgb: 30, 158, 107;

  /* Luxury Gold & Premium Accents */
  --luxury-gold: #D4AF37;
  --luxury-gold-rgb: 212, 175, 55;
  --luxury-gold-dark: #AA8B2C;
  --luxury-gold-gradient: linear-gradient(135deg, #DFBA73 0%, #C5A880 100%);
  --luxury-dark-blue: #0A1D37;
  --luxury-card-bg: rgba(255, 255, 255, 0.85);
  --luxury-card-border: rgba(212, 175, 55, 0.15);
  --luxury-shadow: 0 20px 40px rgba(10, 29, 55, 0.05), 0 1px 3px rgba(212, 175, 55, 0.1);

  --blue-light: #B8D4F7;
  --blue-light-text: #0B3168;
  --blue-hover: #0e3c7d;
  --green-light: #B8EAD4;
  --green-light-text: #0B5638;
  --green-hover: #177f56;

  --text-dark: #152A4A;
  --text-light: #5C6B85;
  --text-muted: #8FA2B2;
  --bg-light: #F4F8FA;
  --white: #FFFFFF;

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Header Spacing */
  --announcement-height: 40px;
  --navbar-height: 88px;
  --navbar-sticky-height: 72px;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(15, 76, 129, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 76, 129, 0.08);
  --shadow-lg: 0 20px 50px rgba(7, 44, 77, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(15, 76, 129, 0.08);
  --glass-blur: blur(16px);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color: var(--text-dark);
  font-family: var(--font-body);
  background-color: var(--bg-light);
}

body {
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

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

/* Section Common Headers */
.section-header {
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-tag {
  background-color: var(--blue-light);
  color: var(--blue-light-text);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* ==========================================================================
   ANNOUNCEMENT BAR & STICKY HEADER
   ========================================================================== */

.announcement-bar {
  height: var(--announcement-height);
  background: linear-gradient(135deg, var(--primary-blue) 0%, #082E50 100%);
  color: var(--white);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.announcement-bar .badge {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(26, 188, 156, 0.4);
}

.announcement-bar .text {
  font-weight: 400;
  opacity: 0.9;
}

.announcement-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.announcement-links a {
  opacity: 0.85;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.announcement-links a:hover {
  opacity: 1;
  color: var(--primary-green);
}

.tel-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  background-color: var(--white);
  border-bottom: 1px solid #E5E7EB;
  z-index: 100;
  transition: height var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal), border var(--transition-normal);
}

/* Sticky Navbar Class */
.main-header.sticky {
  height: var(--navbar-sticky-height);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--glass-border);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Brand Logo & Name Layout */
.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 140px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.main-header.sticky .brand-logo {
  height: 56px;
  width: 56px;
}

.brand-name {
  font-family: var(--font-heading);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.brand-easy {
  color: var(--primary-blue);
  font-size: 1.35rem;
  font-weight: 800;
}

.brand-comm {
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-header.sticky .brand-easy {
  font-size: 1.15rem;
}

.main-header.sticky .brand-comm {
  font-size: 0.65rem;
}

/* ==========================================================================
   DESKTOP NAVIGATION LINKS
   ========================================================================== */

.desktop-nav {
  height: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 4px;
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast), background var(--transition-fast);
}

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

.chevron-icon {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-normal);
}

.has-megamenu:hover .chevron-icon {
  transform: rotate(180deg);
}

/* ==========================================================================
   SERVICES MEGAMENU DROPDOWN (DESKTOP)
   ========================================================================== */

.megamenu-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 1080px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
  z-index: 120;
}

.has-megamenu:hover .megamenu-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px;
}

.megamenu-column {
  display: flex;
  flex-direction: column;
}

.column-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-indicator {
  width: 6px;
  height: 16px;
  border-radius: 2px;
  display: inline-block;
}

.blue-indicator {
  background-color: var(--primary-blue);
}

.green-indicator {
  background-color: var(--primary-green);
}

.column-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Megamenu Item Links Styling */
.megamenu-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px;
  border-radius: 10px;
  border-left: 2px solid transparent;
  transition: background var(--transition-fast), border var(--transition-fast), transform var(--transition-fast);
}

.megamenu-item:hover {
  background-color: var(--bg-light);
  border-left: 2px solid var(--primary-green);
  transform: translateX(4px);
}

.item-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.megamenu-item:hover .item-icon-wrapper {
  transform: scale(1.1);
}

.whatsapp-color {
  background-color: #B8EAD4;
  color: #0B5638;
}

.megamenu-item:hover .whatsapp-color {
  background-color: #25D366;
  color: var(--white);
}

.icon-blue {
  background-color: #B8D4F7;
  color: #0B3168;
}

.megamenu-item:hover .icon-blue {
  background-color: var(--primary-blue);
  color: var(--white);
}

.icon-green {
  background-color: #B8EAD4;
  color: #0B5638;
}

.megamenu-item:hover .icon-green {
  background-color: var(--primary-green);
  color: var(--white);
}

.icon-light-blue {
  background-color: #B2E2EC;
  color: #1A5276;
}

.megamenu-item:hover .icon-light-blue {
  background-color: #2980B9;
  color: var(--white);
}

.item-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.item-text {
  display: flex;
  flex-direction: column;
}

.item-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.megamenu-item:hover .item-title {
  color: var(--primary-blue);
}

.item-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.3;
}

.megamenu-footer {
  background-color: var(--blue-light);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--glass-border);
}

.footer-promo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.pulse-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary-green);
  animation: pulse-ring 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

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

.promo-text {
  color: var(--primary-blue);
}

.promo-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition-fast);
}

.promo-link:hover {
  color: var(--primary-green);
}

.icon-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.promo-link:hover .icon-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   NAVBAR ACTIONS (CTA BUTTONS)
   ========================================================================== */

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  white-space: nowrap;
  gap: 8px;
}

.btn-outline {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 76, 129, 0.2);
  transform: translateY(-2px);
}

.btn-solid {
  background: linear-gradient(135deg, var(--primary-green) 0%, #16A085 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26, 188, 156, 0.3);
}

.btn-solid:hover {
  background: linear-gradient(135deg, #16A085 0%, #117A65 100%);
  box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   MOBILE MENU HAMBURGER BUTTON & DRAWER
   ========================================================================== */

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 150;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--primary-blue);
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 44, 77, 0.4);
  backdrop-filter: blur(4px);
  z-index: 130;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

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

.mobile-navigation {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -10px 0 40px rgba(7, 44, 77, 0.15);
  z-index: 140;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--transition-normal), visibility var(--transition-normal);
}

.mobile-navigation.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav-header {
  padding: 20px 24px;
  border-bottom: 1px solid #F3F4F6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-header .brand-logo {
  height: 48px;
  width: 48px;
}

.mobile-nav-header .brand-name {
  font-size: 1.15rem;
}

.close-btn {
  color: var(--primary-blue);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.close-btn:hover {
  background-color: #A1C6F4;
}

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

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--primary-blue);
  background-color: var(--blue-light);
}

.mobile-link .chevron-icon {
  width: 14px;
  height: 14px;
}

.mobile-dropdown-trigger[aria-expanded="true"] .chevron-icon {
  transform: rotate(180deg);
}

.mobile-dropdown-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  padding-left: 16px;
  border-left: 2px solid var(--blue-light);
  margin-left: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-dropdown-trigger[aria-expanded="true"]+.mobile-dropdown-container {
  max-height: 1200px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.mobile-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-group-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-green);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.mobile-sublinks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-sublinks a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.mobile-sublinks a:hover {
  color: var(--primary-blue);
}

.mobile-nav-footer {
  padding: 24px;
  border-top: 1px solid #F3F4F6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   1. HERO SECTION & GATEWAY SIMULATOR
   ========================================================================== */

:root {
  --theme-color-whatsapp: #25D366;
  --theme-color-sms: #3B82F6;
  --theme-color-voice: #8B5CF6;
  --theme-color-email: #F59E0B;
  --theme-color-rcs: #06B6D4;
  --active-service-color: #25D366;
}

/* ==========================================================================
   1. DYNAMIC SYNCHRONIZED HERO SECTION
   ========================================================================== */

.hero-section {
  background: linear-gradient(135deg, #05192D 0%, #0A3A60 35%, #0F4C81 70%, #072540 100%);
  color: var(--white);
  padding: 20px 0 90px;
  position: relative;
  overflow: hidden;
  transition: background 0.8s ease-in-out;
}

.hero-section.theme-whatsapp {
  background: linear-gradient(135deg, #042115 0%, #0B462C 35%, #0D5C3A 70%, #06283D 100%);
}

.hero-section.theme-sms {
  background: linear-gradient(135deg, #061B3A 0%, #0F4C81 35%, #1E3A8A 70%, #0A192F 100%);
}

.hero-section.theme-voice {
  background: linear-gradient(135deg, #1A0A38 0%, #35146D 35%, #5B21B6 70%, #0B0526 100%);
}

.hero-section.theme-email {
  background: linear-gradient(135deg, #2E1602 0%, #682E0B 35%, #B45309 70%, #1A0D02 100%);
}

.hero-section.theme-rcs {
  background: linear-gradient(135deg, #032129 0%, #085166 35%, #0E7490 70%, #021820 100%);
}

.hero-tabs-container {
  margin-top: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 5;
}

.hero-service-tabs {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px;
  border-radius: 50px;
  overflow-x: auto;
  scrollbar-width: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-service-tabs::-webkit-scrollbar {
  display: none;
}

.service-tab-btn {
  flex: 1;
  min-width: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.service-tab-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.service-tab-btn.active {
  color: #FFFFFF;
  background: var(--active-service-color, #25D366);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.service-tab-btn .tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-tab-btn .tab-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
}

.service-tab-btn.active .tab-progress-bar {
  animation: tabProgress 6s linear infinite;
}

@keyframes tabProgress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: stretch;
  min-height: 640px;
  position: relative;
  z-index: 2;
}

/* Fixed-layout hero columns: content changes never resize these boxes,
   they only fade/slide inside the space already reserved for them. */
.hero-content-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-widget-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-badge-hero {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--active-service-color, #25D366);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  min-height: 2.6em;
}

.hero-main-title .accent-highlight {
  color: var(--active-service-color, #25D366);
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.hero-paragraph {
  font-size: 1.125rem;
  font-weight: 300;
  opacity: 0.9;
  line-height: 1.65;
  margin-bottom: 24px;
  min-height: 5em;
}

/* Floating Vector Illustration Box */
.hero-illustration-container {
  margin: 16px 0 28px;
  width: 100%;
}

.service-illustration-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  min-height: 100px;
}

.illustration-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--active-service-color, #25D366);
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.illustration-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.illustration-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.illustration-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.floating-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.btn-solid-active {
  background-color: var(--active-service-color, #25D366);
  color: #FFFFFF;
  border-color: var(--active-service-color, #25D366);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.btn-solid-active:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Interactive Sandbox Widget Styling */
.widget-card {
  background-color: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  padding: 28px;
  color: var(--text-dark);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.widget-header {
  margin-bottom: 20px;
}

.widget-header h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--primary-blue);
  font-weight: 700;
}

.widget-header p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* WhatsApp Demo Specific */
.wa-chat-header {
  background: #075E54;
  color: #FFFFFF;
  padding: 12px 16px;
  border-radius: 14px 14px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -28px -28px 18px -28px;
}

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 700;
  font-size: 1rem;
}

.wa-status-text {
  display: flex;
  flex-direction: column;
}

.wa-status-text .wa-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.wa-status-text .wa-online {
  font-size: 0.725rem;
  color: #25D366;
}

.wa-chat-window {
  background: #E5DDD5;
  border-radius: 14px;
  padding: 14px;
  min-height: 125px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 0);
  background-size: 12px 12px;
}

.wa-bubble-msg {
  background: #DCF8C6;
  color: #111B21;
  padding: 10px 14px;
  border-radius: 10px 10px 0 10px;
  max-width: 88%;
  align-self: flex-end;
  font-size: 0.875rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  line-height: 1.4;
}

.wa-ticks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 0.7rem;
  color: #53bdeb;
  margin-top: 4px;
}

/* Voice Equalizer */
.voice-eq-container {
  background: #F3F4F6;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.voice-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
}

.voice-bar {
  width: 5px;
  height: 8px;
  background: #8B5CF6;
  border-radius: 4px;
  transform-origin: bottom center;
  animation: eqPulse 1.2s ease-in-out infinite alternate;
}

.voice-bar:nth-child(2) { animation-delay: 0.2s; }
.voice-bar:nth-child(3) { animation-delay: 0.4s; }
.voice-bar:nth-child(4) { animation-delay: 0.1s; }
.voice-bar:nth-child(5) { animation-delay: 0.5s; }
.voice-bar:nth-child(6) { animation-delay: 0.3s; }

@keyframes eqPulse {
  0% { transform: scaleY(1); opacity: 0.4; }
  100% { transform: scaleY(4); opacity: 1; }
}

/* RCS Carousel Styling */
.rcs-carousel-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 16px;
}

.rcs-card-header {
  background: linear-gradient(135deg, #06B6D4, #2563EB);
  color: #FFF;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rcs-card-header h4 {
  font-size: 1rem;
  font-weight: 700;
}

.rcs-card-header p {
  font-size: 0.8rem;
  opacity: 0.9;
}

.rcs-action-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rcs-chip {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1D4ED8;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.775rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rcs-chip:hover {
  background: #3B82F6;
  color: #FFF;
}

/* Background Glow Shapes */
.shape-glow {
  position: absolute;
  top: 20%;
  left: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--active-service-color, rgba(37, 211, 102, 0.25)) 0%, rgba(0,0,0,0) 70%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.5;
  transition: background 0.8s ease;
}

.hero-clients-snippet {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.snippet-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.snippet-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 66px;
  align-content: flex-start;
}

.api-tag {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 6px;
}

/* Simulated Gateway Card Widget */
.widget-card {
  background-color: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 32px;
  color: var(--text-dark);
  border: 1px solid rgba(15, 76, 129, 0.05);
}

.widget-header {
  margin-bottom: 24px;
}

.widget-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-blue);
  font-weight: 700;
}

.widget-header p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 4px;
}

.widget-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.phone-input-wrapper {
  display: flex;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.phone-input-wrapper:focus-within {
  border-color: var(--primary-blue);
}

.country-prefix {
  background-color: var(--bg-light);
  color: var(--text-light);
  padding: 10px 14px;
  font-weight: 500;
  border-right: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
}

.phone-input-wrapper input {
  border: none;
  outline: none;
  padding: 10px 14px;
  width: 100%;
  font-size: 1rem;
}

.form-group select,
.form-group textarea {
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.95rem;
  outline: none;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}

.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
}

.input-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.icon-send {
  width: 16px;
  height: 16px;
}

/* Gateway Console Log Output */
.console-log-panel {
  background-color: #0B132B;
  border-radius: 12px;
  border: 1px solid #1C2541;
  padding: 20px;
  margin-top: 10px;
}

.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1C2541;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.console-title {
  color: #5BC0BE;
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 600;
}

.console-status {
  color: var(--primary-green);
  font-family: monospace;
  font-size: 0.8rem;
  animation: pulse-ring 1.5s infinite;
}

.console-body {
  height: 180px;
  overflow-y: auto;
  font-family: monospace;
  font-size: 0.8rem;
  color: #E0E1DD;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  text-align: left;
}

.console-line {
  line-height: 1.4;
}

.console-line.info {
  color: #A5A5A5;
}

.console-line.success {
  color: #00FFC4;
  font-weight: bold;
}

.console-line.warn {
  color: #F39C12;
}

#btn-reset-test {
  border-color: #1C2541;
  color: #5BC0BE;
  margin-top: 8px;
}

#btn-reset-test:hover {
  background-color: #1C2541;
  color: var(--white);
}

/* Moving Shapes animations */
.shapes-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  animation: move-shapes 20s infinite alternate ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background-color: var(--primary-green);
  top: -100px;
  right: -50px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background-color: var(--primary-blue);
  bottom: -200px;
  left: -100px;
  animation-duration: 25s;
}

@keyframes move-shapes {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(50px) scale(1.15);
  }
}

/* ==========================================================================
   2. WHO WE ARE SECTION
   ========================================================================== */

.about-section {
  padding: 100px 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-text-content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary-blue);
  margin-bottom: 16px;
  font-weight: 700;
}

.about-text-content p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.about-vision-mission {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-box {
  display: flex;
  gap: 16px;
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
}

.box-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.about-box h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 6px;
}

.about-box p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-light);
}

/* Highlight brand logo card */
.about-highlight-card {
  background: linear-gradient(135deg, #072C4D 0%, var(--primary-blue) 100%);
  border-radius: 24px;
  padding: 4px;
  box-shadow: var(--shadow-lg);
}

.highlight-inner {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.highlight-logo-wrapper {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 188, 156, 0.3) 0%, rgba(26, 188, 156, 0) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(26, 188, 156, 0.2);
}

.highlight-logo {
  height: 80px;
  width: 80px;
  object-fit: contain;
}

.about-highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.about-highlight-card .tagline {
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.highlight-stat-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.highlight-stat-bullets .bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.highlight-stat-bullets svg {
  width: 18px;
  height: 18px;
  color: var(--primary-green);
}

/* ==========================================================================
   3. OUR SERVICES SECTION (GRID & TABS)
.services-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.services-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 24px;
  background-color: var(--white);
  border: 1px solid #E5E7EB;
  color: var(--text-light);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-tab:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.filter-tab.active {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 76, 129, 0.2);
}

/* ==========================================================================
   INTERACTIVE SPLIT-SCREEN SERVICES ECOSYSTEM
   ========================================================================== */

.services-split-wrapper {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 36px;
  align-items: start;
}

/* Left Column: Vertical Navigation List */
.services-nav-col {
  display: flex;
  flex-direction: column;
  max-height: 640px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 76, 129, 0.25) transparent;
}

.services-nav-col::-webkit-scrollbar {
  width: 5px;
}

.services-nav-col::-webkit-scrollbar-thumb {
  background: rgba(15, 76, 129, 0.25);
  border-radius: 10px;
}

.services-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.service-nav-item.hide {
  display: none !important;
}

.service-nav-item:hover,
.service-nav-item.active {
  background: #FFFFFF;
  border-color: var(--primary-blue);
  transform: translateX(6px);
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.1), 0 0 12px rgba(37, 99, 235, 0.06);
}

.service-nav-item .nav-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-blue), var(--primary-green));
  border-radius: 0 4px 4px 0;
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.service-nav-item:hover .nav-indicator,
.service-nav-item.active .nav-indicator {
  transform: scaleY(1);
}

.service-nav-item .nav-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-nav-item.whatsapp-nav-icon .nav-item-icon {
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
}

.service-nav-item:hover .nav-item-icon,
.service-nav-item.active .nav-item-icon {
  background: var(--primary-blue);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(15, 76, 129, 0.25);
}

.service-nav-item.whatsapp-nav-icon:hover .nav-item-icon,
.service-nav-item.whatsapp-nav-icon.active .nav-item-icon {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.service-nav-item .nav-item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.service-nav-item .nav-item-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.service-nav-item:hover .nav-item-title,
.service-nav-item.active .nav-item-title {
  color: var(--primary-blue);
}

.service-nav-item .nav-item-desc {
  font-size: 0.775rem;
  color: var(--text-light);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}

/* Right Column: Dynamic Visual Stage */
.services-preview-col {
  position: sticky;
  top: 110px;
}

.service-preview-stage {
  background: #FFFFFF;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  padding: 36px;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(rgba(15, 76, 129, 0.04) 1px, transparent 0);
  background-size: 20px 20px;
}

.preview-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.preview-badge-pill {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(15, 76, 129, 0.08);
  color: var(--primary-blue);
}

.preview-title-group h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.preview-title-group p {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.5;
}

.preview-visual-canvas {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  position: relative;
}

.preview-footer-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #F3F4F6;
}

.preview-footer-action .btn {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* Custom Visual Graphic Components for 15 Services */
.mockup-window {
  width: 100%;
  max-width: 500px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.mockup-header-dots {
  background: #F9FAFB;
  padding: 10px 14px;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot.red { background: #FF5F56; }
.mockup-dot.yellow { background: #FFBD2E; }
.mockup-dot.green { background: #27C93F; }

.bg-green-badge {
  background-color: var(--green-light);
  color: var(--green-light-text);
  font-weight: 700;
}

.bg-blue-badge {
  background-color: var(--blue-light);
  color: var(--blue-light-text);
  font-weight: 700;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform var(--transition-fast);
}

.service-card:hover .card-icon {
  transform: scale(1.1) rotate(2deg);
}

.card-icon svg,
.card-icon img,
.card-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.learn-more-btn {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.service-card:hover .learn-more-btn {
  color: var(--primary-green);
}

/* Hide card styles for filter triggers */
.service-card.hide {
  display: none;
}

/* ==========================================================================
   4. WHY CHOOSE US SECTION
   ========================================================================== */

.why-choose-section {
  padding: 100px 0;
  background-color: var(--white);
  border-bottom: 1px solid #E5E7EB;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-box {
  padding: 32px;
  background-color: var(--bg-light);
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-box:hover {
  border-color: rgba(15, 76, 129, 0.2);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.feature-box h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ==========================================================================
   5. STATS SECTION (COUNTERS BAR)
   ========================================================================== */

.stats-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #06233B 100%);
  padding: 64px 0;
  color: var(--white);
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-counter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

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

.counter-numbers,
.counter-numbers-suffix {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-numbers::after {
  content: '+';
  color: var(--primary-green);
  margin-left: 2px;
}

.counter-numbers-suffix::after {
  content: 'M+';
  color: var(--primary-green);
  margin-left: 2px;
}

.counter-label {
  font-size: 0.85rem;
  opacity: 0.75;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 180px;
  line-height: 1.3;
}

/* ==========================================================================
   6. CLIENTS INFINITE CAROUSEL
   ========================================================================== */

.clients-section {
  background-color: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid #E5E7EB;
  text-align: center;
}

.clients-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.carousel-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-track {
  display: inline-flex;
  gap: 40px;
  animation: scrollTrack 30s linear infinite;
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-badge {
  background-color: var(--bg-light);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

/* ==========================================================================
   6.5 PROCESS FLOWCHART SECTION
   ========================================================================== */

.process-section {
  padding: 100px 0;
  background-color: var(--white);
  border-bottom: 1px solid #E5E7EB;
  position: relative;
}

.process-flow-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
  flex-wrap: nowrap;
}

.process-flow-container.flow-row-2 {
  margin-top: 40px;
}

.process-step-item {
  flex: 1;
  background: var(--white);
  border: 1.5px solid rgba(20, 80, 163, 0.06);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 24px rgba(20, 80, 163, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step-item:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 158, 107, 0.35);
  box-shadow: 0 20px 40px rgba(30, 158, 107, 0.08);
}

.step-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(20, 80, 163, 0.04);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.process-step-item:hover .step-icon-wrapper {
  background: rgba(30, 158, 107, 0.08);
  transform: scale(1.05);
}

.step-icon-wrapper .two-tone-icon {
  width: 36px;
  height: 36px;
}

.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(30, 158, 107, 0.3);
}

.process-step-item:hover .step-num {
  background: var(--primary-blue);
  box-shadow: 0 2px 6px rgba(20, 80, 163, 0.3);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  animation: pulseArrow 2s infinite ease-in-out;
  padding: 0 10px;
}

.arrow-svg {
  width: 40px;
  height: 20px;
}

@media (max-width: 991px) {
  .process-flow-container {
    flex-direction: column;
    gap: 30px;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .process-step-item {
    width: 100%;
    max-width: 450px;
  }
}

/* ==========================================================================
   7. SAAS FAQ ACCORDION SECTION
   ========================================================================== */

.faq-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%);
  position: relative;
  overflow: hidden;
}

.faq-floating-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.faq-glow-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.faq-glow-shape.shape-1 {
  top: 10%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
}

.faq-glow-shape.shape-2 {
  bottom: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.faq-search-wrapper {
  max-width: 640px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 5;
}

.faq-search-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid #E2E8F0;
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-search-box:focus-within {
  border-color: var(--primary-blue);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15), 0 0 0 4px rgba(37, 99, 235, 0.1);
  background: #FFFFFF;
}

.faq-search-box input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
}

.faq-search-box .search-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.faq-search-box .clear-search-btn {
  border: none;
  background: #F1F5F9;
  color: #64748B;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-search-box .clear-search-btn:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.faq-category-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.faq-category-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.faq-category-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: rgba(37, 99, 235, 0.04);
}

.faq-category-btn.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.faq-count-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  background: #F1F5F9;
  color: #64748B;
  transition: all 0.3s ease;
}

.faq-category-btn.active .faq-count-pill {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.faq-accordion-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 5;
}

.faq-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid #E2E8F0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.faq-card.open {
  background: #FFFFFF;
  border-color: var(--primary-blue);
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.15), 0 0 15px rgba(37, 99, 235, 0.08);
}

.faq-card-header {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  gap: 18px;
  transition: color 0.3s ease;
}

.faq-card.open .faq-card-header {
  color: var(--primary-blue);
}

.faq-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.faq-cat-badge {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-blue);
  flex-shrink: 0;
}

.faq-plus-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.faq-card.open .faq-plus-icon {
  background: var(--primary-blue);
  color: #FFFFFF;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.faq-card-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-card.open .faq-card-body {
  max-height: 600px;
  opacity: 1;
  padding: 0 28px 24px 28px;
}

.faq-answer-content {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  border-top: 1px solid #F1F5F9;
  padding-top: 16px;
}

.faq-answer-content ul {
  margin-top: 8px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-no-results {
  text-align: center;
  padding: 60px 20px;
  color: #94A3B8;
}

/* ── FAQ hidden / overflow cards ────────────────────────────────── */
.faq-card.faq-hidden {
  display: none;
}

/* Staggered fade-up for newly revealed cards */
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-card.faq-revealing {
  animation: faqReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── See More / Show Less toggle button wrapper ─────────────────── */
.faq-toggle-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

/* Hide wrapper when no overflow (handled via JS) */
.faq-toggle-btn-wrapper.faq-toggle-hidden {
  display: none;
}

/* ── Premium pill button ─────────────────────────────────────────── */
.faq-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #0EA5E9 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 24px rgba(37, 99, 235, 0.30),
    0 2px 6px  rgba(37, 99, 235, 0.15);
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    background 0.3s ease;
}

/* Shimmer overlay */
.faq-toggle-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}

.faq-toggle-btn:hover::before {
  transform: translateX(100%);
}

.faq-toggle-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 14px 35px rgba(37, 99, 235, 0.40),
    0 4px 10px  rgba(37, 99, 235, 0.20);
}

.faq-toggle-btn:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

/* Arrow icon – rotates when expanded */
.faq-toggle-btn-icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle-btn[aria-expanded="true"] .faq-toggle-btn-icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 480px) {
  .faq-toggle-btn {
    padding: 12px 28px;
    font-size: 0.875rem;
    gap: 8px;
  }
}

/* FAQ Search Highlight */
.faq-card mark {
  background: rgba(37, 99, 235, 0.15);
  color: #1D4ED8;
  padding: 0 2px;
  border-radius: 3px;
}

/* Scroll Reveal for FAQ Cards */
@keyframes faqFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-card {
  animation: faqFadeUp 0.4s ease both;
}

/* Responsive: sticky category tabs on mobile */
@media (max-width: 767px) {
  .faq-category-tabs {
    position: sticky;
    top: 64px;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 20;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .faq-category-tabs::-webkit-scrollbar { display: none; }
  .faq-category-btn { flex-shrink: 0; }
  .faq-section { padding: 80px 0; }
  .faq-card-header { font-size: 0.95rem; padding: 18px 20px; }
  .faq-card-body.open, .faq-card.open .faq-card-body { padding: 0 20px 20px 20px; }
  .faq-header-left { gap: 8px; }
}



/* ==========================================================================
   8. TESTIMONIALS SLIDER SECTION
   ========================================================================== */

.testimonials-section {
  padding: 100px 0;
  background-color: var(--white);
  border-bottom: 1px solid #E5E7EB;
}

.testimonials-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  padding: 0 40px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-normal) ease-in-out;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-slide .stars {
  font-size: 1.25rem;
  color: #F1C40F;
  margin-bottom: 18px;
}

.testimonial-slide .quote {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--primary-blue);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-slide .author-details {
  display: flex;
  flex-direction: column;
}

.author-details strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.author-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Testimonial slider controls styling */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  color: var(--primary-blue);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.control-btn:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
}

.control-btn svg {
  width: 18px;
  height: 18px;
}

.slide-dots {
  display: flex;
  gap: 8px;
}

.slide-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D1D5DB;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.slide-dots .dot.active {
  background-color: var(--primary-green);
  transform: scale(1.2);
}

/* ==========================================================================
   9. CONTACT US SECTION
   ========================================================================== */

.contact-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.contact-card-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background-color: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 76, 129, 0.05);
}

.contact-info-panel {
  background: linear-gradient(135deg, #072C4D 0%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.contact-info-panel p {
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 20px;
  height: 20px;
}

.contact-item h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin-bottom: 4px;
}

.contact-item p {
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 1;
}

/* Contact Form Grid and inputs styling */
.contact-form-panel {
  padding: 56px 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.col-6 {
  width: 50%;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  outline: none;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-blue);
}

/* ==========================================================================
   10. FOOTER SECTION
   ========================================================================== */

.main-footer {
  background-color: #071D2F;
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-desc {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
}

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

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  font-size: 0.8rem;
  opacity: 0.55;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* Floating WhatsApp widget */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  z-index: 99;
  animation: whatsapp-pulse 2s infinite;
  transition: transform var(--transition-fast);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   11. INTERACTIVE SERVICE DETAIL DIALOG MODAL
   ========================================================================== */

.service-dialog {
  border: none;
  background: transparent;
  width: 100%;
  max-width: 960px;
  margin: auto;
  outline: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
  border-radius: 20px;
  overflow: hidden;
}

/* Backdrop glow blurred screen */
.service-dialog::backdrop {
  background-color: rgba(7, 44, 77, 0.45);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

/* Active open selector bindings */
.service-dialog[open] {
  opacity: 1;
  transform: translateY(0);
}

.service-dialog[open]::backdrop {
  opacity: 1;
}

.dialog-content {
  background-color: var(--white);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.dialog-header {
  padding: 24px 32px;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dialog-header-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dialog-category-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 12px;
  background-color: var(--blue-light);
  color: var(--primary-blue);
}

#modal-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.dialog-close-btn {
  color: var(--text-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.dialog-close-btn:hover {
  background-color: #E5E7EB;
}

.dialog-close-btn svg {
  width: 18px;
  height: 18px;
}

/* Modal Body Layout */
.dialog-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  height: 480px;
  overflow: hidden;
}

.dialog-details-col {
  padding: 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.details-section h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-green);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

#modal-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.modal-feature-list,
.modal-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-feature-list li,
.modal-benefit-list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  position: relative;
  padding-left: 20px;
}

.modal-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.modal-benefit-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
}

.modal-cta-box {
  margin-top: auto;
  padding-top: 16px;
}

/* Animation Viewport Container styling */
.dialog-animation-col {
  background-color: var(--bg-light);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #E5E7EB;
}

.animation-card-frame {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.frame-header {
  background-color: var(--bg-light);
  border-bottom: 1px solid #E5E7EB;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.frame-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D1D5DB;
}

.frame-header .frame-dot:nth-child(1) {
  background-color: #FC605C;
}

.frame-header .frame-dot:nth-child(2) {
  background-color: #FDBC40;
}

.frame-header .frame-dot:nth-child(3) {
  background-color: #34C749;
}

.frame-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: monospace;
  margin-left: 8px;
}

.animation-card-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

/* ==========================================================================
   DYNAMIC SERVICE VISUALIZERS (CSS & KEYFRAME ANIMATIONS)
   ========================================================================== */

/* 1. WHATSAPP MOCKUP VISUALIZER */
.anim-whatsapp-mock {
  width: 220px;
  height: 320px;
  background-color: #ECE5DD;
  border-radius: 12px;
  border: 4px solid #128C7E;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wa-mock-header {
  background-color: #075E54;
  color: var(--white);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.wa-mock-logo {
  width: 18px;
  height: 18px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.65rem;
}

.wa-mock-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-bubble {
  max-width: 80%;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.72rem;
  line-height: 1.3;
  animation: wa-bubble-slide 5s infinite;
  opacity: 0;
}

.wa-bubble.received {
  background-color: var(--white);
  align-self: flex-start;
  border-top-left-radius: 0;
  animation-delay: 0.5s;
}

.wa-bubble.sent {
  background-color: #DCF8C6;
  align-self: flex-end;
  border-top-right-radius: 0;
  animation-delay: 2.2s;
}

.wa-bubble.interactive-btn {
  background-color: #B8D4F7;
  color: var(--blue-light-text);
  border: 1px solid #A1C6F4;
  align-self: flex-end;
  text-align: center;
  border-radius: 18px;
  animation-delay: 3.5s;
}

@keyframes wa-bubble-slide {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }

  10%,
  90% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-5px);
    opacity: 0;
  }
}

/* 2. BULK SMS PHONE VISUALIZER */
.anim-sms-mock {
  width: 220px;
  height: 320px;
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 4px solid #1F2937;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sms-mock-header {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.sms-mock-body {
  flex: 1;
  padding: 12px;
  background-color: #F3F4F6;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.sms-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  line-height: 1.3;
  animation: sms-bubble-pop 6s infinite;
  opacity: 0;
}

.sms-bubble.otp {
  background-color: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  animation-delay: 0.5s;
}

.sms-bubble.alert {
  background-color: #E2E8F0;
  align-self: flex-start;
  border-bottom-left-radius: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  animation-delay: 3s;
}

.sms-toast-success {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  animation: sms-toast-slide 6s infinite;
  opacity: 0;
  margin-top: auto;
}

@keyframes sms-bubble-pop {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  10%,
  90% {
    transform: scale(1);
    opacity: 1;
  }

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

@keyframes sms-toast-slide {

  0%,
  40% {
    transform: translateY(10px);
    opacity: 0;
  }

  50%,
  90% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-5px);
    opacity: 0;
  }
}

/* 3. VOICE SMS AMPLITUDE WAVE VISUALIZER */
.anim-voice-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.voice-speaker-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--green-light);
  color: var(--green-light-text);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: speaker-pulse 2s infinite;
}

.voice-speaker-badge svg {
  width: 32px;
  height: 32px;
}

@keyframes speaker-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(26, 188, 156, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(26, 188, 156, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(26, 188, 156, 0);
  }
}

.voice-waves-container {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
}

.wave-bar {
  width: 4px;
  background-color: var(--primary-blue);
  border-radius: 2px;
  animation: wave-bounce 1.2s infinite ease-in-out;
}

.wave-bar:nth-child(1) {
  height: 10px;
  animation-delay: 0.1s;
}

.wave-bar:nth-child(2) {
  height: 25px;
  animation-delay: 0.3s;
}

.wave-bar:nth-child(3) {
  height: 40px;
  animation-delay: 0.5s;
}

.wave-bar:nth-child(4) {
  height: 18px;
  animation-delay: 0.2s;
}

.wave-bar:nth-child(5) {
  height: 32px;
  animation-delay: 0.4s;
}

.wave-bar:nth-child(6) {
  height: 10px;
  animation-delay: 0.1s;
}

@keyframes wave-bounce {

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

  50% {
    transform: scaleY(2.2);
    background-color: var(--primary-green);
  }
}

/* 4. RCS MESSAGING RICH CAROUSEL VISUALIZER */
.anim-rcs-mock {
  width: 220px;
  height: 320px;
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 4px solid var(--primary-blue);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.rcs-mock-header {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 8px 12px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rcs-mock-body {
  flex: 1;
  background-color: #F8FAFC;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-end;
}

.rcs-rich-card {
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  animation: rcs-slide-card 5s infinite ease-in-out;
}

.rcs-card-img {
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
}

.rcs-card-content {
  padding: 8px;
}

.rcs-card-content h5 {
  font-size: 0.72rem;
  color: var(--primary-blue);
}

.rcs-card-content p {
  font-size: 0.65rem;
  color: var(--text-light);
  line-height: 1.2;
  margin-top: 2px;
}

.rcs-card-btn {
  border-top: 1px solid #F1F5F9;
  color: var(--primary-green);
  text-align: center;
  padding: 6px;
  font-size: 0.65rem;
  font-weight: 600;
}

@keyframes rcs-slide-card {
  0% {
    transform: translateX(10px) scale(0.95);
    opacity: 0;
  }

  15%,
  85% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-10px) scale(0.95);
    opacity: 0;
  }
}

/* 5. IVR TREE LIGHT-UP VISUALIZER */
.anim-ivr-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.ivr-node {
  background-color: var(--white);
  border: 2px solid var(--primary-blue);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.ivr-lines-row {
  display: flex;
  justify-content: space-around;
  width: 80%;
  height: 24px;
  position: relative;
}

.ivr-line-branch {
  width: 2px;
  background-color: #E2E8F0;
  height: 100%;
}

.ivr-grid-row {
  display: flex;
  justify-content: space-between;
  width: 90%;
}

/* Sequential node active keyframes */
.ivr-node.root {
  animation: ivr-pulse-active 6s infinite;
}

.ivr-node.branch-1 {
  animation: ivr-pulse-active 6s infinite;
  animation-delay: 2s;
}

.ivr-node.branch-2 {
  animation: ivr-pulse-active 6s infinite;
  animation-delay: 4s;
}

@keyframes ivr-pulse-active {

  0%,
  100% {
    border-color: var(--primary-blue);
    background-color: var(--white);
    color: var(--primary-blue);
  }

  20%,
  40% {
    border-color: var(--primary-green);
    background-color: var(--green-light);
    color: var(--green-light-text);
    box-shadow: 0 0 12px rgba(26, 188, 156, 0.3);
  }
}

/* 6. TOLL-FREE CALL PHONE RING VISUALIZER */
.anim-phone-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.phone-dialer {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--blue-light);
  color: var(--blue-light-text);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ring-vibrate 1s infinite alternate;
}

.phone-dialer svg {
  width: 32px;
  height: 32px;
}

.phone-number-badge {
  background-color: var(--primary-blue);
  color: var(--white);
  font-family: var(--font-heading);
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.call-status-label {
  font-size: 0.8rem;
  color: var(--primary-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: fade-glow 1.5s infinite alternate;
}

@keyframes ring-vibrate {
  0% {
    transform: rotate(0) scale(1);
  }

  25% {
    transform: rotate(-5deg) scale(1.02);
  }

  50% {
    transform: rotate(5deg) scale(1);
  }

  75% {
    transform: rotate(-3deg) scale(1.02);
  }

  100% {
    transform: rotate(3deg) scale(1);
  }
}

@keyframes fade-glow {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

/* 7. MISSED CALL SERVICE PHONE VISUALIZER */
.anim-missed-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.missed-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.missed-avatar svg {
  width: 28px;
  height: 28px;
}

.missed-logs-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 180px;
}

.missed-log-row {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  animation: missed-log-pop 5s infinite;
  opacity: 0;
}

.missed-log-row.incoming {
  border-left: 3px solid var(--primary-blue);
  animation-delay: 0.5s;
}

.missed-log-row.hungup {
  border-left: 3px solid var(--primary-green);
  animation-delay: 2.2s;
}

@keyframes missed-log-pop {
  0% {
    transform: translateY(5px);
    opacity: 0;
  }

  15%,
  85% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-5px);
    opacity: 0;
  }
}

/* 8. CLOUD TELEPHONY VIRTUAL DASHBOARD VISUALIZER */
.anim-dashboard-panel {
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-stats-row {
  display: flex;
  gap: 8px;
}

.dash-mini-card {
  flex: 1;
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  padding: 8px;
  border-radius: 6px;
  text-align: center;
}

.mini-card-title {
  font-size: 0.55rem;
  color: var(--text-muted);
}

.mini-card-val {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 2px;
}

.dash-chart-card {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  padding: 10px;
  border-radius: 8px;
}

.dash-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 60px;
  padding-top: 10px;
}

.dash-bar {
  width: 14px;
  background-color: var(--primary-blue);
  border-radius: 2px 2px 0 0;
  height: 10px;
  transform-origin: bottom center;
  animation: bar-rise-dash 4s infinite alternate ease-out;
}

.dash-bar:nth-child(1) {
  animation-delay: 0.1s;
}

.dash-bar:nth-child(2) {
  animation-delay: 0.4s;
}

.dash-bar:nth-child(3) {
  animation-delay: 0.2s;
}

.dash-bar:nth-child(4) {
  animation-delay: 0.6s;
}

.dash-bar:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes bar-rise-dash {
  0% {
    transform: scaleY(1);
    background-color: var(--primary-blue);
  }

  100% {
    transform: scaleY(5);
    background-color: var(--primary-green);
  }
}

/* 9. EMAIL MARKETING NEWSLETTER SENDER VISUALIZER */
.anim-email-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.envelope-wrapper {
  position: relative;
  width: 70px;
  height: 50px;
  background-color: var(--blue-light);
  border: 2px solid var(--primary-blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.envelope-flap {
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-left: 33px solid transparent;
  border-right: 33px solid transparent;
  border-top: 22px solid var(--primary-blue);
  transform-origin: top;
  animation: flap-open-close 4s infinite alternate ease-in-out;
}

.email-letter {
  width: 54px;
  height: 40px;
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 3px;
  position: absolute;
  bottom: 4px;
  animation: letter-rise-fall 4s infinite alternate ease-in-out;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.letter-line {
  height: 3px;
  background-color: #E2E8F0;
  border-radius: 1px;
}

.letter-line.accent {
  width: 60%;
  background-color: var(--primary-green);
}

@keyframes flap-open-close {

  0%,
  30% {
    transform: scaleY(1);
  }

  60%,
  100% {
    transform: scaleY(-1) translateY(4px);
  }
}

@keyframes letter-rise-fall {

  0%,
  50% {
    transform: translateY(0) scale(0.9);
    opacity: 0;
  }

  80%,
  100% {
    transform: translateY(-24px) scale(1.05);
    opacity: 1;
    box-shadow: var(--shadow-sm);
  }
}

/* 10. WEBSITE DEVELOPMENT LAYOUT BUILDER VISUALIZER */
.anim-web-panel {
  width: 220px;
  height: 140px;
  border: 2px solid #D1D5DB;
  border-radius: 8px;
  background-color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.web-header-mock {
  background-color: #F3F4F6;
  border-bottom: 1px solid #E5E7EB;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.web-body-mock {
  flex: 1;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.web-grid-block {
  background-color: var(--blue-light);
  border: 1px solid rgba(15, 76, 129, 0.1);
  border-radius: 4px;
  height: 34px;
  animation: block-fade-in 4s infinite ease-in-out;
  opacity: 0;
}

.web-grid-block:nth-child(1) {
  animation-delay: 0.2s;
}

.web-grid-block:nth-child(2) {
  animation-delay: 0.6s;
}

.web-grid-block:nth-child(3) {
  animation-delay: 1s;
}

.web-grid-block:nth-child(4) {
  grid-column: span 2;
  animation-delay: 1.4s;
}

.web-grid-block:nth-child(5) {
  animation-delay: 1.8s;
}

@keyframes block-fade-in {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  25%,
  85% {
    opacity: 1;
    transform: scale(1);
    background-color: var(--green-light);
    border-color: rgba(26, 188, 156, 0.1);
  }

  100% {
    opacity: 0;
  }
}

/* 11. E-COMMERCE CART FILL-UP VISUALIZER */
.anim-cart-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cart-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: var(--green-light);
  border-radius: 50%;
  color: var(--green-light-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.cart-count-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #E74C3C;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  animation: cart-badge-bounce 3s infinite ease-in-out;
}

.cart-price-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-blue);
  animation: cart-price-cycle 3s infinite steps(1);
}

@keyframes cart-badge-bounce {

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

  30%,
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes cart-price-cycle {

  0%,
  100% {
    content: '₹0.00';
  }

  30%,
  80% {
    content: '₹1,499.00';
  }
}

/* 12. MOBILE APP SCREEN SLIDER VISUALIZER */
.anim-app-mock {
  width: 140px;
  height: 240px;
  border: 4px solid #1F2937;
  border-radius: 18px;
  background-color: var(--white);
  overflow: hidden;
  position: relative;
}

.app-screen-track {
  display: flex;
  width: 200%;
  height: 100%;
  animation: screen-slide-loop 6s infinite ease-in-out;
}

.app-screen-view {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
}

.view-1 {
  background-color: var(--blue-light);
}

.view-2 {
  background-color: var(--green-light);
}

.app-dummy-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-weight: 700;
}

.app-screen-view h6 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--primary-blue);
}

@keyframes screen-slide-loop {

  0%,
  40% {
    transform: translateX(0);
  }

  50%,
  90% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* 13. SEO RANK GROWTH VISUALIZER */
.anim-seo-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 220px;
}

.seo-mock-bar {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  padding: 8px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.seo-term {
  color: var(--text-dark);
}

.seo-rank {
  color: var(--primary-green);
  font-weight: bold;
}

.seo-mock-bar.rank-1 {
  animation: seo-rank-up 4s infinite;
}

.seo-chart-line {
  height: 80px;
  position: relative;
  border-left: 2px solid #D1D5DB;
  border-bottom: 2px solid #D1D5DB;
}

.seo-line-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.seo-line-path {
  fill: none;
  stroke: var(--primary-blue);
  stroke-width: 3;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: stroke-draw 4s infinite alternate ease-in-out;
}

@keyframes seo-rank-up {

  0%,
  30% {
    background-color: var(--white);
  }

  50%,
  90% {
    background-color: var(--green-light);
    border-color: var(--primary-green);
  }
}

@keyframes stroke-draw {
  0% {
    stroke-dashoffset: 200;
  }

  100% {
    stroke-dashoffset: 0;
    stroke: var(--primary-green);
  }
}

/* 14. SOCIAL MEDIA HEARTS FLOAT VISUALIZER */
.anim-social-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  height: 160px;
  width: 160px;
}

.social-megaphone {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--blue-light);
  color: var(--blue-light-text);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  animation: speaker-bounce-social 1.5s infinite alternate;
}

.social-megaphone svg {
  width: 24px;
  height: 24px;
}

.floating-heart {
  position: absolute;
  color: #E74C3C;
  font-size: 1.5rem;
  animation: floatHeart 2.5s infinite ease-out;
  opacity: 0;
  bottom: 40px;
}

.floating-heart:nth-child(2) {
  left: 40px;
  animation-delay: 0.4s;
}

.floating-heart:nth-child(3) {
  right: 40px;
  animation-delay: 1s;
}

.floating-heart:nth-child(4) {
  left: 60px;
  animation-delay: 1.6s;
}

@keyframes floatHeart {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 0;
  }

  10% {
    opacity: 0.85;
  }

  90% {
    opacity: 0.85;
  }

  100% {
    transform: translateY(-80px) scale(1.2);
    opacity: 0;
  }
}

@keyframes speaker-bounce-social {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08) rotate(-3deg);
  }
}

/* 15. PPC AD CLICK MOUSE CURSOR VISUALIZER */
.anim-ppc-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.ppc-ad-badge {
  background-color: var(--white);
  border: 2px solid var(--primary-blue);
  padding: 10px 16px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
  position: relative;
  animation: ppc-button-glow 3s infinite ease-in-out;
}

.ppc-mouse-cursor {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 40px;
  left: 60px;
  animation: mouse-move-click 3s infinite ease-in-out;
}

.ppc-click-counter {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ppc-click-counter span {
  font-weight: bold;
  color: var(--primary-green);
}

@keyframes mouse-move-click {
  0% {
    transform: translate(0, 0);
  }

  45% {
    transform: translate(12px, -30px);
  }

  50% {
    transform: translate(12px, -30px) scale(0.9);
  }

  60% {
    transform: translate(12px, -30px) scale(1);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes ppc-button-glow {

  0%,
  48% {
    border-color: var(--primary-blue);
    background-color: var(--white);
  }

  50%,
  80% {
    border-color: var(--primary-green);
    background-color: var(--green-light);
    box-shadow: 0 0 12px rgba(26, 188, 156, 0.3);
  }
}

/* ==========================================================================
   RESPONSIVE LAYOUT (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1200px) {
  .megamenu-wrapper {
    width: 940px;
  }

  .hero-main-title {
    font-size: 2.75rem;
  }
}

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

  .hamburger-btn {
    display: flex;
  }

  #btn-login {
    display: none;
  }

  .main-header {
    height: 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

  .dialog-body {
    grid-template-columns: 1fr;
    height: 600px;
    overflow-y: auto;
  }

  .dialog-animation-col {
    border-left: none;
    border-top: 1px solid #E5E7EB;
    height: 280px;
  }
}

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .col-6 {
    width: 100%;
  }
}

/* ==========================================================================
   LOGO WATERMARK BACKGROUNDS
   ========================================================================== */

.logo-watermark {
  position: absolute;
  background-image: url('new logo.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.035;
  /* Subtle background watermark */
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.hero-watermark {
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  width: 580px;
  height: 580px;
  mix-blend-mode: overlay;
  /* Better blending on dark gradients */
}

.about-watermark {
  left: -80px;
  bottom: -40px;
  transform: rotate(15deg);
  width: 450px;
  height: 450px;
}

.services-watermark {
  right: -80px;
  top: 15%;
  transform: rotate(-8deg);
  width: 500px;
  height: 500px;
}

/* ==========================================================================
   GLOBAL THEME OVERRIDES & ENHANCEMENTS (newmd.md)
   ========================================================================== */

body {
  background-color: #f0f7f4 !important;
  /* very faint mint-green */
}

/* Make default background classes transparent so the faint tint gradient shows */
.page-content,
.who-we-are,
.services-section,
.why-choose-section,
.stats-section,
.testimonials-section,
.contact-section,
.faq-section {
  background-color: transparent !important;
}

/* Alternating subtle tints */
main.page-content>section:nth-of-type(odd),
.subpage-content>section:nth-of-type(odd) {
  background-color: #eef5fb !important;
  /* faint sky blue */
}

main.page-content>section:nth-of-type(even),
.subpage-content>section:nth-of-type(even) {
  background-color: #f0f9f4 !important;
  /* faint mint green */
}

/* Hero Dark rich blue background and white/green text theme overrides */
.hero-section {
  background: linear-gradient(135deg, #091c36 0%, #1450A3 60%, #0b2d54 100%) !important;
  color: var(--white) !important;
}

.hero-main-title {
  color: var(--white) !important;
}

.hero-paragraph {
  color: rgba(255, 255, 255, 0.85) !important;
  opacity: 1 !important;
}

.hero-watermark {
  mix-blend-mode: overlay !important;
  opacity: 0.08 !important;
}

.brand-badge-hero {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #34d399 !important;
  /* brighter green for premium contrast */
}

.accent-text-slider {
  color: #34d399 !important;
  /* brighter green for premium contrast */
}

/* Button override for rich dark background */
.hero-cta-group .btn-white {
  border-color: var(--white) !important;
  color: var(--white) !important;
  background: transparent !important;
}

.hero-cta-group .btn-white:hover {
  background-color: var(--white) !important;
  color: var(--primary-blue) !important;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2) !important;
}

/* Cards styled with light blue backgrounds and borders */
.card,
.service-card,
.review-card,
.testimonial-slide,
.faq-accordion-item,
.perk,
.industry-card {
  background-color: var(--white) !important;
  border: 1px solid rgba(20, 80, 163, 0.1) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all var(--transition-normal) !important;
}

.card:hover,
.service-card:hover,
.review-card:hover,
.testimonial-slide:hover,
.faq-accordion-item:hover,
.perk:hover,
.industry-card:hover {
  border-color: var(--primary-green) !important;
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-4px) !important;
}

/* Footer gradient */
footer,
.main-footer {
  background: linear-gradient(135deg, #0a2540 0%, #0d3b2e 100%) !important;
  color: var(--white) !important;
}

/* ==========================================================================
   NAVIGATION MENU ENHANCEMENTS (13 Items Layout)
   ========================================================================== */

.header-logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1025px) {
  .nav-menu {
    gap: 2px !important;
  }

  .nav-link {
    font-size: 0.82rem !important;
    padding: 6px 8px !important;
  }

  .navbar-actions .btn {
    padding: 8px 14px !important;
    font-size: 0.85rem !important;
  }
}

/* Megamenu 4-column layout */
.megamenu-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px;
  background-color: #ffffff;
}

.highlight-rcs {
  color: var(--primary-blue) !important;
  font-weight: 600 !important;
}

.badge-new {
  background: var(--primary-green) !important;
  color: white !important;
  font-size: 9px !important;
  padding: 2px 6px !important;
  border-radius: 10px !important;
  margin-left: 6px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  display: inline-block !important;
}

/* ==========================================================================
   META PARTNER BADGE COMPONENTS
   ========================================================================== */

.meta-partner-badge-header {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--glass-border);
  padding-left: 12px;
  height: 32px;
}

.meta-partner-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1877f2 0%, #0d5abf 100%);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.2);
  max-width: 280px;
}

.meta-partner-badge .certified {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meta-partner-badge strong {
  display: block;
  font-size: 14px;
}

.meta-partner-badge small {
  display: block;
  font-size: 10px;
  opacity: 0.9;
}

/* Hero strip */
.meta-partner-strip {
  background: linear-gradient(90deg, #1877f2, #0d5abf);
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  width: 100%;
}

.meta-partner-strip::before {
  content: "✅ ";
}

/* ==========================================================================
   NEW INDUSTRIES GRID & SUBPAGE STYLING
   ========================================================================== */

.industries-section {
  padding: 80px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.industry-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary-blue) !important;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 76, 129, 0.15) !important;
}

.industry-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.industry-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.industry-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.industry-card ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.industry-card ul li {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.industry-card ul li::before {
  content: "✓ ";
  color: var(--primary-green);
  font-weight: 700;
}

/* ==========================================================================
   NEW CAREERS SECTION & SUBPAGE STYLING
   ========================================================================== */

.careers-section {
  padding: 80px 0;
}

.careers-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.careers-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.careers-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
}

.why-work-here {
  margin-top: 48px;
}

.why-work-here h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 32px;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.perk {
  padding: 24px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.perk:hover {
  transform: translateY(-4px);
}

.perk strong {
  display: block;
  font-size: 1.15rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.perk p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ==========================================================================
   NEW PREMIUM NAVIGATION BAR STYLES (vanilla HTML/CSS/JS)
   ========================================================================== */

:root {
  --primary-blue-nav: #1450A3;
  --accent-green-nav: #1E9E6B;
  --bg-gradient-nav: linear-gradient(to right, #B8D4F7, #B8EAD4);
  --dropdown-shadow: 0 12px 32px rgba(20, 80, 163, 0.12);
  --text-dark-navy: #152A4A;
  --text-muted-navy: #5C6B85;
}

.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: auto !important;
  background: var(--bg-gradient-nav) !important;
  border-bottom: 1px solid rgba(20, 80, 163, 0.1) !important;
  z-index: 1000;
  display: block !important;
  transition: none !important;
  box-shadow: none !important;
}

.main-header.sticky {
  height: auto !important;
  background: var(--bg-gradient-nav) !important;
  box-shadow: 0 4px 20px rgba(20, 80, 163, 0.08) !important;
}

/* 1. Top Utility Bar Styling */
.utility-bar {
  border-bottom: 1px solid rgba(20, 80, 163, 0.08);
  padding: 12px 0;
}

.utility-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-tagline {
  font-size: 0.85rem;
  color: var(--text-muted-navy);
  font-weight: 500;
  border-left: 1px solid rgba(20, 80, 163, 0.2);
  padding-left: 16px;
  height: 20px;
  display: flex;
  align-items: center;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.login-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark-navy);
  transition: color 0.2s ease;
}

.login-link:hover {
  color: var(--accent-green-nav) !important;
}

.signup-btn {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-blue-nav);
  border: 2px solid var(--primary-blue-nav);
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.25s ease;
  background: transparent;
}

.signup-btn:hover {
  background-color: var(--primary-blue-nav) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(20, 80, 163, 0.2);
}

/* 2. Primary Nav Bar Styling */
.nav-bar-wrapper {
  padding: 10px 0;
}

.nav-bar-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.desktop-nav {
  width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px !important;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: static;
}

/* Pill buttons styling */
.nav-pill {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark-navy) !important;
  background: transparent;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-pill:hover {
  background-color: #B8D4F7 !important;
  color: var(--blue-light-text) !important;
}

.nav-pill.is-open {
  background-color: #B8EAD4 !important;
  color: var(--green-light-text) !important;
}

.nav-pill .chevron-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
  stroke: currentColor;
}

.nav-pill.is-open .chevron-icon {
  transform: rotate(180deg);
}

/* 3. Dropdown Panels Container */
.dropdown-panels-wrapper {
  position: relative;
  width: 100%;
}

.dropdown-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: var(--dropdown-shadow);
  border-top: 1px solid rgba(20, 80, 163, 0.08);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 180ms cubic-bezier(0.16, 1, 0.3, 1), transform 180ms cubic-bezier(0.16, 1, 0.3, 1), visibility 180ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  border-bottom: 2px solid rgba(20, 80, 163, 0.05);
}

.dropdown-panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 4. Products cascading menu layout (3 panes) */
.products-grid-panes {
  display: grid;
  grid-template-columns: 280px 280px 1fr;
  min-height: 380px;
}

.pane-column {
  padding: 24px 16px;
  border-right: 1px solid rgba(20, 80, 163, 0.08);
}

.pane-column:last-child {
  border-right: none;
}

/* Pane 1 items */
.pane-list,
.pane-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pane-item {
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 8px;
}

.pane-item:hover,
.pane-item.active {
  background-color: #B8D4F7;
}

.pane-item-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pane-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

.two-tone-icon {
  width: 24px;
  height: 24px;
}

.pane-item-text {
  display: flex;
  flex-direction: column;
}

.pane-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark-navy);
}

.pane-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted-navy);
  margin-top: 2px;
}

/* Pane 2 items */
.pane-sublist {
  display: none;
}

.pane-sublist.active {
  display: block;
}

.pane-subitem {
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  margin-bottom: 6px;
}

.pane-subitem:hover,
.pane-subitem.active {
  background-color: #B8EAD4;
  color: var(--green-light-text);
}

.pane-subitem .arrow-indicator {
  font-size: 1.1rem;
  color: var(--text-muted-navy);
}

.pane-subitem:hover .arrow-indicator,
.pane-subitem.active .arrow-indicator {
  color: var(--accent-green-nav);
}

/* Pane 3 detail grids */
.pane-detail-content {
  display: none;
  animation: fadeInDetail 0.2s ease;
}

.pane-detail-content.active {
  display: block;
}

@keyframes fadeInDetail {
  from {
    opacity: 0;
    transform: translateX(5px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.detail-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 12px;
}

.detail-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark-navy);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  padding: 4px 0;
}

.detail-link:hover {
  color: var(--accent-green-nav) !important;
  transform: translateX(4px);
}

.bullet-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-green-nav);
  border-radius: 50%;
  display: inline-block;
  opacity: 0.8;
}

/* Fallback overview card styling */
.detail-overview-card {
  background-color: #F8FAFC;
  border: 1px solid rgba(20, 80, 163, 0.06);
  border-radius: 12px;
  padding: 32px;
  max-width: 480px;
  margin: 12px;
}

.overview-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark-navy);
  margin-bottom: 8px;
}

.overview-desc {
  font-size: 0.92rem;
  color: var(--text-muted-navy);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Dropdown footer row */
.dropdown-footer-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 16px 32px;
  background-color: #F8FAFC;
  border-top: 1px solid rgba(20, 80, 163, 0.06);
}

.footer-row-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark-navy);
  transition: color 0.2s ease;
}

.footer-row-link:hover {
  color: var(--primary-blue-nav) !important;
}

.footer-row-link.highlight-green {
  color: var(--accent-green-nav);
}

.footer-row-link.highlight-green:hover {
  color: #167a52 !important;
}

.separator {
  color: rgba(20, 80, 163, 0.15);
}

/* 5. AI Panel Layout (single column grid of items) */
.ai-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px;
}

.ai-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.ai-item-card:hover {
  background-color: #B8D4F7;
  transform: translateY(-2px);
}

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

/* 6. Solutions Panel Layout (static 3 columns) */
.solutions-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px;
}

.solutions-col h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-blue-nav);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #B8D4F7;
  padding-bottom: 8px;
}

.solutions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solutions-item-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark-navy);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.solutions-item-link:hover {
  color: var(--accent-green-nav) !important;
  transform: translateX(4px);
}

.explore-all-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-green-nav) !important;
}

.explore-all-link:hover {
  color: #167a52 !important;
}

/* 7. Company Panel Layout */
.company-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 32px;
}

.company-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.company-item-card:hover {
  background-color: #B8EAD4;
  transform: translateY(-2px);
}

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

/* Two-tone SVG adjustments */
.stroke-blue {
  stroke: var(--primary-blue-nav);
}

.fill-green {
  fill: var(--accent-green-nav);
}

.stroke-green {
  stroke: var(--accent-green-nav);
}

/* 8. Mobile responsive style definitions */
@media (max-width: 1024px) {
  .products-grid-panes {
    grid-template-columns: 220px 220px 1fr;
  }
}

@media (max-width: 768px) {
  .utility-bar {
    padding: 8px 0;
  }

  .brand-tagline {
    display: none;
  }

  .utility-right {
    display: none;
  }

  .nav-bar-wrapper {
    display: none;
  }

  .mobile-navigation {
    background: #ffffff !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
    gap: 8px;
  }

  .mobile-item {
    border-bottom: 1px solid rgba(20, 80, 163, 0.05);
    padding-bottom: 8px;
  }

  .mobile-link {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--text-dark-navy) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 0 !important;
    background: transparent !important;
  }

  .mobile-link.active {
    color: var(--primary-blue-nav) !important;
  }

  .mobile-dropdown-btn {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark-navy);
    padding: 10px 0;
    cursor: pointer;
    border: none;
    background: transparent;
  }

  .mobile-dropdown-btn .chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
    stroke: currentColor;
  }

  .mobile-dropdown-btn.active .chevron {
    transform: rotate(180deg);
  }

  .mobile-accordion-panel {
    display: none;
    padding: 10px 14px 20px;
    background-color: #F8FAFC;
    border-radius: 8px;
    margin-top: 4px;
    animation: slideDownAccordion 0.2s ease;
  }

  .mobile-accordion-panel.is-open {
    display: block;
  }

  @keyframes slideDownAccordion {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-sub-group {
    margin-bottom: 16px;
  }

  .mobile-sub-group-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-blue-nav);
    margin-bottom: 10px;
    display: block;
  }

  .mobile-sub-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-sub-link-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark-navy);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .mobile-sub-link-item svg {
    width: 18px;
    height: 18px;
  }

  .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 16px;
    border-top: 1px solid rgba(20, 80, 163, 0.05);
  }
}

/* ==========================================================================
   LUXURY TESTIMONIALS SECTION REDESIGN
   ========================================================================== */

/* Overrides for background and containers */
.testimonials-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(20, 80, 163, 0.02) 0%, rgba(255, 255, 255, 1) 90%) !important;
  padding: 120px 0 !important;
  overflow: hidden;
}

/* Luxury grid layout */
.testimonials-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .testimonials-layout-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Left Column: Google Trust Card */
.reviews-summary-card {
  background: var(--luxury-card-bg) !important;
  border: 1px solid var(--luxury-card-border) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--luxury-shadow) !important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.reviews-summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--luxury-gold-gradient);
}

.reviews-summary-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 30px 60px rgba(10, 29, 55, 0.08), 0 2px 8px rgba(212, 175, 55, 0.15) !important;
}

.google-badge-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.google-icon {
  width: 24px;
  height: 24px;
}

.badge-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}

.rating-display {
  margin-bottom: 28px;
}

.rating-number {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--text-dark) 30%, var(--luxury-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  display: inline-block;
}

.rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.rating-stars .star-icon {
  width: 20px;
  height: 20px;
}

.rating-subtext {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.review-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-bottom: 36px;
  border-top: 1px solid rgba(15, 76, 129, 0.08);
  padding-top: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.925rem;
  color: var(--text-dark);
  font-weight: 600;
}

.feature-bullet {
  color: var(--luxury-gold);
  font-weight: bold;
  font-size: 1.1rem;
}

.write-review-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--luxury-gold-gradient);
  border-radius: 12px;
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  transition: all var(--transition-fast) !important;
}

.write-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 133, 215, 0.4);
  background: linear-gradient(135deg, #0b1d82 0%, #122bb8 100%);
}

/* Right Column: Testimonials Slider Container */
.testimonials-slider-container {
  width: 100%;
  position: relative;
}

.testimonials-slider-wrapper {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Redesigned Testimonial Slides */
.testimonial-slide {
  background: var(--luxury-card-bg) !important;
  border: 1px solid var(--luxury-card-border) !important;
  border-radius: 24px !important;
  padding: 56px 48px !important;
  box-shadow: var(--luxury-shadow) !important;
  position: relative;
  overflow: hidden;
  text-align: left !important;
  transition: all var(--transition-normal) !important;
  transform: none !important;
  /* Reset existing transform */
}

@media (max-width: 576px) {
  .testimonial-slide {
    padding: 40px 24px !important;
  }
}

.testimonial-slide.active {
  animation: slideFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-slide:hover {
  border-color: var(--luxury-gold) !important;
  box-shadow: 0 30px 60px rgba(10, 29, 55, 0.08), 0 2px 8px rgba(212, 175, 55, 0.1) !important;
  transform: translateY(-4px) !important;
}

/* Quote Graphic */
.testimonial-slide .quote-icon {
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 10rem;
  font-family: Georgia, serif;
  color: var(--luxury-gold);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Slide stars */
.testimonial-slide .slide-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-slide .slide-stars svg {
  width: 18px;
  height: 18px;
}

/* Quote Styling */
.testimonial-slide .quote {
  font-family: var(--font-body) !important;
  font-size: 1.25rem !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
  color: var(--text-dark) !important;
  font-style: normal !important;
  margin-bottom: 32px !important;
  position: relative;
  z-index: 2;
  text-wrap: pretty;
}

/* Verified reviewer tag */
.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--luxury-gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.verified-icon {
  width: 12px;
  height: 12px;
}

/* Author Profile Layout */
.author-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(10, 29, 55, 0.1);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Premium Controls & Dots styling */
.slider-controls {
  display: flex;
  justify-content: flex-start !important;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .slider-controls {
    justify-content: center !important;
  }
}

.control-btn {
  width: 48px !important;
  height: 48px !important;
  border: 1px solid var(--luxury-gold-border) !important;
  background-color: var(--white) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 4px 12px rgba(10, 29, 55, 0.03) !important;
  transition: all var(--transition-fast) !important;
}

.control-btn:hover {
  background-color: var(--white) !important;
  border-color: var(--luxury-gold) !important;
  color: var(--luxury-gold) !important;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.15) !important;
}

.slide-dots .dot {
  background-color: #E5E7EB !important;
  width: 8px !important;
  height: 8px !important;
  transition: all var(--transition-fast) !important;
}

.slide-dots .dot.active {
  background-color: var(--luxury-gold) !important;
  width: 24px !important;
  border-radius: 4px !important;
  transform: none !important;
}

/* ==========================================================================
   PREMIUM ENHANCEMENT LAYER — HIGH-END ANIMATIONS & EFFECTS
   ========================================================================== */

/* ── New Keyframe Animations ──────────────────────────────────────────────── */

@keyframes float-up-down {

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

  50% {
    transform: translateY(-14px);
  }
}

@keyframes shimmer-slide {
  0% {
    background-position: -200% center;
  }

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

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(30, 158, 107, 0);
  }

  50% {
    box-shadow: 0 0 24px 6px rgba(30, 158, 107, 0.25);
  }
}

@keyframes glow-pulse-blue {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(20, 80, 163, 0);
  }

  50% {
    box-shadow: 0 0 28px 8px rgba(20, 80, 163, 0.18);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes border-glow-rotate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

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

@keyframes particle-drift {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }

  33% {
    transform: translateY(-30px) translateX(20px) scale(1.1);
    opacity: 1;
  }

  66% {
    transform: translateY(-60px) translateX(-10px) scale(0.9);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-100px) translateX(5px) scale(1);
    opacity: 0;
  }
}

@keyframes text-shimmer {
  0% {
    background-position: 0% center;
  }

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

@keyframes counter-pop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slide-fade-in {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes card-lift-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes section-line-grow {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 60px;
    opacity: 1;
  }
}

/* ── Scroll-Reveal Base ──────────────────────────────────────────────────── */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(52px) scale(0.97);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays for card grids — 0.1s cadence, easeOutExpo-style curve */
.reveal-stagger>*:nth-child(1) {
  transition-delay: 0.08s;
}

.reveal-stagger>*:nth-child(2) {
  transition-delay: 0.18s;
}

.reveal-stagger>*:nth-child(3) {
  transition-delay: 0.28s;
}

.reveal-stagger>*:nth-child(4) {
  transition-delay: 0.38s;
}

.reveal-stagger>*:nth-child(5) {
  transition-delay: 0.48s;
}

.reveal-stagger>*:nth-child(6) {
  transition-delay: 0.58s;
}

.reveal-stagger>*:nth-child(7) {
  transition-delay: 0.68s;
}

.reveal-stagger>*:nth-child(8) {
  transition-delay: 0.78s;
}

.reveal-stagger>*:nth-child(9) {
  transition-delay: 0.88s;
}

.reveal-stagger>*:nth-child(10) {
  transition-delay: 0.98s;
}

.reveal-stagger>*:nth-child(11) {
  transition-delay: 1.08s;
}

.reveal-stagger>*:nth-child(12) {
  transition-delay: 1.18s;
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(48px) scale(0.94) rotate(-1deg);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
  will-change: transform, opacity;
}

.reveal-stagger.revealed>* {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

/* Generic premium card hover — lift + blue/green glow. Wrapped in :where()
   so this whole selector carries zero specificity: it only ever applies to
   cards that don't already define their own :hover (every bespoke card
   hover elsewhere in the site — feature-box, about-box, social-links,
   partner-card, etc. — always wins over this fallback). */
:where(.reveal-stagger.revealed)>*:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 20px 45px rgba(20, 80, 163, 0.16), 0 0 30px rgba(30, 158, 107, 0.12);
  transition-duration: 0.25s;
}

/* ── Heading word-by-word reveal (blur → sharp) ─────────────────────────── */
.word-split .word {
  display: inline-block;
  opacity: 0;
  filter: blur(9px);
  transform: translateY(0.35em);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--word-i, 0) * 0.055s);
  will-change: transform, opacity, filter;
}

.revealed .word-split .word {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Paragraph directly under a section heading arrives slightly after it */
.section-header .section-desc {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.section-header.revealed .section-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons: fade in last, scale up, soft one-shot glow ────────────────── */
.reveal-on-scroll .btn,
.reveal-stagger .btn {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.reveal-on-scroll.revealed .btn,
.reveal-stagger.revealed .btn {
  opacity: 1;
  transform: scale(1);
  animation: btn-soft-glow 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s 1;
}

@keyframes btn-soft-glow {

  0%,
  40% {
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
  }

  65% {
    box-shadow: 0 0 22px rgba(37, 99, 235, 0.4), 0 0 10px rgba(16, 185, 129, 0.25);
  }

  100% {
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
  }
}

/* ── Content images: zoom + blur → sharp on reveal ───────────────────────
   Excludes the brand/partner logo images, which stay fully static per
   site policy — this only affects future/other in-flow content imagery. */
.reveal-on-scroll img:not(.brand-logo):not(.highlight-logo):not(.partner-logo-img),
.reveal-stagger img:not(.brand-logo):not(.highlight-logo):not(.partner-logo-img) {
  opacity: 0;
  transform: scale(1.08);
  filter: blur(10px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed img:not(.brand-logo):not(.highlight-logo):not(.partner-logo-img),
.reveal-stagger.revealed img:not(.brand-logo):not(.highlight-logo):not(.partner-logo-img) {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* ── Section Header Decor Lines ──────────────────────────────────────────── */

.section-header.with-line::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  border-radius: 2px;
  margin: 14px auto 0;
  animation: section-line-grow 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── Premium Hero Enhancements ───────────────────────────────────────────── */

.hero-section {
  background: linear-gradient(135deg,
      #050d1a 0%,
      #091c38 18%,
      #0d2e58 36%,
      #1450A3 62%,
      #0b3d78 80%,
      #062940 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Mesh grid overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
  pointer-events: none;
}

/* Animated radial glow blobs */
.shape-1 {
  width: 550px !important;
  height: 550px !important;
  background: radial-gradient(circle, rgba(30, 158, 107, 0.45) 0%, transparent 70%) !important;
  filter: blur(60px) !important;
  opacity: 0.55 !important;
  animation: move-shapes 18s infinite alternate ease-in-out,
    float-up-down 8s infinite ease-in-out !important;
  top: -120px !important;
  right: -60px !important;
}

.shape-2 {
  width: 600px !important;
  height: 600px !important;
  background: radial-gradient(circle, rgba(20, 80, 163, 0.5) 0%, transparent 70%) !important;
  filter: blur(80px) !important;
  opacity: 0.4 !important;
  animation: move-shapes 22s infinite alternate-reverse ease-in-out,
    float-up-down 12s 3s infinite ease-in-out !important;
  bottom: -220px !important;
  left: -120px !important;
}

/* Third accent blob */
.shapes-bg::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 158, 107, 0.3) 0%, transparent 70%);
  filter: blur(50px);
  opacity: 0.4;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  animation: move-shapes 26s 5s infinite alternate ease-in-out;
  pointer-events: none;
}

/* Hero content above shapes */
.hero-grid {
  position: relative;
  z-index: 2;
}

/* Hero main title shimmer on slide text */
.hero-main-title {
  font-size: 3.4rem !important;
  letter-spacing: -0.04em !important;
  text-shadow: 0 2px 30px rgba(20, 80, 163, 0.3);
}

.accent-text-slider {
  height: 68px !important;
}

.slide-text {
  background: linear-gradient(90deg,
      #34d399 0%, #6ee7b7 30%, #34d399 60%, #6ee7b7 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shimmer 4s linear infinite;
  font-weight: 900;
}

/* Badge glow */
.brand-badge-hero {
  position: relative;
  overflow: hidden;
  animation: glow-pulse 3s infinite;
}

.brand-badge-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  animation: shimmer-slide 2.5s linear infinite;
}

/* Hero widget card */
.widget-card {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(20, 80, 163, 0.08) !important;
  border-radius: 22px !important;
  box-shadow:
    0 30px 80px rgba(5, 13, 26, 0.3),
    0 0 0 1px rgba(30, 158, 107, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  animation: float-up-down 6s 1s infinite ease-in-out;
}

/* Hero particles canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* API tags */
.api-tag {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease;
  font-weight: 600;
}

.api-tag:hover {
  background-color: rgba(30, 158, 107, 0.25) !important;
  border-color: rgba(30, 158, 107, 0.4) !important;
}

/* ── Service Cards — Premium Glassmorphism ───────────────────────────────── */

.service-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%) !important;
  border: 1px solid rgba(20, 80, 163, 0.07) !important;
  border-radius: 20px !important;
  box-shadow:
    0 4px 20px rgba(20, 80, 163, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease !important;
  overflow: hidden;
  position: relative;
}

/* Shimmer sweep on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -200% center;
  transition: background-position 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.service-card:hover::before {
  background-position: 200% center;
}

/* Glowing border on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px) !important;
  box-shadow:
    0 20px 60px rgba(20, 80, 163, 0.12),
    0 0 0 1px rgba(30, 158, 107, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  border-color: transparent !important;
  background: rgba(255, 255, 255, 0.98) !important;
}

.service-card>* {
  position: relative;
  z-index: 2;
}

.card-icon {
  border-radius: 14px !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease !important;
}

.service-card:hover .card-icon {
  transform: scale(1.15) rotate(5deg) !important;
  box-shadow: 0 8px 20px rgba(20, 80, 163, 0.15);
}

.learn-more-btn {
  padding: 6px 0;
  position: relative;
}

.learn-more-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  transition: width 0.3s ease;
  border-radius: 1px;
}

.service-card:hover .learn-more-btn::after {
  width: 100%;
}

/* ── Feature Boxes — Glow on Hover ──────────────────────────────────────── */

.feature-box {
  background: linear-gradient(145deg, #fafcff 0%, #f0f8f5 100%) !important;
  border: 1px solid rgba(20, 80, 163, 0.06) !important;
  border-radius: 20px !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.feature-box:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(20, 80, 163, 0.1), 0 0 0 1px rgba(30, 158, 107, 0.12) !important;
  border-color: rgba(30, 158, 107, 0.2) !important;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  animation: float-up-down 4s infinite ease-in-out;
}

.feature-box:hover .feature-icon {
  transform: scale(1.2) !important;
}

/* Stagger float delays */
.feature-box:nth-child(1) .feature-icon {
  animation-delay: 0s;
}

.feature-box:nth-child(2) .feature-icon {
  animation-delay: 0.5s;
}

.feature-box:nth-child(3) .feature-icon {
  animation-delay: 1s;
}

.feature-box:nth-child(4) .feature-icon {
  animation-delay: 1.5s;
}

.feature-box:nth-child(5) .feature-icon {
  animation-delay: 2s;
}

.feature-box:nth-child(6) .feature-icon {
  animation-delay: 2.5s;
}

/* ── Stats Section — Premium Numbers ────────────────────────────────────── */

.stats-section {
  background: linear-gradient(135deg,
      #062940 0%, #0d3568 30%, #1450A3 60%, #0a3d24 100%) !important;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.stat-counter-box {
  position: relative;
  padding: 32px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.stat-counter-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(30, 158, 107, 0.3);
}

.counter-icon {
  background: rgba(30, 158, 107, 0.2) !important;
  border: 1px solid rgba(30, 158, 107, 0.3) !important;
  animation: glow-pulse 3s infinite;
}

.counter-numbers,
.counter-numbers-suffix {
  font-size: 3.2rem !important;
  background: linear-gradient(135deg, #ffffff 30%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  transition: transform 0.3s ease;
}

.stat-counter-box:hover .counter-numbers,
.stat-counter-box:hover .counter-numbers-suffix {
  animation: counter-pop 0.5s ease;
}

/* ── Industries Cards ─────────────────────────────────────────────────────  */

.industry-card {
  border-radius: 20px !important;
  border: 1px solid rgba(20, 80, 163, 0.08) !important;
  border-top: 4px solid transparent !important;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--primary-blue), var(--primary-green)) border-box !important;
  background-clip: padding-box !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease !important;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  border-radius: 2px;
}

.industry-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 24px 60px rgba(20, 80, 163, 0.14) !important;
}

.industry-icon {
  font-size: 48px !important;
  animation: float-up-down 4s infinite ease-in-out;
  display: inline-block;
}

/* ── Process Steps — Premium ─────────────────────────────────────────────── */

.process-step-item {
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%) !important;
  border: 1px solid rgba(20, 80, 163, 0.07) !important;
  border-radius: 22px !important;
  box-shadow: 0 6px 24px rgba(20, 80, 163, 0.05) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease !important;
  position: relative;
  overflow: hidden;
}

.process-step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-item:hover::before {
  transform: scaleX(1);
}

.process-step-item:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 24px 60px rgba(20, 80, 163, 0.12) !important;
}

.step-icon-wrapper {
  background: linear-gradient(135deg, rgba(20, 80, 163, 0.06), rgba(30, 158, 107, 0.06)) !important;
  border: 1px solid rgba(20, 80, 163, 0.08);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease !important;
}

.process-step-item:hover .step-icon-wrapper {
  background: linear-gradient(135deg, rgba(20, 80, 163, 0.12), rgba(30, 158, 107, 0.12)) !important;
  transform: scale(1.1) !important;
}

.step-num {
  background: linear-gradient(135deg, var(--primary-green), #16a085) !important;
  box-shadow: 0 4px 12px rgba(30, 158, 107, 0.4) !important;
  animation: glow-pulse 2.5s infinite;
}

.process-arrow {
  color: var(--primary-green) !important;
}

.arrow-svg {
  filter: drop-shadow(0 0 4px rgba(30, 158, 107, 0.4));
}

/* ── FAQ — Premium ───────────────────────────────────────────────────────── */

.faq-accordion-item {
  background: linear-gradient(145deg, #ffffff, #f8fbff) !important;
  border: 1px solid rgba(20, 80, 163, 0.07) !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.faq-accordion-item:hover {
  border-color: rgba(30, 158, 107, 0.25) !important;
  box-shadow: 0 8px 30px rgba(20, 80, 163, 0.08) !important;
}

.faq-question-btn[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(20, 80, 163, 0.04), rgba(30, 158, 107, 0.04));
  border-bottom: 1px solid rgba(20, 80, 163, 0.06);
}

/* ── Testimonials — Enhanced ─────────────────────────────────────────────── */

.testimonials-section {
  background: linear-gradient(135deg, #f8fbff 0%, #f0f9f5 100%) !important;
}

.testimonial-slide {
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.testimonial-slide.active {
  animation: slide-fade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-summary-card {
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  border: 1px solid rgba(20, 80, 163, 0.08);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 12px 40px rgba(20, 80, 163, 0.07);
}

.testimonials-slider-container {
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  border: 1px solid rgba(20, 80, 163, 0.08);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 12px 40px rgba(20, 80, 163, 0.07);
}

.quote-icon {
  font-size: 5rem;
  line-height: 1;
  color: var(--primary-green);
  opacity: 0.18;
  font-family: Georgia, serif;
  position: absolute;
  top: 16px;
  left: 24px;
}

.author-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
  font-weight: 700 !important;
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
  animation: glow-pulse-blue 3s infinite;
}

.slide-stars svg {
  width: 20px !important;
  height: 20px !important;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.testimonials-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  align-items: start;
}

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

.testimonials-slider-wrapper {
  padding: 0 !important;
}

/* ── Contact Section — Premium ───────────────────────────────────────────── */

.contact-section {
  background: linear-gradient(135deg, #f0f7f4 0%, #eef5fb 100%) !important;
}

.contact-card-box {
  border-radius: 28px !important;
  box-shadow:
    0 40px 100px rgba(20, 80, 163, 0.12),
    0 0 0 1px rgba(20, 80, 163, 0.06) !important;
  overflow: hidden;
}

.contact-info-panel {
  background: linear-gradient(135deg, #072C4D 0%, #0d3568 40%, #1450A3 100%) !important;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.contact-info-panel>* {
  position: relative;
  z-index: 1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-blue) !important;
  box-shadow: 0 0 0 4px rgba(20, 80, 163, 0.08) !important;
  outline: none;
}

/* ── Buttons — Premium Shimmer ───────────────────────────────────────────── */

.btn-solid {
  background: linear-gradient(135deg, var(--primary-green) 0%, #16a085 50%, #1e9e6b 100%) !important;
  background-size: 200% auto !important;
  transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.btn-solid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -200% center;
  transition: background-position 0.5s ease;
}

.btn-solid:hover::after {
  background-position: 200% center;
}

.btn-solid:hover {
  background-position: right center !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(30, 158, 107, 0.35) !important;
}

.btn-outline {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease !important;
}

.btn-outline:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(20, 80, 163, 0.2) !important;
}

/* ── Clients Carousel — Premium ──────────────────────────────────────────── */

.clients-section {
  background: linear-gradient(135deg, #f8fbff 0%, #f0f9f5 100%) !important;
}

.client-badge {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(20, 80, 163, 0.1) !important;
  border-radius: 12px !important;
  padding: 14px 28px !important;
  box-shadow: 0 4px 16px rgba(20, 80, 163, 0.06) !important;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 700 !important;
  white-space: nowrap;
}

.client-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(20, 80, 163, 0.12) !important;
}

/* ── Footer — Rich Dark ──────────────────────────────────────────────────── */

footer,
.main-footer {
  background: linear-gradient(135deg, #060f1e 0%, #0a1d37 40%, #071a2f 100%) !important;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
}

.social-links a {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease !important;
}

.social-links a:hover {
  background: var(--primary-green) !important;
  border-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 158, 107, 0.3);
}

/* ── Floating WhatsApp — Enhanced ────────────────────────────────────────── */

.floating-whatsapp-btn {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5) !important;
}

/* ── Section Backgrounds — Alternating Premium ───────────────────────────── */

.about-section {
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 50%, #f4f8f4 100%) !important;
}

.services-section {
  background: linear-gradient(145deg, #f0f7f4 0%, #eef5fb 50%, #f5f8ff 100%) !important;
}

.why-choose-section {
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%) !important;
}

.faq-section {
  background: linear-gradient(145deg, #f0f8f5 0%, #eef5fb 100%) !important;
}

/* ── About Section — Highlight Card ─────────────────────────────────────── */

.about-highlight-card {
  background: linear-gradient(135deg, #062040 0%, #0d2e58 40%, #1450A3 100%) !important;
  box-shadow: 0 30px 80px rgba(20, 80, 163, 0.2) !important;
  animation: glow-pulse-blue 4s infinite;
}

.highlight-logo-wrapper {
  box-shadow: 0 0 40px rgba(30, 158, 107, 0.3);
}

/* ── Navigation Dropdown — Frosted Glass ─────────────────────────────────── */

.dropdown-panel {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-top: 2px solid transparent !important;
  background-image: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    linear-gradient(90deg, var(--primary-blue), var(--primary-green)) !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
  box-shadow: 0 20px 60px rgba(20, 80, 163, 0.15) !important;
}

/* ── Announcement Bar ─────────────────────────────────────────────────────── */

.announcement-bar {
  background: linear-gradient(90deg,
      #062940 0%, #0d3568 30%, #1450A3 60%, #0a3d24 85%, #062940 100%) !important;
  background-size: 200% auto !important;
  animation: border-glow-rotate 6s linear infinite !important;
}

.announcement-bar .badge {
  background: linear-gradient(135deg, var(--primary-green), #16a085) !important;
  box-shadow: 0 0 12px rgba(30, 158, 107, 0.5) !important;
  animation: glow-pulse 2s infinite;
}

/* ── Main Header — Gradient Glow on Scroll ───────────────────────────────── */

.main-header.sticky {
  box-shadow:
    0 4px 20px rgba(20, 80, 163, 0.1),
    0 1px 0 rgba(20, 80, 163, 0.08) !important;
}

/* ── Brand Tagline ─────────────────────────────────────────────────────────  */

.brand-tagline {
  font-size: 0.82rem !important;
}

/* ── Particle Canvas ─────────────────────────────────────────────────────── */

.hero-section .shapes-bg {
  z-index: 1 !important;
}

/* ==========================================================================
   JUSTDIAL REVIEWS SECTION — Blue / Green Glassmorphism Showcase
   ========================================================================== */

.justdial-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 35%, #effaf4 70%, #ffffff 100%);
}

@keyframes jd-bg-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Animated Background Decor ───────────────────────────────────────────── */

.jd-bg-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.jd-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  will-change: transform;
}

.jd-blob-1 {
  width: 480px;
  height: 480px;
  top: -140px;
  left: -160px;
  background: radial-gradient(circle, #2563EB 0%, rgba(37, 99, 235, 0) 70%);
  animation: jd-blob-drift-1 14s ease-in-out infinite;
}

.jd-blob-2 {
  width: 420px;
  height: 420px;
  top: 30%;
  right: -180px;
  background: radial-gradient(circle, #10B981 0%, rgba(16, 185, 129, 0) 70%);
  animation: jd-blob-drift-2 16s ease-in-out infinite;
}

.jd-blob-3 {
  width: 340px;
  height: 340px;
  bottom: -120px;
  left: 30%;
  background: radial-gradient(circle, #38BDF8 0%, rgba(56, 189, 248, 0) 70%);
  animation: jd-blob-drift-3 12s ease-in-out infinite;
}

@keyframes jd-blob-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.12); }
}

@keyframes jd-blob-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 60px) scale(1.08); }
}

@keyframes jd-blob-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -50px) scale(1.15); }
}

.jd-sparkles {
  position: absolute;
  inset: 0;
}

.jd-sparkle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #93C5FD 60%, rgba(147, 197, 253, 0) 100%);
  box-shadow: 0 0 6px rgba(37, 99, 235, 0.55);
  pointer-events: none;
  will-change: transform, opacity;
  animation: jd-sparkle-float ease-in-out infinite;
}

.jd-sparkle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0) 0%, rgba(16, 185, 129, 0.35) 100%);
}

@keyframes jd-sparkle-float {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(0.7);
    opacity: 0;
  }
  25% { opacity: 1; }
  50% {
    transform: translateY(-46px) translateX(14px) scale(1.15);
    opacity: 0.9;
  }
  75% { opacity: 0.4; }
}

/* ── Section Header ──────────────────────────────────────────────────────── */

.justdial-section .section-header,
.justdial-section .jd-rating-banner,
.justdial-section .jd-carousel,
.justdial-section .jd-cta-wrap {
  position: relative;
  z-index: 1;
}

.jd-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.jd-logo {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
  animation: jd-logo-breathe 3.2s ease-in-out infinite;
}

@keyframes jd-logo-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.jd-highlight {
  background: linear-gradient(120deg, #2563EB 0%, #10B981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── Rating Header Banner ────────────────────────────────────────────────── */

.jd-rating-banner {
  max-width: 460px;
  margin: 0 auto 64px;
  padding: 36px 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 48px rgba(20, 80, 163, 0.08), 0 2px 8px rgba(16, 185, 129, 0.08);
}

.jd-rating-emoji {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 10px;
  animation: jd-star-pop 2.6s ease-in-out infinite;
}

@keyframes jd-star-pop {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.18) rotate(8deg); }
}

.jd-rating-score {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.05;
  color: #2563EB;
}

.jd-rating-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10B981;
}

.jd-stars-glow {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 8px;
}

.jd-stars-glow svg {
  width: 30px;
  height: 30px;
  will-change: transform, filter;
  animation: jd-star-glow 2.2s ease-in-out infinite;
}

.jd-stars-glow svg:nth-child(2n) { animation-delay: 0.35s; }
.jd-stars-glow svg:nth-child(3n) { animation-delay: 0.7s; }

@keyframes jd-star-glow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(255, 176, 0, 0.35));
  }
  50% {
    transform: scale(1.12);
    filter: drop-shadow(0 0 12px rgba(255, 176, 0, 0.95));
  }
}

.jd-rating-count {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.jd-rating-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ── Carousel ────────────────────────────────────────────────────────────── */

.jd-carousel {
  max-width: 760px;
  margin: 0 auto;
}

.jd-viewport {
  overflow: hidden;
  border-radius: 24px;
  padding: 6px;
}

.jd-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.jd-card {
  flex: 0 0 100%;
  min-width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 22px;
  padding: 40px 44px;
  box-shadow: 0 24px 50px rgba(20, 80, 163, 0.08), 0 2px 10px rgba(16, 185, 129, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.jd-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563EB, #10B981);
}

.jd-card.active {
  opacity: 1;
}

.jd-card:hover {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 32px 64px rgba(20, 80, 163, 0.12), 0 6px 18px rgba(16, 185, 129, 0.12);
}

.jd-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.jd-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}

.jd-avatar--blue { background: linear-gradient(135deg, #2563EB, #3B82F6); }
.jd-avatar--green { background: linear-gradient(135deg, #10B981, #34D399); }

.jd-reviewer {
  flex: 1;
  min-width: 0;
}

.jd-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.jd-card-stars {
  display: flex;
  gap: 3px;
}

.jd-card-stars svg {
  width: 17px;
  height: 17px;
}

.jd-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.jd-review-text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 22px;
}

.jd-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.jd-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0B5638;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.22));
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 7px 14px;
  border-radius: 999px;
}

.jd-verified-badge svg {
  width: 14px;
  height: 14px;
  color: #10B981;
  flex-shrink: 0;
}

/* ── Pagination Dots ─────────────────────────────────────────────────────── */

.jd-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.jd-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #D3DEF2;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.35s ease, width 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}

.jd-dot:hover {
  background: #A9C2E8;
}

.jd-dot.active {
  width: 32px;
  background: linear-gradient(90deg, #2563EB, #10B981);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.45);
  animation: jd-dot-pulse 1.6s ease-in-out infinite;
}

@keyframes jd-dot-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(37, 99, 235, 0.35); }
  50% { box-shadow: 0 0 16px rgba(16, 185, 129, 0.6); }
}

/* ── See More Button ─────────────────────────────────────────────────────── */

.jd-cta-wrap {
  margin-top: 56px;
}

.jd-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 19px 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  background-size: 160% 160%;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.35), 0 4px 12px rgba(16, 185, 129, 0.25);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.35s ease;
}

.jd-cta-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.42), 0 6px 16px rgba(16, 185, 129, 0.32);
  background-position: 100% 100%;
}

.jd-cta-btn:active {
  transform: scale(0.98);
}

.jd-cta-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.jd-cta-btn:hover .jd-cta-arrow {
  transform: translateX(5px);
}

.jd-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: jd-ripple-expand 0.65s ease-out forwards;
  pointer-events: none;
}

@keyframes jd-ripple-expand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .jd-card {
    padding: 34px 30px;
  }
}

@media (max-width: 768px) {
  .justdial-section {
    padding: 84px 0;
  }

  .jd-card {
    padding: 28px 22px;
  }

  .jd-card-top {
    gap: 12px;
  }

  .jd-avatar {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .jd-review-text {
    font-size: 1rem;
  }

  .jd-rating-banner {
    padding: 30px 22px;
    margin-bottom: 48px;
  }

  .jd-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 20px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .jd-section-title {
    font-size: 1.6rem;
  }

  .jd-logo {
    width: 38px;
    height: 38px;
  }

  .jd-rating-score {
    font-size: 3.2rem;
  }

  .jd-stars-glow svg {
    width: 24px;
    height: 24px;
  }

  .jd-date {
    white-space: normal;
  }
}

/* Reduced motion: calm everything down */
@media (prefers-reduced-motion: reduce) {
  .justdial-section,
  .jd-logo,
  .jd-rating-emoji,
  .jd-stars-glow svg,
  .jd-blob,
  .jd-sparkle,
  .jd-dot.active {
    animation: none !important;
  }

  .jd-track {
    transition: none !important;
  }
}

/* ==========================================================================
   PREMIUM REVIEW SYSTEM — UNIFIED BLUE & GREEN THEME
   Google Reviews + Justdial Reviews share one design language
   ========================================================================== */

:root {
  --rev-blue: #2563EB;
  --rev-green: #10B981;
  --rev-blue-rgb: 37, 99, 235;
  --rev-green-rgb: 16, 185, 129;
  --rev-gradient: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  --rev-card-bg: rgba(255, 255, 255, 0.85);
  --rev-card-border: rgba(37, 99, 235, 0.14);
  --rev-card-shadow: 0 24px 50px rgba(20, 80, 163, 0.08), 0 2px 8px rgba(16, 185, 129, 0.08);
  --rev-card-shadow-hover: 0 32px 64px rgba(20, 80, 163, 0.12), 0 6px 18px rgba(16, 185, 129, 0.12);
  --rev-glass: blur(18px);
}

/* ── Animated gradient background (shared) ───────────────────────────────── */

@keyframes rev-bg-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Floating blue / green glow circles */
@keyframes rev-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.12); }
}

@keyframes rev-blob-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-36px, 44px) scale(1.08); }
}

/* Gently shimmering stars */
@keyframes rev-star-shimmer {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    filter: drop-shadow(0 3px 8px rgba(37, 99, 235, 0.35));
  }
  50% {
    transform: scale(1.12);
    opacity: 0.9;
    filter: drop-shadow(0 3px 14px rgba(16, 185, 129, 0.5));
  }
}

/* CTA breathing glow */
@keyframes rev-cta-glow {
  0%, 100% {
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.35), 0 4px 12px rgba(16, 185, 129, 0.25);
  }
  50% {
    box-shadow: 0 18px 48px rgba(37, 99, 235, 0.55), 0 6px 20px rgba(16, 185, 129, 0.45);
  }
}

/* ── Shared section tag ──────────────────────────────────────────────────── */

.testimonials-section .section-tag,
.justdial-section .section-tag {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
  color: #1D4ED8;
  border: 1px solid rgba(37, 99, 235, 0.22);
}

/* ==========================================================================
   GOOGLE REVIEWS SECTION — BLUE & GREEN REBRAND
   ========================================================================== */

.testimonials-section {
  background: linear-gradient(160deg, #eef4ff 0%, #ffffff 35%, #ecfaf4 70%, #ffffff 100%) !important;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-section::before,
.testimonials-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.testimonials-section::before {
  width: 440px;
  height: 440px;
  top: -130px;
  left: -150px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.32) 0%, rgba(37, 99, 235, 0) 70%);
  animation: rev-blob-float 16s ease-in-out infinite;
}

.testimonials-section::after {
  width: 400px;
  height: 400px;
  bottom: -110px;
  right: -130px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0) 70%);
  animation: rev-blob-float-2 19s ease-in-out infinite;
}

/* 35 / 65 two-column layout */
.testimonials-layout-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.86fr) !important;
}

/* Rating summary card — glassmorphism, blue/green accents */
.reviews-summary-card {
  background: var(--rev-card-bg) !important;
  border: 1px solid var(--rev-card-border) !important;
  border-radius: 20px !important;
  backdrop-filter: var(--rev-glass) !important;
  -webkit-backdrop-filter: var(--rev-glass) !important;
  box-shadow: var(--rev-card-shadow) !important;
}

.reviews-summary-card::before {
  background: linear-gradient(90deg, #2563EB 0%, #10B981 100%) !important;
  box-shadow: 0 2px 18px rgba(37, 99, 235, 0.35);
}

.reviews-summary-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--rev-card-shadow-hover) !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
}

/* Gradient rating number */
.rating-number {
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 6px 18px rgba(37, 99, 235, 0.18));
}

/* Shimmering blue stars */
.rating-stars .star-icon {
  width: 24px !important;
  height: 24px !important;
  animation: rev-star-shimmer 3s ease-in-out infinite;
  will-change: transform, filter;
}

.rating-stars .star-icon:nth-child(2n) { animation-delay: 0.4s; }
.rating-stars .star-icon:nth-child(3n) { animation-delay: 0.8s; }

.rating-subtext {
  color: #4B77C4 !important;
}

/* Feature bullets in brand green */
.feature-bullet {
  color: #10B981 !important;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* Write a Review button — blue → green gradient */
.write-review-btn {
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%) !important;
  background-size: 160% 160%;
  border-radius: 999px !important;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.35), 0 4px 12px rgba(16, 185, 129, 0.25) !important;
}

.write-review-btn:hover {
  transform: translateY(-3px) !important;
  background: linear-gradient(135deg, #1D4ED8 0%, #0E9F6E 100%) !important;
  background-position: 100% 100%;
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.45), 0 6px 16px rgba(16, 185, 129, 0.35) !important;
}

/* Slider area — remove outer box so cards are the glass cards */
.testimonials-slider-container {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Review cards — same glass language as Justdial */
.testimonial-slide {
  background: var(--rev-card-bg) !important;
  border: 1px solid var(--rev-card-border) !important;
  border-radius: 20px !important;
  padding: 52px 44px !important;
  box-shadow: var(--rev-card-shadow) !important;
}

.testimonial-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563EB, #10B981);
  opacity: 0.9;
}

.testimonial-slide:hover {
  border-color: rgba(16, 185, 129, 0.35) !important;
  box-shadow: var(--rev-card-shadow-hover) !important;
}

/* Quote mark in brand green */
.testimonial-slide .quote-icon {
  color: #10B981;
  opacity: 0.08;
}

/* Slide stars with soft blue glow */
.testimonial-slide .slide-stars svg {
  filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.3));
}

/* Verified tag — green trust styling */
.verified-tag {
  background-color: rgba(16, 185, 129, 0.08) !important;
  border: 1px solid rgba(16, 185, 129, 0.22) !important;
  color: #0B5638 !important;
}

/* Controls — blue borders, green hover */
.control-btn {
  border: 1px solid rgba(37, 99, 235, 0.25) !important;
  background-color: rgba(255, 255, 255, 0.85) !important;
  border-radius: 50% !important;
  color: #1D4ED8 !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1) !important;
}

.control-btn:hover {
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35), 0 4px 12px rgba(16, 185, 129, 0.25) !important;
}

.slide-dots .dot {
  background-color: #D3DEF2 !important;
}

.slide-dots .dot.active {
  background: linear-gradient(90deg, #2563EB, #10B981) !important;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.45) !important;
}

/* ==========================================================================
   JUSTDIAL REVIEWS SECTION — MIRRORS GOOGLE REVIEWS
   ========================================================================== */

/* Animated gradient background */
.justdial-section {
  background: linear-gradient(160deg, #eef4ff 0%, #ffffff 35%, #ecfaf4 70%, #ffffff 100%);
}

.justdial-section .section-header,
.justdial-section .jd-layout-grid,
.justdial-section .jd-cta-wrap {
  position: relative;
  z-index: 1;
}

/* 35 / 65 two-column layout — same as Google */
.jd-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.86fr);
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}

/* LEFT — Justdial rating summary card (fixed) */
.jd-summary-card {
  background: var(--rev-card-bg);
  border: 1px solid var(--rev-card-border);
  backdrop-filter: var(--rev-glass);
  -webkit-backdrop-filter: var(--rev-glass);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: var(--rev-card-shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.jd-summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563EB, #10B981);
  box-shadow: 0 2px 18px rgba(37, 99, 235, 0.35);
}

.jd-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rev-card-shadow-hover);
  border-color: rgba(16, 185, 129, 0.3);
}

.jd-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.jd-summary-card .jd-logo {
  width: 42px;
  height: 42px;
}

.jd-badge-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}

.jd-rating-display {
  margin-bottom: 28px;
}

.jd-rating-score {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: #2563EB;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: baseline;
}

.jd-rating-score > span:first-child {
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 6px 18px rgba(37, 99, 235, 0.18));
}

.jd-rating-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10B981;
  margin-left: 6px;
}

.jd-stars-glow {
  justify-content: flex-start;
  margin: 0 0 14px;
}

.jd-stars-glow svg {
  filter: drop-shadow(0 3px 8px rgba(37, 99, 235, 0.35));
}

/* Blue / green star glow (replaces the orange version) */
@keyframes jd-star-glow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(37, 99, 235, 0.35));
  }
  50% {
    transform: scale(1.12);
    filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.6));
  }
}

.jd-rating-count {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.jd-rating-sub {
  font-size: 0.95rem;
  color: #4B77C4;
}

/* Trust badge */
.jd-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0B5638;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(37, 99, 235, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 10px 18px;
  border-radius: 999px;
}

.jd-trust-badge svg {
  width: 16px;
  height: 16px;
  color: #10B981;
  flex-shrink: 0;
}

/* RIGHT — Review carousel */
.jd-carousel-wrap {
  width: 100%;
  min-width: 0;
}

.jd-carousel {
  max-width: 100%;
  margin: 0;
}

.jd-card {
  background: var(--rev-card-bg);
  border: 1px solid var(--rev-card-border);
  border-radius: 20px;
  box-shadow: var(--rev-card-shadow);
  backdrop-filter: var(--rev-glass);
  -webkit-backdrop-filter: var(--rev-glass);
}

.jd-card:hover {
  transform: translateY(-4px);
}

/* Carousel controls — prev / next arrows + dots, mirrors Google */
.jd-carousel-controls {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.jd-carousel-controls .jd-dots {
  margin-top: 0;
  flex: 1;
  justify-content: center;
}

.jd-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: rgba(255, 255, 255, 0.85);
  color: #1D4ED8;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.jd-arrow svg {
  width: 20px;
  height: 20px;
}

.jd-arrow:hover {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, #2563EB, #10B981);
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35), 0 4px 12px rgba(16, 185, 129, 0.25);
}

.jd-arrow:active {
  transform: scale(0.96);
}

/* See More Reviews button — breathing glow */
.jd-cta-btn {
  animation: rev-cta-glow 3.2s ease-in-out infinite;
}

.jd-cta-btn:hover {
  animation-play-state: paused;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  /* Tablet: rating summary on top, carousel below */
  .jd-layout-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .jd-summary-card {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .jd-carousel {
    max-width: 760px;
    margin: 0 auto;
  }

  .jd-carousel-controls {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  /* Mobile: stacked, full width, centered */
  .testimonials-layout-grid {
    gap: 40px !important;
  }

  .testimonial-slide {
    padding: 40px 24px !important;
  }

  .jd-layout-grid {
    gap: 40px;
  }

  .jd-summary-card {
    padding: 34px 24px;
    align-items: center;
    text-align: center;
  }

  .jd-brand-header {
    justify-content: center;
  }

  .jd-stars-glow {
    justify-content: center;
  }

  .jd-rating-display {
    width: 100%;
  }

  .jd-rating-score {
    font-size: 3.4rem;
  }

  .jd-carousel-controls {
    gap: 12px;
  }

  .jd-arrow {
    width: 42px;
    height: 42px;
  }

  .jd-arrow svg {
    width: 17px;
    height: 17px;
  }
}

/* Reduced motion: calm the new effects */
@media (prefers-reduced-motion: reduce) {
  .testimonials-section,
  .justdial-section,
  .rating-stars .star-icon,
  .jd-stars-glow svg,
  .jd-cta-btn,
  .testimonials-section::before,
  .testimonials-section::after {
    animation: none !important;
  }
}

/* === SCROLL & LOAD POLISH (appended) === */
/* 1. Anchor scroll offset so section links land below the sticky header (88px, 72px sticky) */
html {
  scroll-padding-top: 100px;
}
@media (max-width: 768px) {
  html { scroll-padding-top: 84px; }
}

/* 4. Respect reduced-motion for smooth scrolling */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* 2. Scroll-lock safety net (works even if premium.css is unavailable) */
body.no-scroll {
  overflow: hidden;
}

/* 5. Smoother momentum + no scroll-chaining glitches */
body {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

/* 3. Reveal-animation robustness -- never leave content invisible */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* Failsafe: if JS/IntersectionObserver never runs, reveal after a max delay so nothing stays blank */
.reveal-on-scroll {
  animation: esc-reveal-failsafe 0s linear 4s forwards;
}
.reveal-on-scroll.revealed {
  animation: none;
}
@keyframes esc-reveal-failsafe {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
/* === END SCROLL & LOAD POLISH === */
