
  :root {
    --green: #2c6ed6;
    --green-dark: #1c2e4a;
    --green-light: #e0e2e6;
    --navy: #1a2b3c;
    --navy-light: #253d54;
    --blue-dot: #3a7fc1;
    --gray: #f5f7fa;
    --gray-mid: #e8ecf1;
    --text: #1a2b3c;
    --muted: #5a6a7a;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(26,43,60,0.10);
    --shadow-lg: 0 12px 48px rgba(26,43,60,0.16);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: "Montserrat", Arial, sans-serif;  color: var(--text); background: #fff; overflow-x: hidden; }
  h1,h2,h3,h4 { font-family: "Montserrat", Arial, sans-serif; }
  a { text-decoration: none !important; color: inherit; }
  img { max-width: 100%; display: block; }

  @media(min-width: 768px) {
    p{ font-size: 1rem !important; } 
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-mid);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .nav-logo img { height: 90px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .2s; }
  .nav-links a:hover { color: var(--green); }
  .nav-cta {
    background: var(--green); color: #fff !important; padding: 10px 22px;
    border-radius: 8px; font-size: 14px; font-weight: 600;
    transition: background .2s, transform .15s;
  }
  .nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
  .nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
  
  
  /*.mobile-menu {*/
  /*  display: none; position: fixed; top: 72px; left: 0; right: 0;*/
  /*  background: #fff; border-bottom: 1px solid var(--gray-mid);*/
  /*  padding: 24px 5%; flex-direction: column; gap: 16px; z-index: 99;*/
  /*}*/
  /*.mobile-menu.open { display: flex; }*/
  /*.mobile-menu a { font-size: 16px; font-weight: 500; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--gray-mid); }*/
  
  
  /* MOBILE MENU - DRAWER */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: -100%;
  width: 78%; max-width: 300px;
  height: 100vh;
  background: #0d1b2e;
  z-index: 98;
  transition: left 1s cubic-bezier(0.77, 0, 0.175, 1);
  flex-direction: column;
  padding-top: 72px;
  overflow-y: auto;
}
.mobile-menu.open {
  left: 0;
}
/* overlay behind drawer */
.mobile-menu::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: -1;
  pointer-events: none;
  transition: background 0.4s ease;
}
.mobile-menu.open::before {
  background: rgba(0,0,0,0.5);
  pointer-events: all;
}
/* green shimmer top accent */
.mobile-menu::after {
  content: '';
  position: absolute;
  top: 72px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #00c8b0, var(--green));
  background-size: 200% 100%;
  animation: mm-shimmer 2.5s linear infinite;
}
@keyframes mm-shimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-left: 3px solid transparent;
  border-bottom: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.22s ease, border-color 0.22s ease;
}
.mobile-menu a::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: rgba(22,163,74,0.08);
  transition: width 0.3s ease;
}
.mobile-menu a:hover::before { width: 100%; }
.mobile-menu a:hover {
  color: #fff;
  border-left-color: var(--green);
}

.mm-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.22s, transform 0.22s cubic-bezier(.34,1.56,.64,1);
}
.mobile-menu a:hover .mm-icon {
  background: rgba(22,163,74,0.2);
  transform: scale(1.12);
}

.mm-arrow {
  margin-left: auto;
  font-size: 18px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s, transform 0.22s;
}
.mobile-menu a:hover .mm-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mm-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 8px 20px;
}

.mm-cta {
  margin: 4px 20px !important;
  padding: 13px 20px !important;
  background: var(--green);
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  justify-content: center !important;
  border-left: none !important;
  transition: background 0.2s, transform 0.15s !important;
}
.mm-cta::before { display: none !important; }
.mm-cta:hover {
  background: var(--green-dark) !important;
  transform: scale(0.97) !important;
  border-left-color: transparent !important;
}

/* SOCIAL */
.mm-social { padding: 16px 24px 28px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: auto; }
.mm-social-label { font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 12px; }
.mm-social-icons { display: flex; gap: 10px; }
.mm-social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, transform 0.25s cubic-bezier(.34,1.56,.64,1), color 0.22s;
}
.mm-social-btn:hover { transform: translateY(-4px) scale(1.1); color: #fff; }
.mm-fb:hover  { background: #1877F2; border-color: #1877F2; }
.mm-tw:hover  { background: #1DA1F2; border-color: #1DA1F2; }
.mm-li:hover  { background: #0A66C2; border-color: #0A66C2; }
.mm-ig:hover  { background: #E1306C; border-color: #E1306C; }
.mm-yt:hover  { background: #FF0000; border-color: #FF0000; }

/* Show on mobile only */
@media (max-width: 768px) {
  .mobile-menu { display: flex; }
}
 .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle span { transition: all 0.35s cubic-bezier(0.77,0,0.175,1); transform-origin: center; }
  

  /* HERO */
  .hero {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, #f0f8eb 0%, #e8f4f8 50%, #f5f7fa 100%);
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(93,181,66,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(58,127,193,0.10) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); border: 1px solid var(--green);
    color: var(--green-dark); padding: 6px 16px; border-radius: 100px;
    font-size: 19px; font-weight: 600; margin-bottom: 24px;
  }
  .hero-badge::before { content: '🍁'; font-size: 14px; }
  .hero h1 { font-size: clamp(36px, 4vw, 48px); line-height: 1.1; color: var(--navy); margin-bottom: 24px; font-weight: 700; }
  .hero h1 span { color: var(--green); }
  .hero p { font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--green); color: #fff; padding: 14px 28px;
    border-radius: 10px; font-size: 15px; font-weight: 600;
    transition: all .2s; border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(93,181,66,0.35); }
  .btn-outline {
    background: transparent; color: var(--navy); padding: 14px 28px;
    border-radius: 10px; font-size: 15px; font-weight: 600;
    border: 2px solid var(--navy); transition: all .2s; cursor: pointer;
  }
  .btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
  .hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
  .stat { text-align: center; }
  .stat-num { font-size: 28px; font-weight: 800; color: var(--green); font-family: "Montserrat", Arial, sans-serif; }
  .stat-label { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 2px; }
  .hero-visual { position: relative; }
  .hero-card {
    background: #fff; border-radius: var(--radius-lg); padding: 28px;
    /*box-shadow: var(--shadow-lg); */
    margin-bottom: 16px;
    border: 1px solid var(--gray-mid);
  }
  .hero-card-title { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
  .metric-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
  .metric-label { font-size: 14px; color: var(--text); }
  .metric-bar-wrap { flex: 1; margin: 0 12px; height: 8px; background: var(--gray); border-radius: 4px; overflow: hidden; }
  .metric-bar { height: 100%; border-radius: 4px; background: var(--green); }
  .metric-val { font-size: 13px; font-weight: 700; color: var(--green); min-width: 36px; text-align: right; }
  .floating-badge {position: absolute; right: -20px; top: -16px;background: var(--navy); color: #fff;padding: 10px 16px; border-radius: 10px;font-size: 13px; font-weight: 600;box-shadow: var(--shadow);z-index: 1;}
  .floating-badge span { color: var(--green); font-size: 18px; font-weight: 800; display: block; }
  .ai-tag {
    position: absolute; left: -16px; bottom: 60px;
    background: var(--green); color: #fff;
    padding: 8px 14px; border-radius: 8px;
    font-size: 12px; font-weight: 700;
    box-shadow: 0 4px 16px rgba(93,181,66,0.4);
  }

  /* SECTION COMMON */
  section { padding: 80px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-tag {
    display: inline-block; background: var(--green-light); color: var(--green-dark);
    padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px;
  }
  .section-title { font-size: clamp(28px, 3vw, 38px); color: var(--navy); margin-bottom: 16px; line-height: 1.15; font-weight: 700; }
  .section-title span { color: var(--green); }
  .section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 600px; }
  .section-head { text-align: center; margin-bottom: 56px; }
  .section-head .section-sub { margin: 0 auto; }

  /* TRUST BAR */
  /*.trust-bar { background: var(--navy); padding: 24px 5%; }*/
  /*.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }*/
  /*.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; }*/
  /*.trust-icon { width: 28px; height: 28px; background: rgba(93,181,66,0.25); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; }*/

  /* SERVICES */
  .services { background: var(--gray); }
  .services-grid { 
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
 }
  .service-card {
    background: #fff; border-radius: var(--radius-lg); padding: 32px;
    border: 1px solid var(--gray-mid); transition: all .3s;
    position: relative; overflow: hidden; max-width: 380px;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--green); transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: var(--green-light); display: flex; align-items: center;
    justify-content: center; font-size: 22px; margin-bottom: 20px;
  }
  .service-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
  .service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
  .service-link { color: var(--green); font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
  .service-link::after { content: '→'; transition: transform .2s; }
  .service-card:hover .service-link::after { transform: translateX(4px); }

  /* WHY US */
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .why-features { display: grid; gap: 20px; }
  .why-item { display: flex; gap: 16px; align-items: flex-start; }
  .why-check {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--green); display: flex; align-items: center;
    justify-content: center; color: #fff; font-size: 16px; flex-shrink: 0;
  }
  .why-item h4 { font-size: 16px; color: var(--navy); margin-bottom: 4px; }
  .why-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }
  .why-visual { background: var(--navy); border-radius: var(--radius-lg); padding: 36px; color: #fff; }
  .why-visual h3 { font-size: 24px; margin-bottom: 8px; }
  .why-visual p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 28px; }
  .process-steps { display: flex; flex-direction: column; gap: 16px; }
  .process-step { display: flex; align-items: center; gap: 14px; }
  .step-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800; font-family: "Montserrat", Arial, sans-serif; flex-shrink: 0;
  }
  .step-text { font-size: 14px; font-weight: 500; }

  /* GEO/AEO */
  .geo { background: linear-gradient(135deg, var(--navy) 0%, #0f1e2d 100%); color: #fff; }
  .geo .section-title { color: #fff; }
  .geo .section-sub { color: rgba(255,255,255,0.65); }
  .geo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
  .geo-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg); padding: 28px; transition: all .3s;
  }
  .geo-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-3px); }
  .geo-card-icon { font-size: 28px; margin-bottom: 16px; }
  .geo-card h3 { font-size: 18px; color: #fff; margin-bottom: 8px; }
  .geo-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }
  .geo-tag { display: inline-block; background: rgba(93,181,66,0.2); color: var(--green); padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; margin-top: 12px; }

  /* INDUSTRIES */
  .industries { background: var(--gray); }
  .industries-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
  .industry-card {
    background: #fff; border-radius: var(--radius); padding: 24px 16px; min-width: 150px;
    text-align: center; border: 1px solid var(--gray-mid); transition: all .2s; cursor: pointer;
  }
  .industry-card:hover { border-color: var(--green); background: var(--green-light); transform: translateY(-2px); }
  .industry-icon { font-size: 28px; margin-bottom: 10px; }
  .industry-card span { font-size: 13px; font-weight: 600; color: var(--navy); }

  /* CASE STUDIES */
  .cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
  .case-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--gray-mid); transition: all .3s;
  }
  .case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
  .case-header {
    padding: 28px 28px 20px; background: linear-gradient(135deg, var(--green-light), #e8f4ff);
    position: relative;
  }
  .case-badge {
    display: inline-block; background: var(--green); color: #fff;
    padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700;
    margin-bottom: 12px; text-transform: uppercase;
  }
  .case-header h3 { font-size: 20px; color: var(--navy); }
  .case-body { padding: 24px 28px; }
  .case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
  .case-metric { text-align: center; }
  .case-metric-val { font-size: 22px; font-weight: 800; color: var(--green); font-family: "Montserrat", Arial, sans-serif; }
  .case-metric-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; }
  .case-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* TESTIMONIALS */
  .testimonials { background: var(--gray); }
  .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
  .testi-card {
    background: #fff; border-radius: var(--radius-lg); padding: 28px;
    border: 1px solid var(--gray-mid);
  }
  .testi-stars { color: #f59e0b; font-size: 16px; margin-bottom: 16px; }
  .testi-card p { font-size: 15px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; }
  .testi-name { font-weight: 700; font-size: 14px; color: var(--navy); }
  .testi-role { font-size: 12px; color: var(--muted); }

  /* CANADA */
  .canada { background: var(--navy); color: #fff; }
  .canada .section-title { color: #fff; }
  .canada-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .canada-features { display: grid; gap: 20px; }
  .canada-item { display: flex; gap: 14px; align-items: flex-start; }
  .canada-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-top: 6px; flex-shrink: 0; }
  .canada-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
  .canada-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
  .canada-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg); padding: 32px;
  }
  .canada-card h3 { font-size: 22px; margin-bottom: 20px; }
  .contact-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: rgba(255,255,255,0.8); font-size: 14px; }
  .contact-icon { font-size: 18px; }
  .canada-cta { margin-top: 24px; }
  .btn-green-outline {
    border: 2px solid var(--green); color: var(--green); background: transparent;
    padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: all .2s;
  }
  .btn-green-outline:hover { background: var(--green); color: #fff; }

  /* BLOG */
  .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
  .blog-card {
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--gray-mid); transition: all .3s; background: #fff;
  }
  .blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
  .blog-img {
    height: 180px; display: flex; align-items: center; justify-content: center;
    font-size: 48px;
  }
  .blog-body { padding: 24px; }
  .blog-tag { display: inline-block; background: var(--green-light); color: var(--green-dark); padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; margin-bottom: 12px; }
  .blog-body h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
  .blog-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
  .blog-meta { font-size: 12px; color: var(--muted); }

  /* CTA SECTION */
  .cta-section {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 80px 5%; text-align: center; color: #fff;
  }
  .cta-section h2 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 16px; }
  .cta-section p { font-size: 18px; opacity: .85; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-white { background: #fff; color: var(--green-dark); padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 700; transition: all .2s; }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .btn-white-outline { background: transparent; border: 2px solid rgba(255,255,255,0.7); color: #fff; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s; }
  .btn-white-outline:hover { background: rgba(255,255,255,0.15); }

  /* CONTACT */
  .contact-section { background: var(--gray); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
  .contact-info h2 { font-size: 32px; color: var(--navy); margin-bottom: 16px;    font-size: 38px;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: 700; }
  .contact-info p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
  .contact-details { display: grid; gap: 16px; }
  .contact-detail { display: flex; gap: 12px; align-items: flex-start; }
  .contact-detail-icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .contact-detail h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
  .contact-detail p { font-size: 13px; color: var(--muted); }
  .contact-form { background: #fff; border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--gray-mid); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-mid);
    border-radius: 8px; font-family: "Montserrat", Arial, sans-serif;;
    font-size: 14px; color: var(--text); transition: border-color .2s;
    background: #fff;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--green);
  }
  .form-group textarea { height: 120px; resize: vertical; }
  .form-submit { width: 100%; }

  /* FOOTER */
  /*footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 64px 5% 32px; }*/
  /*.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }*/
  /*.footer-brand img { height: 105px;width: auto; }*/
  /*.footer-brand p { font-size: 14px; line-height: 1.7; }*/
  /*.footer-col h4 { font-family: "Montserrat", Arial, sans-serif; font-size: 15px; color: #fff; margin-bottom: 16px; }*/
  /*.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding-left: 0; }*/
  /*.footer-col ul li a { font-size: 1rem; transition: color .2s; }*/
  /*.footer-col ul li a:hover { color: var(--green); }*/
  /*.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }*/
  /*.footer-bottom p { font-size: 13px; }*/
  /*.footer-social { display: flex; gap: 12px; }*/
  /*.social-btn { width: 34px; height: 34px; border-radius: 6px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background .2s; color: white;}*/
  /*.social-btn:hover { background: var(--green); }*/
  /*.footer-col ul li a { color: rgba(255,255,255,0.75); }*/
  
  /* FOOTER */
footer {
  background: linear-gradient(160deg, #0a1628 0%, #0d1f38 40%, #0a2818 100%);
  color: rgba(255,255,255,0.7);
  padding: 72px 5% 0;
  position: relative;
  overflow: hidden;
}

/* subtle radial glow top-right */
footer::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(22,163,74,0.09) 0%, transparent 70%);
  pointer-events: none;
}
/* subtle radial glow bottom-left */
footer::after {
  content: '';
  position: absolute;
  bottom: 60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,200,176,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand img { height: 105px; width: auto; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }

/* SOCIAL ICONS */
.footer-social { display: flex; gap: 10px; }
.fsoc-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.28s cubic-bezier(.34,1.56,.64,1);
}
.fsoc-btn:hover { color: #fff; transform: translateY(-4px) scale(1.1); }
.fsoc-li:hover { background: #0A66C2; border-color: #0A66C2; }
.fsoc-tw:hover { background: #1DA1F2; border-color: #1DA1F2; }
.fsoc-fb:hover { background: #1877F2; border-color: #1877F2; }
.fsoc-ig:hover { background: #E1306C; border-color: #E1306C; }

/* COLUMN HEADINGS */
.footer-col h4 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fcol-accent {
  display: inline-block;
  width: 18px; height: 3px;
  background: linear-gradient(90deg, var(--green), #00c8b0);
  border-radius: 2px;
  flex-shrink: 0;
}

/* FOOTER LINKS */
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 6px 0;
  border-radius: 6px;
  transition: color 0.22s, gap 0.22s, padding-left 0.22s;
}
.footer-col ul li a:hover {
  color: #00aae7;
  gap: 12px;
  padding-left: 4px;
}

/* arrow icon */
.flink-icon {
  width: 13px; height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.22s, transform 0.22s;
}
.footer-col ul li a:hover .flink-icon {
  opacity: 1;
  transform: translateX(3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #4ade80; }
.footer-bottom-links span { color: rgba(255,255,255,0.2); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .fade-up { animation: fadeUp .6s ease forwards; }
  .fade-up-2 { animation: fadeUp .6s .15s ease both; }
  .fade-up-3 { animation: fadeUp .6s .3s ease both; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .hero-inner, .why-grid, .canada-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
  }




  /* ABout */
:root {
    --deep-navy: #0a1d3d;
    --royal: #0066ff;
    --cyan: #00b0ff;
    --slate: #6b7280;
    --ink: #111827;
    --navy: var(--deep-navy);
    --muted: var(--slate);
    --line: #e4e7ec;
    --soft: #f5f9ff;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(10, 29, 61, 0.12);
}

.btn-red{
  background: linear-gradient(135deg, var(--royal), var(--cyan));
}
.service-card i,
.mini-card i,
.industry-card i {
    color: var(--red);
}



.soft-bg {
    background: linear-gradient(180deg, #fff, var(--soft));
}






.mini-card,
.service-card,
.choice-panel,
.industries-box,
.industry-card,
.case-card,
.testimonial-shell {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.055);
}

.mini-card {
    min-height: 132px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 16px 10px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-card i,
.industry-card i {
    font-size: 2rem;
    color: var(--royal);
}
p.section-kicker {
    font-weight: 600;
    color: var(--royal);
}
.mini-card span,
.industry-card {
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
}
#about h2, .section-title{
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
}
.image-stat-panel {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(7, 23, 47, 0.18)),
        url("https://images.unsplash.com/photo-1517935706615-2717063c2225?auto=format&fit=crop&w=1400&q=80") center / cover;
    box-shadow: var(--shadow);
}

.stat-stack {
    position: absolute;
    top: 28px;
    right: 18px;
    bottom: 28px;
    width: min(250px, calc(100% - 36px));
    display: grid;
    color: var(--white);
    background: rgba(7, 23, 47, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.stat-stack div {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-content: center;
    gap: 0 10px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-stack div:last-child {
    border-bottom: 0;
}

.stat-stack i {
    grid-row: span 2;
    align-self: center;
    font-size: 1.8rem;
}

.stat-stack strong {
    font-size: 1.78rem;
    line-height: 1;
}

.stat-stack strong[data-count]::after {
    content: "+";
}

.stat-stack div:nth-child(2) strong::after {
    content: "%";
}
.stat-stack div:nth-child(3) strong::after {
    content: "%";
}

.stat-stack span {
    font-size: 0.74rem;
}

.service-card {
    min-height: 214px;
    height: 100%;
    padding: 22px 17px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card.compact {
    min-height: 178px;
}

.service-card i {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 1.6rem;
    transition: transform 0.22s ease;
    color:#4072f9;
}

.service-card p {
    margin: 0;
    font-size: 0.8rem;
}

.service-card:hover,
.mini-card:hover,
.industry-card:hover,
.case-card:hover {
    /* border-color: rgba(229, 9, 20, 0.35); */
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.service-card:hover i,
.industry-card:hover i {
    transform: scale(1.08) rotate(-4deg);
}


  /* ABout */

  .font-700{
    font-weight: 700;
  }
  
  @media(max-width: 768px){
      .hero h1 {
            font-size: clamp(31px, 4vw, 48px);
           
        }
        .nav-logo img {
            height: 80px;
            
        }
  }
  
  .services-grid .service-card:nth-child(7) {
        grid-column: 2;
    }
    
    
    
    
    
    
.trust-strip {
    position: relative;
    z-index: 3;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.trust-item {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 12px !important;
    color: var(--navy);
    border-right: 1px solid var(--line);
    font-size: 15px;
    font-weight: 600;
}

.trust-item p{
    margin-bottom: 0px;
}
.trust-item:last-child {
    border-right: 0;
}

.trust-item i
 {
    color: var(--royal);
    font-size: 1.4rem;
}



@media (max-width: 991.98px) {


    .trust-item {
        border-bottom: 1px solid #e4e7ec;
        flex-direction: column;
    }
    .trust-item:nth-child(2),
    .trust-item:nth-child(4) {
        border-right: none;
    }
   
}


.icon-wrp {
    width: 50px;
    height: 50px;
    background: lavender;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
