/* ============================================
   Fuze - Custom Styles (Stunning Edition)
   Primary Color: #6B2FA0 (Purple from logo)
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --fuze-primary: #d30083;
  --fuze-primary-dark: #de0086;
  --fuze-primary-light: #c7007f;
  --fuze-primary-ultra-light: #cf0082;
  --fuze-primary-rgb: 107, 47, 160;
  --fuze-dark: #0F0A1A;
  --fuze-dark-secondary: #1A1230;
  --fuze-dark-card: #1E1535;
  --fuze-light: #F8F6FC;
  --fuze-lighter: #FDFCFF;
  --fuze-gray: #6C757D;
  --fuze-gray-light: #E9E5F0;
  --fuze-white: #FFFFFF;
  --fuze-text: #2D2D3A;
  --fuze-text-muted: #6C6C80;
  --fuze-accent: #E8D5F5;
  --fuze-glow: rgba(107, 47, 160, 0.4);
  --fuze-radius: 1rem;
  --fuze-radius-lg: 1.5rem;
  --fuze-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --fuze-transition-fast: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- Global Resets & Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Heebo', sans-serif;
  color: var(--fuze-text);
  background-color: var(--fuze-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  color: var(--fuze-dark);
  line-height: 1.3;
}

a {
  font-family: 'Heebo', sans-serif;
  color: var(--fuze-primary);
  text-decoration: none;
  transition: var(--fuze-transition);
}

a:hover {
  color: var(--fuze-primary-dark);
}

p {
  color: var(--fuze-text-muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 110px 0;
  position: relative;
}

/* ---------- Selection ---------- */
::selection {
  background-color: var(--fuze-primary);
  color: var(--fuze-white);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--fuze-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--fuze-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--fuze-primary-light);
}

/* ============ NAVBAR ============ */
.navbar {
  padding: 1.1rem 0;
  transition: var(--fuze-transition);
  background: transparent;
  z-index: 1050;
}

.navbar.scrolled {
  background: rgba(15, 10, 26, 0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3), 0 0 80px rgba(var(--fuze-primary-rgb), 0.08);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(var(--fuze-primary-rgb), 0.1);
}

.navbar-brand img {
  height: 44px;
  transition: var(--fuze-transition);
}

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

.navbar .nav-link {
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--fuze-transition-fast);
  letter-spacing: 0.3px;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fuze-primary-light), var(--fuze-primary));
  transition: var(--fuze-transition-fast);
  transform: translateX(50%);
  border-radius: 1px;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 70%;
}

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

.btn-nav-cta {
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  color: var(--fuze-white) !important;
  border: none;
  padding: 0.55rem 1.6rem !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--fuze-transition);
  position: relative;
  overflow: hidden;
}

.btn-nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-nav-cta:hover::before {
  left: 100%;
}

.btn-nav-cta:hover {
  color: var(--fuze-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(var(--fuze-primary-rgb), 0.45);
}

/* Mobile toggler */
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

/* ============ HERO SECTION ============ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--fuze-dark);
  overflow: hidden;
  padding: 0;
}

/* Particle canvas */
#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Gradient overlay */
#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(var(--fuze-primary-rgb), 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(var(--fuze-primary-rgb), 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(var(--fuze-primary-rgb), 0.05) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--fuze-primary);
  top: -10%;
  right: -10%;
  animation: orbFloat1 15s ease-in-out infinite;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: var(--fuze-primary-light);
  bottom: -5%;
  left: 5%;
  animation: orbFloat2 18s ease-in-out infinite;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: var(--fuze-primary-ultra-light);
  top: 40%;
  left: 30%;
  animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.1); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.9); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -30px) scale(1.15); }
}

/* Grid pattern overlay */
#hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(var(--fuze-primary-rgb), 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--fuze-primary-rgb), 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

#hero .container {
  position: relative;
  z-index: 5;
}

#hero .hero-content {
  position: relative;
  z-index: 5;
}

#hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--fuze-white);
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

#hero h1 span {
  background: linear-gradient(135deg, var(--fuze-primary-light), var(--fuze-primary-ultra-light), #c9a0e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  line-height: 1.85;
}

#hero .hero-visual {
  position: relative;
  z-index: 5;
}

/* Hero floating badge */
.hero-floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--fuze-primary-rgb), 0.15);
  border: 1px solid rgba(var(--fuze-primary-rgb), 0.25);
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--fuze-primary-light);
  font-size: 0.88rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.hero-floating-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fuze-primary-light);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Trusted by ticker */
.hero-trusted {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trusted p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  opacity: 0.3;
}

.trusted-logos span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* ============ BUTTONS ============ */
.btn-fuze-primary {
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  color: var(--fuze-white);
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--fuze-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.btn-fuze-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-fuze-primary:hover::before {
  left: 100%;
}

.btn-fuze-primary:hover {
  color: var(--fuze-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(var(--fuze-primary-rgb), 0.45);
}

.btn-fuze-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--fuze-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.btn-fuze-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--fuze-white);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.btn-fuze-dark {
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  color: var(--fuze-white);
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--fuze-transition);
  position: relative;
  overflow: hidden;
}

.btn-fuze-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-fuze-dark:hover::before {
  left: 100%;
}

.btn-fuze-dark:hover {
  color: var(--fuze-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(var(--fuze-primary-rgb), 0.4);
}

/* ============ SECTION HEADERS ============ */
.section-header {
  margin-bottom: 4rem;
}

.section-header .section-badge {
  display: inline-block;
  background: rgba(var(--fuze-primary-rgb), 0.08);
  color: var(--fuze-primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1.3rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
  border: 1px solid rgba(var(--fuze-primary-rgb), 0.12);
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
}

.section-header.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ============ ABOUT SECTION ============ */
#about {
  background-color: var(--fuze-white);
  overflow: hidden;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--fuze-radius-lg);
  overflow: visible;
}

.about-image-wrapper img {
  border-radius: var(--fuze-radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition: var(--fuze-transition);
}

.about-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Decorative border */
.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--fuze-primary-light);
  border-radius: var(--fuze-radius-lg);
  z-index: -1;
  opacity: 0.25;
  transition: var(--fuze-transition);
}

.about-image-wrapper:hover::after {
  top: 15px;
  right: -15px;
  opacity: 0.4;
}

/* Floating accent square */
.about-image-wrapper::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  border-radius: 1rem;
  z-index: 2;
  opacity: 0.9;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1rem 1.2rem;
  background: var(--fuze-light);
  border-radius: 1rem;
  transition: var(--fuze-transition);
  min-width: 100px;
}

.stat-item:hover {
  background: rgba(var(--fuze-primary-rgb), 0.08);
  transform: translateY(-3px);
}

.stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--fuze-text-muted);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* ============ SERVICES SECTION ============ */
#services {
  background-color: var(--fuze-light);
  position: relative;
}

/* Subtle top decoration */
#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--fuze-primary), transparent);
  border-radius: 2px;
}

.service-card {
  background: var(--fuze-white);
  border: 1px solid rgba(var(--fuze-primary-rgb), 0.06);
  border-radius: var(--fuze-radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--fuze-transition);
  position: relative;
  overflow: hidden;
}

/* Gradient top border on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fuze-primary), var(--fuze-primary-light));
  opacity: 0;
  transition: var(--fuze-transition);
}

/* Glow effect on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(var(--fuze-primary-rgb), 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--fuze-transition);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(var(--fuze-primary-rgb), 0.1), 0 5px 15px rgba(0, 0, 0, 0.04);
  border-color: rgba(var(--fuze-primary-rgb), 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(var(--fuze-primary-rgb), 0.08), rgba(var(--fuze-primary-rgb), 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--fuze-transition);
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--fuze-primary);
  transition: var(--fuze-transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 25px rgba(var(--fuze-primary-rgb), 0.3);
}

.service-card:hover .service-icon i {
  color: var(--fuze-white);
}

.service-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ============ WHY US / FEATURES ============ */
#why-us {
  background-color: var(--fuze-white);
  overflow: hidden;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.2rem;
  border-radius: 1rem;
  transition: var(--fuze-transition);
  border: 1px solid transparent;
}

.feature-item:hover {
  background: var(--fuze-light);
  border-color: rgba(var(--fuze-primary-rgb), 0.1);
  transform: translateX(5px);
}

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(var(--fuze-primary-rgb), 0.08), rgba(var(--fuze-primary-rgb), 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--fuze-transition);
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  box-shadow: 0 6px 20px rgba(var(--fuze-primary-rgb), 0.3);
}

.feature-icon i {
  color: var(--fuze-primary);
  font-size: 1.25rem;
  transition: var(--fuze-transition);
}

.feature-item:hover .feature-icon i {
  color: var(--fuze-white);
}

.feature-text h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.feature-text p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* Why us image styling */
.why-us-image-wrap {
  position: relative;
}

.why-us-image-wrap img {
  border-radius: var(--fuze-radius-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  transition: var(--fuze-transition);
}

.why-us-image-wrap:hover img {
  transform: scale(1.02);
}

/* Floating stats card */
.floating-stats-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--fuze-white);
  border-radius: 1rem;
  padding: 1.2rem 1.8rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}

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

.floating-stats-card .fs-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fuze-white);
  font-size: 1.2rem;
}

.floating-stats-card .fs-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fuze-dark);
  line-height: 1;
}

.floating-stats-card .fs-label {
  font-size: 0.78rem;
  color: var(--fuze-text-muted);
}

/* ============ PORTFOLIO ============ */
#portfolio {
  background-color: var(--fuze-dark);
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
#portfolio::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--fuze-primary-rgb), 0.12) 0%, transparent 70%);
  pointer-events: none;
}

#portfolio .section-header h2 {
  color: var(--fuze-white);
}

#portfolio .section-header p {
  color: rgba(255, 255, 255, 0.55);
}

#portfolio .section-header .section-badge {
  background: rgba(var(--fuze-primary-rgb), 0.2);
  border-color: rgba(var(--fuze-primary-rgb), 0.3);
  color: var(--fuze-primary-light);
}

.portfolio-card {
  border-radius: var(--fuze-radius-lg);
  overflow: hidden;
  background: var(--fuze-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--fuze-transition);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(var(--fuze-primary-rgb), 0.1);
  border-color: rgba(var(--fuze-primary-rgb), 0.25);
}

.portfolio-card .card-img-top {
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-card:hover .card-img-top {
  transform: scale(1.08);
}

.portfolio-card .card-body {
  padding: 1.5rem 1.75rem;
}

.portfolio-card .card-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fuze-white);
}

.portfolio-card .card-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
}

.portfolio-card .badge-fuze {
  background: rgba(var(--fuze-primary-rgb), 0.15);
  color: var(--fuze-primary-light);
  font-weight: 500;
  font-size: 0.78rem;
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(var(--fuze-primary-rgb), 0.2);
}

/* ============ TESTIMONIALS ============ */
#testimonials {
  background: linear-gradient(160deg, var(--fuze-dark) 0%, var(--fuze-dark-secondary) 100%);
  color: var(--fuze-white);
  position: relative;
  overflow: hidden;
}

/* Background mesh */
#testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(rgba(var(--fuze-primary-rgb), 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

#testimonials .section-header h2 {
  color: var(--fuze-white);
}

#testimonials .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

#testimonials .section-header .section-badge {
  background: rgba(var(--fuze-primary-rgb), 0.2);
  border-color: rgba(var(--fuze-primary-rgb), 0.3);
  color: var(--fuze-primary-light);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--fuze-radius-lg);
  padding: 2rem 2rem 1.75rem;
  height: 100%;
  transition: var(--fuze-transition);
  position: relative;
}

/* Quote icon */
.testimonial-card::before {
  content: '\201D';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: rgba(var(--fuze-primary-rgb), 0.15);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  border-color: rgba(var(--fuze-primary-rgb), 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-card .stars {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  display: flex;
  gap: 2px;
}

.testimonial-card .quote {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-card .client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(var(--fuze-primary-rgb), 0.4);
}

.testimonial-card .client-name {
  font-weight: 700;
  color: var(--fuze-white);
  font-size: 0.95rem;
}

.testimonial-card .client-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============ PROCESS ============ */
#process {
  background-color: var(--fuze-white);
  position: relative;
}

.process-timeline {
  position: relative;
}

/* Connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  right: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg,
    var(--fuze-gray-light),
    var(--fuze-primary-light),
    var(--fuze-primary),
    var(--fuze-primary-light),
    var(--fuze-gray-light)
  );
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.75rem;
}

.process-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--fuze-white);
  border: 2px solid rgba(var(--fuze-primary-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fuze-primary);
  transition: var(--fuze-transition);
  position: relative;
}

.process-step:hover .process-number {
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  color: var(--fuze-white);
  border-color: transparent;
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(var(--fuze-primary-rgb), 0.35);
}

.process-step h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.process-step p {
  font-size: 0.9rem;
}

/* ============ CTA SECTION ============ */
#cta {
  background: linear-gradient(135deg, var(--fuze-primary-dark), var(--fuze-primary), var(--fuze-primary-light));
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Animated background pattern */
#cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  animation: ctaFloat 20s ease-in-out infinite;
  pointer-events: none;
}

#cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  animation: ctaFloat 15s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes ctaFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

#cta h2 {
  color: var(--fuze-white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
}

#cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.btn-cta-white {
  background: var(--fuze-white);
  color: var(--fuze-primary);
  border: none;
  padding: 0.9rem 2.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--fuze-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-cta-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--fuze-primary-rgb), 0.1), transparent);
  transition: left 0.5s ease;
}

.btn-cta-white:hover::before {
  left: 100%;
}

.btn-cta-white:hover {
  color: var(--fuze-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* ============ CONTACT SECTION ============ */
#contact {
  background-color: var(--fuze-light);
  position: relative;
}

.contact-info-card {
  background: var(--fuze-white);
  border-radius: var(--fuze-radius-lg);
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(var(--fuze-primary-rgb), 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: var(--fuze-transition);
}

.contact-info-item:hover {
  background: var(--fuze-light);
}

.contact-info-item:last-of-type {
  margin-bottom: 0;
}

.contact-info-item .icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(var(--fuze-primary-rgb), 0.08), rgba(var(--fuze-primary-rgb), 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--fuze-transition);
}

.contact-info-item:hover .icon-box {
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  box-shadow: 0 6px 20px rgba(var(--fuze-primary-rgb), 0.3);
}

.contact-info-item .icon-box i {
  color: var(--fuze-primary);
  font-size: 1.15rem;
  transition: var(--fuze-transition);
}

.contact-info-item:hover .icon-box i {
  color: var(--fuze-white);
}

.contact-info-item h6 {
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form-card {
  background: var(--fuze-white);
  border-radius: var(--fuze-radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(var(--fuze-primary-rgb), 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1.5px solid var(--fuze-gray-light);
  border-radius: 0.85rem;
  padding: 0.8rem 1.1rem;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  transition: var(--fuze-transition);
  background-color: var(--fuze-lighter);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--fuze-primary);
  box-shadow: 0 0 0 4px rgba(var(--fuze-primary-rgb), 0.1);
  background-color: var(--fuze-white);
}

.contact-form-card .form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--fuze-dark);
  margin-bottom: 0.4rem;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--fuze-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

/* Subtle top gradient line */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fuze-primary), var(--fuze-primary-light), var(--fuze-primary), transparent);
}

.site-footer h5 {
  color: var(--fuze-white);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  transition: var(--fuze-transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--fuze-primary-light);
  transform: translateX(-4px);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--fuze-transition);
  font-size: 1rem;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  color: var(--fuze-white);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(var(--fuze-primary-rgb), 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  margin-top: 3.5rem;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  color: var(--fuze-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--fuze-transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(var(--fuze-primary-rgb), 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(var(--fuze-primary-rgb), 0.5);
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Stagger children animation */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ============ COUNTER ============ */
.counter-value {
  display: inline-block;
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--fuze-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader .spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(var(--fuze-primary-rgb), 0.15);
  border-top-color: var(--fuze-primary-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============ MARQUEE / TICKER ============ */
.marquee-section {
  background: var(--fuze-dark);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(var(--fuze-primary-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--fuze-primary-rgb), 0.1);
}

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

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2.5rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.marquee-item .marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fuze-primary-light);
  opacity: 0.5;
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
  section {
    padding: 80px 0;
  }

  .navbar-collapse {
    background: var(--fuze-dark-secondary);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 0.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(var(--fuze-primary-rgb), 0.1);
  }

  .navbar .nav-link {
    padding: 0.7rem 1rem !important;
  }

  .btn-nav-cta {
    margin: 0.5rem 1rem;
    display: inline-block;
    text-align: center;
  }

  .about-image-wrapper::after,
  .about-image-wrapper::before {
    display: none;
  }

  .process-timeline::before {
    display: none;
  }

  .floating-stats-card {
    display: none;
  }

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

  .trusted-logos {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  #hero {
    text-align: center;
    min-height: auto;
    padding: 130px 0 80px;
  }

  #hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-floating-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .about-stats {
    justify-content: center;
  }

  .about-image-wrapper img {
    height: 280px;
  }

  #cta {
    text-align: center;
  }

  .btn-cta-white {
    margin-top: 1rem;
  }

  .feature-item:hover {
    transform: translateX(0);
  }
}

@media (max-width: 575.98px) {
  .btn-fuze-primary,
  .btn-fuze-outline {
    padding: 0.75rem 1.5rem;
    font-size: 0.92rem;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 1.5rem;
  }

  .founder-image-wrapper img {
    height: 400px !important;
  }
}

/* ============ HERO STATS ROW ============ */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--fuze-white);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 767.98px) {
  .hero-stats-row {
    justify-content: center;
  }
}

/* ============ VISION SECTION ============ */
#vision {
  padding: 0;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.vision-banner {
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  border-radius: var(--fuze-radius-lg);
  padding: 3.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(var(--fuze-primary-rgb), 0.25);
}

.vision-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.vision-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.vision-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  backdrop-filter: blur(10px);
}

.vision-icon i {
  font-size: 1.6rem;
  color: var(--fuze-white);
}

.vision-banner h3 {
  color: var(--fuze-white);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.vision-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 767.98px) {
  .vision-banner {
    padding: 2.5rem 1.5rem;
  }

  #vision {
    margin-top: -20px;
  }
}

/* ============ SERVICE LIST STYLES ============ */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-right: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  color: var(--fuze-text-muted);
  line-height: 1.65;
}

.service-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fuze-primary), var(--fuze-primary-light));
  opacity: 0.7;
}

.service-card-wide {
  padding: 2.5rem 2.5rem;
}

.service-icon-lg {
  width: 80px;
  height: 80px;
  border-radius: 20px;
}

.service-icon-lg i {
  font-size: 2rem;
}

/* ============ FOUNDER SECTION ============ */
#founder {
  background: linear-gradient(160deg, var(--fuze-dark) 0%, var(--fuze-dark-secondary) 100%);
  color: var(--fuze-white);
  position: relative;
  overflow: hidden;
}

/* Background pattern */
#founder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(rgba(var(--fuze-primary-rgb), 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Ambient glow */
#founder::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--fuze-primary-rgb), 0.1) 0%, transparent 70%);
  pointer-events: none;
}

#founder .section-header .section-badge {
  background: rgba(var(--fuze-primary-rgb), 0.2);
  border-color: rgba(var(--fuze-primary-rgb), 0.3);
  color: var(--fuze-primary-light);
}

#founder .section-header h2 {
  color: var(--fuze-white);
}

#founder p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
}

.founder-image-wrapper {
  position: relative;
  border-radius: var(--fuze-radius-lg);
  overflow: hidden;
}

.founder-image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--fuze-radius-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  transition: var(--fuze-transition);
}

.founder-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Gradient overlay at bottom of image */
.founder-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(15, 10, 26, 0.85), transparent);
  border-radius: 0 0 var(--fuze-radius-lg) var(--fuze-radius-lg);
  pointer-events: none;
  z-index: 1;
}

.founder-name-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.founder-name-badge strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fuze-white);
}

.founder-name-badge span {
  font-size: 0.85rem;
  color: var(--fuze-primary-light);
  font-weight: 500;
}

/* Founder quote */
.founder-quote {
  background: rgba(var(--fuze-primary-rgb), 0.1);
  border: 1px solid rgba(var(--fuze-primary-rgb), 0.2);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
  position: relative;
}

.founder-quote .bi-quote {
  font-size: 2rem;
  color: var(--fuze-primary-light);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}

.founder-quote blockquote {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--fuze-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 1040;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  transition: var(--fuze-transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  color: var(--fuze-white);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* Adjust back-to-top position to not overlap whatsapp */
@media (max-width: 575.98px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .back-to-top {
    bottom: 20px;
    left: 20px;
  }
}

section#contact {
    max-width: 100vw;
    overflow-x: hidden;
}