  :root {
      --bg-dark: #0d335d;
      --bg-section: #154a7a;
      --bg-card: #0e3b6b;
      --bg-card-hover: #1a4d82;
      --surface: #1a4d82;
      --border: #2c5a8c;
      --text-primary: #0d335d;
      --text-secondary: #d4e3fc;
      --text-muted: #b2c1da;
      --brand-green: #18bcf3;
      --brand-green-dark: #0089b1;
      --brand-green-glow: rgba(24,188,243,0.12);
      --brand-blue: #0d335d;
      --white: #FFFFFF;
      --radius: 8px;
      --radius-lg: 12px;
      --radius-xl: 16px;
      --max-w: 1200px;
      --font: 'Raleway', 'DM Sans', 'Inter', -apple-system, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { 
      font-family: var(--font); 
      background: #f6f9ff; 
      color: var(--text-primary); 
      -webkit-font-smoothing: antialiased; 
  }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══ UTILITY ═══ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-section); }
.text-green { color: var(--brand-green); }
.text-muted { color: var(--text-secondary); }

/* ═══ STICKY NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,51,93,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: center;
}
.nav-inner {
  max-width: var(--max-w); width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { height: 28px; }
.nav-logo img { height: 28px; width: auto; }
.nav-cta {
  background: var(--brand-green); color: var(--bg-dark);
  font-size: 13px; font-weight: 600; padding: 8px 20px;
  border-radius: 6px; border: none; cursor: pointer;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--brand-green-dark); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 13px; color: var(--text-secondary); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--brand-green); }

/* ═══ HERO ═══ */
.hero {
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(24,188,243,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(24,188,243,0.12); border: 1px solid rgba(24,188,243,0.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: var(--brand-green);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--brand-green); border-radius: 50%;
}
.hero h1 {
  font-size: 44px; font-weight: 700; line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--brand-green); }
.hero-sub {
  font-size: 17px; color:#272626; line-height: 1.65;
  margin-bottom: 28px; max-width: 520px;
}
.hero-stats {
  display: flex; gap: 36px; margin-bottom: 32px;
}
.hero-stat { text-align: left; }
.hero-stat .num {
  font-size: 32px; font-weight: 700; color: var(--brand-green);
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
.hero-stat .label {
  font-size: 12px; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 1px; margin-top: 2px;
}
.hero-certs {
  display: flex; gap: 20px; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.hero-certs img { height: 32px; opacity: 0.7; }
.hero-certs span { font-size: 12px; color: var(--text-muted); }

/* ═══ LEAD FORM ═══ */
.lead-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  position: relative;
}
.lead-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-blue));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.lead-form h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 4px;
  color: #fff;
}
.lead-form .form-sub {
  font-size: 13px; color: var(--text-muted); margin-bottom: 24px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 5px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px;
  /* background: var(--bg-dark); */
   border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-primary);
  font-family: var(--font); font-size: 14px;
  transition: border 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--brand-green);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 60px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--brand-green); color: var(--bg-dark);
  font-family: var(--font); font-size: 15px; font-weight: 700;
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: background 0.2s; margin-top: 8px;
}
.form-submit:hover { background: var(--brand-green-dark); }
.form-privacy {
  font-size: 11px; color: var(--text-muted); text-align: center;
  margin-top: 12px; line-height: 1.5;
}

/* ═══ TRUSTED BY ═══ */
.trust-section { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-label {
    font-size: 32px; 
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 28px; 
    font-weight: 700;
}
.logo-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 32px 40px; align-items: center;
}
.logo-grid .client-logo {
  height: 24px; 
  /* opacity: 0.55;
   filter: grayscale(100%) brightness(1.2); */
  transition: opacity 0.3s;
}
.logo-grid .client-logo:hover { opacity: 0.9; filter: none; }

/* ═══ SOLUTIONS GRID ═══ */
.solutions-head { text-align: center; margin-bottom: 48px; }
.solutions-head h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.solutions-head p { font-size: 16px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.sol-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.sol-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s ease;
}
.sol-card:hover { 
  border-color: var(--brand-green); 
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -15px rgba(0,0,0,0.2);
}
.sol-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(24,188,243,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px; color: var(--brand-green);
}
.sol-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: #FFFFFF; }
.sol-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ═══ PROCESS ═══ */
.process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  margin-top: 48px;
}
.process-step {
  text-align: center; padding: 24px 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--brand-green);
}
.process-step .step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand-green); color: var(--bg-dark);
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  transition: all 0.3s ease;
}
.process-step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(24,188,243,0.5);
}
.process-step h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: #FFFFFF; }
.process-step p { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ═══ BRANDS / PARTNERS ═══ */
.brands-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 40px; align-items: center; margin-top: 32px;
}
.brands-row .brand-logo {
  height: 28px; 
  /* opacity: 0.6; */
   /* filter: grayscale(100%) brightness(1.2); */
  transition: all 0.3s;
}
.brands-row .brand-logo:hover { opacity: 1; filter: none; transform: scale(1.05); }

/* ═══ WHY RESURGENT - ENHANCED DESIGN ═══ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.why-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  border: 1px solid rgba(24,188,243,0.2);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: var(--brand-green);
  box-shadow: 0 25px 40px -20px rgba(24,188,243,0.3);
}

.why-card .why-num {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  line-height: 1;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.why-card:hover .why-num {
  opacity: 1;
  transform: scale(1.05);
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
  position: relative;
  display: inline-block;
}

.why-card h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  transition: width 0.3s ease;
}

.why-card:hover h4::after {
  width: 100%;
}

.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-top: 12px;
}

/* Add icon decoration for why cards */
.why-card::after {
  content: '✦';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 24px;
  color: rgba(24,188,243,0.1);
  transition: all 0.3s ease;
}

.why-card:hover::after {
  color: rgba(24,188,243,0.3);
  transform: rotate(15deg) scale(1.1);
}

/* ═══ CTA BANNER - ENHANCED DESIGN ═══ */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* Animated background effect */
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(24,188,243,0.05) 0%, transparent 70%);
  animation: rotateBg 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Floating particles effect */
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 40%, rgba(24,188,243,0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(24,188,243,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-banner h2 span {
  color: var(--brand-green);
  position: relative;
  display: inline-block;
}

.cta-banner h2 span::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(24,188,243,0.3);
  z-index: -1;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
  color: var(--bg-dark);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(24,188,243,0.3);
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(24,188,243,0.5);
  color: var(--bg-dark);
}

.cta-btn:hover::before {
  left: 100%;
}

/* Pulse animation for CTA button */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 5px 20px rgba(24,188,243,0.3);
  }
  50% {
    box-shadow: 0 5px 30px rgba(24,188,243,0.5);
  }
}

.cta-btn {
  animation: pulse 2s infinite;
}

.cta-btn:hover {
  animation: none;
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 40px 0 24px; border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-left { display: flex; align-items: center; gap: 16px; }
.footer-left img { height: 22px; }
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-green); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .cta-banner h2 { font-size: 32px; }
  .cta-banner p { font-size: 16px; }
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 24px; }
  .cta-banner { padding: 60px 0; }
  .cta-banner h2 { font-size: 28px; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .sol-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .cta-banner h2 { font-size: 24px; }
  .cta-banner p { font-size: 14px; }
  .cta-btn { padding: 12px 32px; font-size: 14px; }
}

/* ═══ ANIMATED COUNTER STYLES ═══ */
.counter-number {
  display: inline-block;
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


