/* ═══════════════════════════════════════════════════════════
   Digitek Entails – Main Stylesheet
   Brand: #1f375d (Primary) | #ffbd59 (Secondary/Accent)
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --primary:       #1f375d;
  --primary-dark:  #152641;
  --primary-light: #2a4a7f;
  --accent:        #ffbd59;
  --accent-dark:   #e6a53a;
  --accent-light:  #ffd494;
  --white:         #ffffff;
  --off-white:     #f8f9fc;
  --light-grey:    #eef1f6;
  --mid-grey:      #c8d0de;
  --text-body:     #4a5568;
  --text-dark:     #1a2332;
  --text-muted:    #718096;

  /* Gradients */
  --grad-primary:  linear-gradient(135deg, #1f375d 0%, #2a4a7f 100%);
  --grad-accent:   linear-gradient(135deg, #ffbd59 0%, #ff9a00 100%);
  --grad-hero:     linear-gradient(135deg, #0f1f35 0%, #1f375d 50%, #2a4a7f 100%);
  --grad-card:     linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(31,55,93,.08);
  --shadow-md:     0 8px 24px rgba(31,55,93,.12);
  --shadow-lg:     0 16px 48px rgba(31,55,93,.18);
  --shadow-xl:     0 32px 80px rgba(31,55,93,.22);
  --shadow-accent: 0 8px 24px rgba(255,189,89,.35);

  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --trans-fast:   0.2s ease;
  --trans-med:    0.35s ease;
  --trans-slow:   0.6s ease;

  /* Radii */
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --radius-pill:  999px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

a { color: var(--primary); text-decoration: none; transition: var(--trans-fast); }
a:hover { color: var(--accent-dark); }

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

/* ── TOP BAR ────────────────────────────────────────────── */
#top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  border-bottom: 2px solid var(--accent);
}

.btn-topbar-audit {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: none;
  transition: var(--trans-fast);
  letter-spacing: .3px;
}
.btn-topbar-audit:hover { background: var(--accent-light); color: var(--primary-dark); transform: translateY(-1px); }

.btn-topbar-call {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: var(--trans-fast);
}
.btn-topbar-call:hover { background: rgba(255,255,255,.1); color: #fff; }

#top-bar .social-icons a {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--trans-fast);
}
#top-bar .social-icons a:hover {
  color: var(--accent);
  background: rgba(255,189,89,.15);
}

/* ── MAIN HEADER ────────────────────────────────────────── */
#main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--trans-med);
}

#main-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
}

.navbar { padding: 12px 0; }

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--grad-primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -1px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--accent-dark); }

.logo-img{
  height:50px;   /* adjust based on your design */
  width:auto;
  object-fit:contain;
}

/* Nav Links */
.nav-link {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--trans-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent);
  transition: var(--trans-med);
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after {
  left: 14px; right: 14px;
}
.nav-link:hover { color: var(--primary) !important; background: var(--off-white); }

/* CTA Button in Nav */
.btn-nav-cta {
  font-size: 14px !important;
  padding: 9px 20px !important;
}

/* Mobile Toggler */
.navbar-toggler {
  border: none;
  background: none;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--trans-fast);
}

/* ── MEGA MENU ──────────────────────────────────────────── */
.mega-dropdown { position: static; }

.mega-menu {
  width: 100%;
  left: 0;
  padding: 0;
  border: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border-top: 3px solid var(--accent);
}

.mega-menu-inner {
  display: flex;
  padding: 32px;
  gap: 32px;
}

.mega-col { flex: 1; }
.mega-col.mega-cta-col { flex: 0 0 220px; }

.mega-heading {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-grey);
  font-family: var(--font-body);
}

.mega-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--trans-fast);
}
.mega-menu .dropdown-item i {
  width: 18px;
  color: var(--accent-dark);
  font-size: 13px;
}
.mega-menu .dropdown-item:hover {
  background: var(--off-white);
  color: var(--primary);
  padding-left: 16px;
}

.mega-cta-box {
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mega-cta-icon {
  width: 52px; height: 52px;
  background: rgba(255,189,89,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
}
.mega-cta-box h6 { color: #fff; margin: 0; font-size: 15px; }
.mega-cta-box p { color: rgba(255,255,255,.7); font-size: 12.5px; line-height: 1.5; margin: 0; }

/* Regular Dropdown */
.dropdown-menu-custom {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 10px;
  min-width: 220px;
  border-top: 3px solid var(--accent);
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-menu-custom .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--trans-fast);
}
.dropdown-menu-custom .dropdown-item i {
  width: 18px;
  color: var(--accent-dark);
  font-size: 13px;
}
.dropdown-menu-custom .dropdown-item:hover {
  background: var(--off-white);
  color: var(--primary);
}

/* ── BREADCRUMB BAR ─────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--light-grey);
  padding: 10px 0;
}
.breadcrumb { font-size: 13px; }
.breadcrumb-item a { color: var(--primary); font-weight: 500; }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--mid-grey); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary-custom {
  background: var(--grad-primary);
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans-med);
  box-shadow: var(--shadow-md);
  letter-spacing: .3px;
  text-decoration: none;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-accent-custom {
  background: var(--grad-accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans-med);
  box-shadow: var(--shadow-accent);
  text-decoration: none;
}
.btn-accent-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,189,89,.45);
  color: var(--primary-dark);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans-med);
  text-decoration: none;
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-white-custom {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans-med);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.btn-white-custom:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ── SECTION UTILITIES ──────────────────────────────────── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31,55,93,.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  border: 1px solid rgba(31,55,93,.12);
}
.section-tag.accent {
  background: rgba(255,189,89,.15);
  color: var(--accent-dark);
  border-color: rgba(255,189,89,.3);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-title span { color: var(--accent-dark); }

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-dark .section-title  { color: #fff; }
.section-dark .section-subtitle { color: rgba(255,255,255,.75); }
.section-dark .section-tag { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.2); }

/* ── HERO SECTION ───────────────────────────────────────── */
#hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(255,189,89,.1) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,189,89,.15);
  border: 1px solid rgba(255,189,89,.35);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge i { animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title .accent { color: var(--accent); }
.hero-title .underline-accent {
  position: relative;
  display: inline-block;
}
.hero-title .underline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 4px;
  background: var(--grad-accent);
  border-radius: 2px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 36px;
}

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

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(12px);
}
.hero-dashboard-preview {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-dash-bar {
  background: var(--grad-primary);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-dash-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-dash-body { padding: 20px; }
.hero-dash-stat {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.hero-dash-stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-display);
}
.hero-dash-stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Floating badges on hero */
.hero-float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 3;
}
.hero-float-badge i { color: var(--accent-dark); font-size: 18px; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hero-float-badge:nth-child(2) { animation-delay: 1.5s; }

/* ── TRUST BAR ──────────────────────────────────────────── */
#trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  padding: 20px 0;
}
.trust-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-logo-item {
  font-size: 14px;
  font-weight: 700;
  color: var(--mid-grey);
  letter-spacing: .5px;
  transition: var(--trans-fast);
}
.trust-logo-item:hover { color: var(--primary); }

/* ── SERVICES CARDS ─────────────────────────────────────── */
.service-card {
  background: var(--grad-card);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--trans-med);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transition: var(--trans-med);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(31,55,93,.15);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 60px; height: 60px;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--trans-med);
}
.service-card:hover .service-card-icon {
  background: var(--grad-accent);
  color: var(--primary);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-card-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link i { transition: var(--trans-fast); }
.service-card:hover .service-card-link i { transform: translateX(4px); }

/* ── STATS COUNTER SECTION ──────────────────────────────── */
#stats-section {
  background: var(--grad-primary);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
#stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255,189,89,.08) 0%, transparent 70%);
}
.stat-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-number {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}
.stat-suffix { font-size: 28px; margin-top: 8px; }
.stat-label {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  margin-top: 8px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
}

/* ── WHY CHOOSE US ──────────────────────────────────────── */
.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-grey);
  background: var(--white);
  transition: var(--trans-med);
  height: 100%;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(31,55,93,.2);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: rgba(255,189,89,.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-dark);
}
.why-body h5 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.why-body p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: var(--trans-med);
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card::before {
  content: '"';
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: 20px; right: 28px;
  opacity: .35;
}
.testimonial-stars { color: var(--accent); font-size: 14px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 15px; color: var(--text-dark); }
.author-role { font-size: 12.5px; color: var(--text-muted); }

/* ── INDUSTRIES ─────────────────────────────────────────── */
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-grey);
  background: var(--white);
  text-align: center;
  transition: var(--trans-med);
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.industry-card:hover {
  background: var(--grad-primary);
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.industry-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  transition: var(--trans-med);
}
.industry-card:hover .industry-icon {
  background: rgba(255,189,89,.2);
  color: var(--accent);
}
.industry-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--trans-fast);
}
.industry-card:hover .industry-name { color: #fff; }

/* ── BLOG CARDS ─────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans-med);
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 200px;
  background: var(--grad-primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--trans-slow); }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-meta-item { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.blog-card-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.blog-read-more { color: var(--primary); font-weight: 700; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; }
.blog-read-more i { transition: var(--trans-fast); }
.blog-card:hover .blog-read-more i { transform: translateX(4px); }

/* ── FAQ SECTION ────────────────────────────────────────── */
#faq-section { background: var(--off-white); }

.faq-accordion .accordion-item {
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.faq-accordion .accordion-button {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--text-dark);
  background: var(--white);
  box-shadow: none;
  padding: 20px 24px;
  gap: 14px;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(31,55,93,.04);
}
.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 13px;
  color: var(--primary);
  transition: var(--trans-fast);
}
.faq-accordion .accordion-button:not(.collapsed)::after { transform: rotate(-180deg); }
.faq-accordion .accordion-body {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 24px 20px;
}

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: var(--grad-primary);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,189,89,.12) 0%, transparent 60%);
}
.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-title span { color: var(--accent); }
.cta-desc { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 32px; }

/* ── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  background: var(--grad-hero);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero-title span { color: var(--accent); }
.page-hero-desc { font-size: 17px; color: rgba(255,255,255,.8); max-width: 560px; line-height: 1.8; }

/* ── FORM STYLES ────────────────────────────────────────── */
.form-control-custom {
  background: var(--white);
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-dark);
  transition: var(--trans-fast);
  width: 100%;
}
.form-control-custom:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(31,55,93,.08);
}
.form-control-custom::placeholder { color: var(--mid-grey); }

.form-label-custom {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
}

.form-alert {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 20px;
  display: none;
}
.form-alert.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-alert.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.form-alert.show { display: block; }

/* ── PROCESS STEPS ──────────────────────────────────────── */
.process-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.process-step-num {
  width: 60px; height: 60px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.process-connector {
  position: absolute;
  top: 62px; right: -50%;
  width: 100%;
  height: 2px;
  background: var(--light-grey);
  z-index: 0;
}
.process-step:last-child .process-connector { display: none; }
.process-step h5 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ── CASE STUDY CARD ────────────────────────────────────── */
.case-study-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--light-grey);
  transition: var(--trans-med);
  height: 100%;
}
.case-study-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-study-header {
  background: var(--grad-primary);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.case-study-header::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.case-study-tag {
  display: inline-block;
  background: rgba(255,189,89,.2);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.case-study-title { color: #fff; font-size: 20px; font-weight: 700; }
.case-study-body { padding: 28px; }
.case-metric {
  text-align: center;
  padding: 16px 10px;
  background: var(--off-white);
  border-radius: var(--radius-md);
}
.case-metric-num { font-size: 26px; font-weight: 800; color: var(--primary); font-family: var(--font-display); }
.case-metric-label { font-size: 11.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .8px; margin-top: 4px; }

/* ── TEAM CARDS ─────────────────────────────────────────── */
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  transition: var(--trans-med);
  height: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display);
  margin: 0 auto 18px;
  border: 4px solid var(--light-grey);
  transition: var(--trans-med);
}
.team-card:hover .team-avatar { border-color: var(--accent); }
.team-name { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--accent-dark); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.team-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--trans-fast);
  margin: 0 3px;
}
.team-social a:hover { background: var(--primary); color: var(--accent); }

/* ── FOOTER ─────────────────────────────────────────────── */
#main-footer { background: var(--primary-dark); }

.footer-main { padding: 80px 0 60px; }

.footer-tagline {
  color: rgba(255,255,255,.65);
  font-size: 14.5px;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 360px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--trans-fast);
}
.footer-social a:hover { background: var(--accent); color: var(--primary-dark); }

.badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.footer-heading {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-family: var(--font-body);
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: var(--trans-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-list {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.65);
  font-size: 13.5px;
  line-height: 1.6;
}
.footer-contact-list li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 14px;
}
.footer-contact-list a { color: rgba(255,255,255,.65); }
.footer-contact-list a:hover { color: var(--accent); }

.footer-bottom {
  background: rgba(0,0,0,.2);
  padding: 18px 0;
  color: rgba(255,255,255,.45);
  font-size: 13px;
}
.footer-made { font-size: 13px; color: rgba(255,255,255,.45); }

/* ── BACK TO TOP ────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--grad-primary);
  color: var(--accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--trans-med);
  z-index: 999;
  box-shadow: var(--shadow-md);
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── CONTACT INFO CARD ──────────────────────────────────── */
.contact-info-card {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: rgba(255,189,89,.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
}
.contact-info-text { color: rgba(255,255,255,.9); font-size: 14.5px; line-height: 1.7; }
.contact-info-text strong { color: #fff; display: block; font-size: 15px; margin-bottom: 4px; }
.contact-info-text a { color: rgba(255,255,255,.85); }
.contact-info-text a:hover { color: var(--accent); }

/* ── MAP EMBED ──────────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--light-grey);
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ── BLOG POST DETAIL ───────────────────────────────────── */
.blog-post-content { font-size: 16px; line-height: 1.9; color: var(--text-body); }
.blog-post-content h2 { font-size: 26px; margin-top: 36px; margin-bottom: 16px; color: var(--text-dark); }
.blog-post-content h3 { font-size: 20px; margin-top: 28px; margin-bottom: 12px; color: var(--text-dark); }
.blog-post-content p { margin-bottom: 20px; }
.blog-post-content ul, .blog-post-content ol { padding-left: 28px; margin-bottom: 20px; }
.blog-post-content li { margin-bottom: 8px; }
.blog-post-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-body);
}

/* ── SIDEBAR ────────────────────────────────────────────── */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}
.sidebar-widget-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-grey);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
  #hero { padding: 80px 0 60px; min-height: auto; }
  .hero-stats { gap: 20px; }
  .mega-menu-inner { flex-direction: column; padding: 20px; }
  .mega-col.mega-cta-col { flex: 1; }
  .section-pad { padding: 64px 0; }
  .contact-form-wrapper { padding: 32px 24px; }
  .contact-info-card { padding: 32px 24px; }
}

@media (max-width: 767.98px) {
  #hero { padding: 60px 0 48px; }
  .hero-title { font-size: 32px; letter-spacing: -.5px; }
  .hero-desc { font-size: 15px; }
  .hero-float-badge { display: none; }
  .hero-stats { justify-content: center; }
  .section-pad { padding: 52px 0; }
  .stat-number { font-size: 36px; }
  #top-bar { display: none; } /* Hide on mobile for clean look */
  .footer-main { padding: 52px 0 40px; }
  .cta-section { padding: 52px 0; }
}

/* ── UTILITIES ──────────────────────────────────────────── */
.text-accent  { color: var(--accent) !important; }
.text-primary-brand { color: var(--primary) !important; }
.bg-primary-brand { background: var(--primary) !important; }
.bg-accent { background: var(--accent) !important; }
.bg-off-white { background: var(--off-white) !important; }

.list-check { list-style: none; padding: 0; }
.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--text-body);
}
.list-check li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent-dark);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.highlight-box {
  background: rgba(255,189,89,.1);
  border: 1px solid rgba(255,189,89,.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: var(--text-dark);
}

/* WOW Animation Overrides */
.wow { visibility: hidden; }
