@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
:root {
  --bg: #070314;
  --fg: #f8fafc;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-800: #1a103c;
  --slate-900: #0d0721;
  --brand-primary: #8b5cf6;
  --brand-accent: #0ea5e9;
  --brand-gold: #f59e0b;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--bg) !important;
  color: var(--fg) !important;
  font-family: 'Poppins', sans-serif !important;
  min-height: 100vh;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
a {
  text-decoration: none;
}
.text-brand-primary {
  color: var(--brand-primary) !important;
}
.text-brand-accent {
  color: var(--brand-accent) !important;
}
.text-brand-gold {
  color: var(--brand-gold) !important;
}
.text-slate-300 {
  color: var(--slate-300) !important;
}
.text-slate-400 {
  color: var(--slate-400) !important;
}
.text-slate-500 {
  color: var(--slate-500) !important;
}
.bg-slate-800 {
  background-color: var(--slate-800) !important;
}
.bg-slate-900 {
  background-color: var(--slate-900) !important;
}
.bg-brand-primary {
  background-color: var(--brand-primary) !important;
}
.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s, background 0.3s;
}
.glass-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(255, 255, 255, 0.06);
}
#mainNavbar {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
#mainNavbar.scrolled {
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.navbar-brand .logo-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
  flex-shrink: 0;
}
.navbar-brand .brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  line-height: 1;
}
.navbar-brand .brand-sub {
  font-size: 0.6rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.navbar-nav .nav-link {
  color: var(--slate-300) !important;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0 !important;
  margin: 0 1rem;
  transition: color 0.2s;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: white !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}
.navbar-toggler {
  border: none;
  color: white;
  padding: 0.25rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-collapse {
  background-color: var(--slate-900);
}
@media (min-width: 992px) {
  .navbar-collapse {
    background: transparent;
  }
}
.btn-brand {
  background: linear-gradient(135deg, var(--brand-primary), #2563eb);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  padding: 0.625rem 1.5rem;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-brand:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
  color: white;
}
.btn-brand-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}
.btn-outline-brand {
  border: 1px solid rgba(59, 130, 246, 0.4) !important;
  color: var(--slate-300) !important;
  background: transparent !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  padding: 0.625rem 1.5rem !important;
  transition: all 0.2s ease-in-out;
}
.btn-outline-brand:hover {
  border-color: var(--brand-primary) !important;
  background: rgba(59, 130, 246, 0.1) !important;
  color: white !important;
}
#hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-glow-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 100%; max-width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.25);
  border-radius: 50%;
  filter: blur(100px);
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 100%; max-width: 400px;
  height: 400px;
  background: rgba(236, 72, 153, 0.20);
  border-radius: 50%;
  filter: blur(100px);
  transform: translateY(50%);
  pointer-events: none;
}
.hero-grid {
  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;
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--brand-primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
  animation: pulse 2s infinite;
}
#hero p{   color: var(--slate-400);
    font-size: 1.1rem;
    max-width: min(100%, 520px);
    line-height: 1.7;}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}
.hero-h1 .gradient-text {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-checks {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-400);
}
.hero-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  flex-shrink: 0;
}
.hero-rings-container {
  position: relative;
  width: 100%;
  max-width: min(100%, 480px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ring-1 {
  inset: 0;
  animation: spinCW 60s linear infinite;
}
.ring-2 {
  inset: 8%;
  animation: spinCCW 40s linear infinite;
}
.ring-3 {
  inset: 16%;
  animation: spinCW 20s linear infinite;
}
@keyframes spinCW {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinCCW {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.center-orb {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.4), rgba(15, 23, 42, 0.9));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.3), inset 0 0 20px rgba(139, 92, 246, 0.2);
  animation: pulseOrb 4s ease-in-out infinite;
  z-index: 10;
}
@keyframes pulseOrb {
  0%, 100% { box-shadow: 0 0 60px rgba(139, 92, 246, 0.3), inset 0 0 20px rgba(139, 92, 246, 0.2); transform: scale(1); }
  50% { box-shadow: 0 0 80px rgba(139, 92, 246, 0.5), inset 0 0 30px rgba(139, 92, 246, 0.4); transform: scale(1.02); }
}
.center-orb .orb-percent {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 10px rgba(139, 92, 246, 0.5);
  font-family: 'Inter', sans-serif;
  line-height: 1.1;
}
.center-orb .orb-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.iso-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 0.75rem;
  color: white;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
  z-index: 20;
  animation: badgeFloat 5s ease-in-out infinite;
}
.iso-badge:hover {
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
  z-index: 30;
}
.badge-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.6rem 1rem;
}
.badge-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(139,92,246,0.6));
}
.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.badge-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.badge-text span {
  font-size: 0.75rem;
  color: var(--slate-300);
  white-space: nowrap;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
.iso-badge-1 { top: 10%; left: 50%; translate: -50% -50%; animation-delay: 0s; }
.iso-badge-2 { top: 50%; right: 5%; translate: 50% -50%; animation-delay: 1.2s; }
.iso-badge-3 { bottom: 10%; left: 50%; translate: -50% 50%; animation-delay: 2.4s; }
.iso-badge-4 { top: 50%; left: 5%; translate: -50% -50%; animation-delay: 0.6s; }
#trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
  padding: 2rem 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  cursor: default;
  transition: transform 0.3s;
}
.trust-item:hover {
  transform: scale(1.08);
}
.trust-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  transition: background 0.3s, color 0.3s;
}
.trust-item:hover .trust-icon-wrap {
  background: var(--brand-accent);
  color: white;
}
.section {
  padding: 5rem 0;
}
.section-sm {
  padding: 3rem 0;
}
.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s;
}
.glass-card:hover .benefit-icon-wrap {
  background: rgba(255, 255, 255, 0.1);
}
.standard-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}
.standard-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: inherit;
}
.standard-card:hover .standard-card-bg {
  opacity: 1;
}
.standard-card .card-desc {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 0.4rem;
}
.standard-card:hover .card-desc {
  opacity: 1;
  transform: translateY(0);
}
.standard-card .card-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}
.standard-card:hover .card-footer-row {
  opacity: 1;
}
.standard-card .card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
  margin-bottom: 0.75rem;
}
.standard-card:hover .card-divider {
  transform: scaleX(1);
}
#process {
  background: rgba(15, 23, 42, 0.3);
}
.timeline-wrapper {
  position: relative;
  max-width: min(100%, 860px);
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 0;
}
@media (min-width: 768px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
}
.timeline-row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .timeline-row {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto;
  }
  .timeline-left {
    display: none;
  }
  .timeline-node-col {
    grid-column: 1;
    grid-row: 1;
  }
  .timeline-right {
    grid-column: 2;
    grid-row: 1;
    padding-left: 1.25rem;
  }
  .timeline-row.odd .timeline-right {
    display: block;
  }
  .timeline-row.even .timeline-right {
    display: block;
  }
  .timeline-row.even .timeline-left {
    display: none;
  }
}
.timeline-left {
  display: flex;
  justify-content: flex-end;
  padding-right: 2rem;
}
.timeline-node-col {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: relative;
}
.timeline-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--slate-900);
  border: 1px solid rgba(59, 130, 246, 0.5);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.25);
}
.timeline-right {
  padding-left: 2rem;
}
.timeline-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  width: 100%;
  transition: border-color 0.3s;
}
.timeline-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}
.timeline-row.odd .timeline-left {
  display: flex;
}
.timeline-row.odd .timeline-right {
  visibility: hidden;
  pointer-events: none;
}
.timeline-row.even .timeline-left {
  visibility: hidden;
  pointer-events: none;
}
.timeline-row.even .timeline-right {
  display: block;
}
@media (max-width: 767px) {
  .timeline-row.odd .timeline-right {
    visibility: visible;
    pointer-events: auto;
  }
  .timeline-row.odd .timeline-left {
    display: none;
  }
  .timeline-row.even .timeline-left {
    display: none;
  }
  .timeline-row.even .timeline-right {
    visibility: visible;
    pointer-events: auto;
  }
}
#testimonials {
  background: rgba(2, 6, 23, 0.6);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--brand-primary);
  border-radius: 1rem;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 6rem;
  color: var(--brand-primary);
  opacity: 0.08;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-card:hover {
  border-left-color: var(--brand-accent);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}
.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--brand-gold);
}
.testi-text {
  color: var(--slate-300);
  font-size: 0.9rem;
  line-height: 1.8;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
  line-height: 1.2;
}
.testi-role {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 2px;
}
.testi-iso-badge {
  margin-left: auto;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: monospace;
  background: rgba(59, 130, 246, 0.12);
  color: var(--brand-primary);
  border: 1px solid rgba(59, 130, 246, 0.2);
  white-space: nowrap;
  align-self: flex-start;
}
.stat-card {
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--slate-300);
}
.check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 120px;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background 0.3s;
  cursor: default;
}
.industry-item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: background 0.3s, color 0.3s;
}
.industry-item:hover .industry-icon {
  background: var(--brand-primary);
  color: white;
}
#final-cta {
  padding: 6rem 0;
}
.cta-box {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
}
footer {
  background: linear-gradient(180deg, #020617 0%, #071226 100%);
  padding: 70px 20px 30px;
  color: #94a3b8;
}
.footer-container {
  max-width: min(100%, 1200px);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 50px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 20px;
  align-self: flex-start;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: min(100%, 280px);
  margin: 0;
}
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
  position: relative;
}
.footer-heading::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #22c55e;
  border-radius: 2px;
  margin-top: 6px;
  display: block;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  color: #94a3b8;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-link:hover {
  color: #22c55e;
  padding-left: 5px;
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}
.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-divider {
  height: 1px;
  background-color: #1e293b;
  margin: 40px 0 20px;
  border: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.footer-bottom-text {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 30px;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 50px 20px 20px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    row-gap: 30px;
    column-gap: 15px;
  }
  .footer-col:nth-child(1),
  .footer-col:nth-child(4) {
    grid-column: span 2;
  }
  .footer-col {
    align-items: flex-start;
  }
  .footer-heading::after {
    margin: 6px 0 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
  }
  .footer-desc {
    font-size: 13px;
    max-width: 100%;
  }
}
.form-control-dark {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0.5rem !important;
  color: white !important;
  padding: 0.75rem 1rem !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.form-control-dark:focus {
  outline: none !important;
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0 0 1px var(--brand-primary) !important;
  background: rgba(255, 255, 255, 0.07) !important;
}
.form-control-dark::placeholder {
  color: var(--slate-500) !important;
}
.form-control-dark option {
  background: #0f172a;
  color: white;
}
.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
  transition: background 0.3s, color 0.3s;
}
.glass-card:hover .service-icon-wrap {
  background: var(--brand-primary);
  color: white;
}
.std-tab-btn {
  padding: 0.4rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.05);
  color: var(--slate-400);
}
.std-tab-btn.active {
  background: var(--brand-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}
.std-tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.std-tab-panel {
  display: none;
}
.std-tab-panel.active {
  display: block;
  animation: fadeInUp 0.3s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.validity-badge {
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: var(--slate-400);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}
.core-val-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}
.core-val-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.val-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-300);
  margin-bottom: 1rem;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.notice-warning {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 0.5rem;
  color: #fde68a;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  text-align: center;
}
.map-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 260px;
  filter: grayscale(1);
  transition: filter 0.5s;
}
.map-container:hover {
  filter: grayscale(0);
}
.contact-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.skew-bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 500px;
  background: rgba(59, 130, 246, 0.04);
  transform: skewY(-3deg) translateY(-50%);
  z-index: 0;
}
.testi-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.testi-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  padding: 1.5rem 0.5rem 2.5rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.testi-track::-webkit-scrollbar {
  display: none;
}
.testi-slide {
  flex: 0 0 calc(50% - 1rem);
  scroll-snap-align: start;
}
@media (max-width: 991px) {
  .testi-slide {
    flex: 0 0 calc(85% - 1rem);
    min-width: 0;
  }
  .testi-slider-wrapper {
    gap: 0;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  .testi-arrow {
    display: none !important;
  }
  .testi-track {
    gap: 1rem;
    padding: 0.5rem 0.5rem 1.5rem;
  }
  .testimonial-card {
    padding: 1.25rem;
    gap: 0.75rem;
  }
  .testimonial-card::before {
    font-size: 4rem;
    top: -5px;
    right: 10px;
  }
  .testi-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  .testi-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .testi-name {
    font-size: 0.85rem;
  }
  .testi-role {
    font-size: 0.7rem;
  }
  .testi-iso-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
  }
  .testi-stars {
    gap: 2px;
  }
  .testi-stars i {
    width: 14px !important;
    height: 14px !important;
  }
}
@media (max-width: 767px) {
  .testi-slide {
    flex: 0 0 92%;
  }
  .testi-track {
    gap: 0.75rem;
    padding: 0.5rem 0.25rem 1rem;
  }
  .testimonial-card {
    padding: 1rem;
    gap: 0.5rem;
  }
  .testimonial-card::before {
    font-size: 3rem;
  }
  .testi-text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .testi-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  .testi-name {
    font-size: 0.75rem;
  }
  .testi-role {
    font-size: 0.65rem;
  }
  .testi-iso-badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.35rem;
  }
  .testi-stars i {
    width: 12px !important;
    height: 12px !important;
  }
  #testimonials h2 {
    font-size: 1.5rem !important;
  }
  #testimonials p.text-slate-400 {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }
}
.testi-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  z-index: 10;
}
.testi-arrow:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.4);
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.testi-dot.active {
  background: var(--brand-primary);
  transform: scale(1.35);
}
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}
.floating_btn a{text-decoration: none}
@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}
.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}
.text_icon {
  color: #fff;
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.3s ease;
}
.floating_btn:hover .text_icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
h1, .display-4, .hero-title {
  font-size: calc(1.5rem + 2vw) !important;
  line-height: 1.2 !important;
}
h2, .display-5, .gradient-heading, .section-title {
  font-size: calc(1.3rem + 1.5vw) !important;
  line-height: 1.3 !important;
}
h3, .hero-subtitle {
  font-size: calc(1.2rem + 1vw) !important;
}
h4 {
  font-size: calc(1.1rem + 0.5vw) !important;
}
p {
  font-size: 1rem;
}
.container {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
section, .section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card, .glass-card, .dashboard-card, .testimonial-card, .core-val-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card > *:last-child, .glass-card > *:last-child, .dashboard-card > *:last-child {
  margin-top: auto;
}
input, textarea, select, .form-control {
  width: 100% !important;
  max-width: 100%;
  font-size: 16px !important; 
}
.btn {
  white-space: normal;
  text-align: center;
  word-wrap: break-word;
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }
  .navbar-actions {
    flex-direction: column;
    width: 100%;
  }
  .navbar-actions .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.text_icon {
  color: #fff;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  position: absolute;
  top: 60px;
  right: 0;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.floating_btn:hover .text_icon {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  html {
    font-size: 14px !important;
  }
  h1, .display-4, .hero-title {
    font-size: calc(1.3rem + 1vw) !important;
  }
  h2, .display-5, .gradient-heading, .section-title {
    font-size: calc(1.15rem + 1vw) !important;
  }
  h3, .hero-subtitle {
    font-size: calc(1.05rem + 1vw) !important;
  }
  h4 {
    font-size: calc(0.95rem + 0.5vw) !important;
  }
  p, .text-slate-400, .text-slate-300, .text-slate-500 {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }
  section, .section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  #hero {
    padding-top: 8rem !important;
  }
  .btn {
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
  }
  .hero-badge {
    font-size: 0.75rem !important;
    padding: 0.35rem 0.8rem !important;
  }
  .navbar-brand img {
    height: 22px !important;
  }
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .floating_btn {
    bottom: 15px !important;
    right: 15px !important;
    width: 60px !important;
    height: 60px !important;
  }
  .contact_icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 24px !important;
  }
  .glass-card {
    padding: 1rem !important;
  }
  .glass-card h3 {
    font-size: 1.15rem !important;
  }
  .glass-card h5 {
    font-size: 0.95rem !important;
    margin-bottom: 0.35rem !important;
  }
  .glass-card p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }
  .glass-card li span {
    font-size: 0.8rem !important;
  }
  .glass-card li i {
    width: 14px !important;
    height: 14px !important;
    margin-right: 6px !important;
  }
  .benefit-icon-wrap {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 0.75rem !important;
  }
  .benefit-icon-wrap i {
    width: 18px !important;
    height: 18px !important;
  }
  #trust-strip {
    padding: 1rem 0 !important;
  }
  #trust-strip .row {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  #trust-strip .row::-webkit-scrollbar {
    display: none;
  }
  #trust-strip .col {
    flex: 0 0 auto;
    width: 120px;
  }
  .trust-item {
    gap: 0.35rem;
  }
  .trust-icon-wrap {
    width: 40px !important;
    height: 40px !important;
  }
  .trust-icon-wrap span {
    font-size: 18px !important;
  }
  .trust-item span.text-slate-300 {
    font-size: 0.75rem !important;
  }
  #industries-list {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }
  #industries-list::-webkit-scrollbar {
    display: none;
  }
  #industries-list .industry-item {
    flex: 0 0 auto;
    width: 140px;
  }
}
