/* ==========================================================================
   ASP OL Media — Complete Stylesheet (with Mega Menu + Mobile Drawer)
   Replaces your old style.css entirely.
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,500&family=DM+Sans:wght@300;400;500&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Whitney SSm", Arial, sans-serif !important; color: #464646; background: #fff; }
body.menu-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TOP ANNOUNCEMENT BAR ── */
.top-bar {
  background: linear-gradient(90deg, #6c3ec8, #3b5af5);
  color: #fff;
  text-align: center;
  font-size: 15px;
  padding: 8px 16px;
}
.top-bar a { color: #fff; text-decoration: underline; margin-left: 6px; }
.top-bar span { margin-right: 6px; }

/* ==========================================================================
   NAVIGATION + MEGA MENU
   ========================================================================== */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 60px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { font-size: 22px; font-weight: 500; letter-spacing: -1px; }
.nav-logo span { color: #3b5af5; }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #464646;
}
.nav-links > a,
.nav-links .nav-link { color: #464646; transition: color .2s; }
.nav-links > a:hover,
.nav-links .nav-link:hover { color: #3b5af5; }

/* Nav item wrapper for mega menu triggers */
.nav-item {
  position: static; /* mega menu uses container width */
}
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: #464646;
  transition: color .2s;
}
.nav-trigger:hover { color: #3b5af5; }
.nav-arrow {
  font-size: 20px;
  transition: transform .25s ease;
  display: inline-block;
  margin-top: 0px;
}
.nav-item.has-mega:hover .nav-arrow { transform: rotate(180deg); color: #3b5af5; }

.btn-trial {
  background: #3b5af5;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
}
.btn-trial:hover { background: #2a47e0; color: #fff; }

.nav-toggle { display: none; cursor: pointer; font-size: 26px; user-select: none; }

/* Mobile-only elements (hidden on desktop) */
.mobile-menu-header,
.mobile-overlay { display: none; }

/* ── MEGA MENU (Desktop) ── */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 16px 40px rgba(10, 10, 35, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 99;
  padding: 36px 60px 40px;
}
.nav-item.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
}

.mega-heading .mega-eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #3b5af5;
  margin-bottom: 10px;
}
.mega-heading h4 {
  font-size: 20px;
  font-weight: 800;
  color: #0a0a23;
  line-height: 1.25;
  margin-bottom: 10px;
}
.mega-heading p {
  font-size: 15px;
  color: #464646;
  line-height: 1.6;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 10px;
}
.mega-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 12px; }

.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background .2s, transform .15s;
  color: #0a0a23;
}
.mega-link:hover {
  background: #f5f7ff;
  transform: translateY(-1px);
}
.mega-link-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.icon-blue   { background: #e0e8ff; }
.icon-purple { background: #ece0ff; }
.icon-green  { background: #d9f5e8; }
.icon-pink   { background: #ffe0ee; }
.icon-orange { background: #ffe8d4; }
.icon-teal   { background: #d4f1ee; }
.icon-yellow { background: #fff5cc; }
.icon-cyan   { background: #d4eef7; }
.icon-red    { background: #ffdede; }

.mega-link-text { display: flex; flex-direction: column; }
.mega-link-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #0a0a23;
  margin-bottom: 3px;
}
.mega-link:hover .mega-link-text strong { color: #3b5af5; }
.mega-link-text span {
  font-size: 12px;
  color: #464646;
  line-height: 1.5;
}

.mega-link-large { padding: 16px; }
.mega-link-large .mega-link-icon { width: 44px; height: 44px; font-size: 22px; }
.mega-link-large .mega-link-text strong { font-size: 15px; }
.mega-link-large .mega-link-text span { font-size: 15px; }

/* ── HERO ── */
.hero {
  background: #e1e8fa;
  padding: 80px 170px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 460px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-company {
  background: #e1e8fa;
  padding: 0px 170px 0px;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-badge {
  display: inline-block;
  border: 1px solid #3b5af5;
  color: #3b5af5;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 12px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero h1, .hero-company h1 { font-size: clamp(30px, 4vw, 45px); font-weight: 900; line-height: 1.1; color: #0a0a23; margin-bottom: 18px; }
.hero p, .hero-company p { font-size: 16px; color: #555; line-height: 1.7; margin-bottom: 32px; max-width: 440px; }
.hero-btns { display: flex; gap: 14px; }
.btn-primary {
  background: #3b5af5;
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: background .2s;
}
.btn-primary:hover { background: #2a47e0; }
.btn-outline {
  background: transparent;
  color: #464646;
  border: 1.5px solid #ccc;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}
.btn-outline:hover { border-color: #3b5af5; color: #3b5af5; }
.hero-stats { display: flex; gap: 40px; margin-top: 44px; }
.hero-stat .val { font-size: 32px; font-weight: 500; color: #0a0a23; }
.hero-stat .val span { color: #0c48cc; }
.hero-stat .lbl { font-size: 12px; color: #777; margin-top: 2px; }
.hero-image { flex: 0 0 auto; max-width: 470px; margin:auto; margin-bottom:-60px; }
.hero-image-category { flex: 0 0 auto; max-width: 500px; margin:auto; }
.hero-image-category img{border-radius: 10px;}
.hero-image img {
  display: block;
  max-height: 100%;
}
/* ── TICKER ── */
.ticker {
  background: #0a0a23;
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
}
.ticker-inner { display: inline-flex; gap: 0; animation: ticker 28s linear infinite; }
.ticker-inner span { padding: 0 30px; }
.ticker-inner span::before { content: '★'; margin-right: 12px; color: #3b5af5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION COMMONS ── */
section { padding: 40px 170px; }
.section-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #3b5af5; margin-bottom: 12px; }
.section-title { font-size: clamp(24px, 3vw, 30px); font-weight: 700; color: #0a0a23; margin-bottom: 14px; }
.section-sub { font-size: 15px; color: #464646; max-width: 600px; line-height: 1.7; }

/* ── SERVICES GRID ── */
.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.service-card {
  border: 1px solid #e8e8f0;
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow .2s, border-color .2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(59, 90, 245, .1); border-color: #c0caff; }
.service-icon { font-size: 30px; margin-bottom: 14px; }
.service-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #0a0a23; }
.service-card p { font-size: 15px; color: #464646; line-height: 1.6; margin-bottom: 14px; }
.learn-more { font-size: 15px; color: #3b5af5; font-weight: 600; }
.learn-more:hover { text-decoration: underline; }

/* ── TOOLS ── */
.tools { background: #f7f8fc; }
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.tool-card { background: #fff; border: 1px solid #e2e5f0; border-radius: 14px; padding: 32px 28px; border-top: 4px solid #6c3ec8; }
.tool-card-1 { background: #fff; border: 1px solid #e2e5f0; border-radius: 14px; padding: 32px 28px; border-top: 4px solid #bd2884; }
.tool-card h3 { font-size: 18px; font-weight: 800; margin: 16px 0 10px; color: #0a0a23; }
.tool-card p { font-size: 13.5px; color: #464646; line-height: 1.7; margin-bottom: 16px; }
.tool-features { list-style: none; margin-bottom: 24px; }
.tool-features li { font-size: 13px; color: #0a0a23; padding: 4px 0; }
.tool-features li::before { content: "✓"; color: #47b973; margin-right: 8px; font-weight: 700; background: #dcfce7; border-radius: 50%; width: 18px; height: 18px; display: inline-block; padding: 0 4px; }
.tool-icon { font-size: 38px; }
.tool-card-1 h3 { font-size: 18px; font-weight: 800; margin: 16px 0 10px; color: #0a0a23; }
.tool-card-1 p { font-size: 13.5px; color: #464646; line-height: 1.7; margin-bottom: 16px; }

/* ── CITIES ── */
.cities { background: #fff; }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.city-card {
  border: 1px solid #e8e8f0;
  border-radius: 10px;
  padding: 20px 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #0a0a23;
  background:#fff;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.city-card .city-icon { font-size: 26px; margin-bottom: 8px; }
.city-card .city-sub { font-size: 11px; color: #888; font-weight: 400; margin-top: 3px; }
.city-card:hover { border-color: #3b5af5; box-shadow: 0 4px 16px rgba(59, 90, 245, .1); }

/* ── INDUSTRIES ── */
.industries { background: #f7f8fc; }
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: normal;       /* center the whole group on the page */
  gap: 12px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
}
 
.industry-tag {
  display: inline-flex;
  align-items: center;            /* vertically center icon + text */
  justify-content: center;        /* horizontally center inside the tag */
  gap: 10px;                      /* clean spacing between icon and text */
  border: 1px solid #dde1f0;
  border-radius: 22px;
  padding: 8px 18px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .2s, box-shadow .2s;
  line-height: 1;                 /* keeps the tag height tight */
}
 
.industry-tag:hover {
  border-color: #3b5af5;
  color: #3b5af5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 90, 245, 0.1);
}
 
/* Icon (SVG) sits on the same baseline as the text */
.industry-tag svg {
  flex-shrink: 0;
  display: block;
  width: 22px;
  height: 22px;
}
 
/* Text — kill any inline margin-top hacks so everything stays aligned */
.industry-tag span {
  display: inline-block;
  margin: 0 !important;            /* overrides the inline `margin-top: -19px` on Travel & Tourism */
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .industry-tags { gap: 8px; }
  .industry-tag { padding: 7px 14px; font-size: 12.5px; gap: 8px; }
  .industry-tag svg { width: 20px; height: 20px; }
}
 
@media (max-width: 480px) {
  .industry-tags { justify-content: flex-start; }   /* left-align on small phones so they don't look orphaned */
}
/* ── BLOG ── */
.blog { background: #fff; }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px; }
.view-all { font-size: 14px; color: #3b5af5; font-weight: 600; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.blog-card {
  border: 1px solid #e8e8f0;
  border-radius: 12px;
  overflow: hidden;
}
.blog-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.blog-thumb.blue { background: #dde6ff; }
.blog-thumb.green { background: #d9f5e8; }
.blog-thumb.orange { background: #ffeedd; }
.blog-thumb.teal { background: #d9f5f0; }
.blog-thumb.yellow { background: #fffadd; }
.blog-thumb.pink { background: #fde8e8; }
.blog-body { padding: 18px 16px; }
.blog-category { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-category.how-to { color: #2a8a5a; }
.blog-category.tech { color: #3b5af5; }
.blog-category.india { color: #e05c2a; }
.blog-category.industry { color: #8b5cf6; }
.blog-category.guide { color: #059669; }
.blog-category.technical { color: #3b5af5; }
.blog-card h4 { font-size: 14px; font-weight: 700; line-height: 1.4; color: #0a0a23; margin-bottom: 8px; }
.blog-meta { display: flex; justify-content: space-between; font-size: 11.5px; color: #999; }
.blog-read { color: #3b5af5; font-weight: 600; }

/* ── FAQ ── */
.faq { background: #f7f8fc; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; }
.faq-card {
  background: #fff;
  border: 1px solid #e2e5f0;
  border-radius: 10px;
  padding: 22px 22px;
}
.faq-card h4 { font-size: 16px; font-weight: 700; color: #0a0a23; margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.faq-card h4 span { color: #3b5af5; font-size: 16px; }
.faq-card p { font-size: 15px; color: #464646; line-height: 1.7; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #3b5af5 0%, #6c3ec8 100%);
  margin: 60px 250px;
  border-radius: 20px;
  padding: 80px 170px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}
.cta-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, .7); margin-bottom: 16px; }
.cta-banner h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 500; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.cta-banner h2 em { color: #a5b8ff; font-style: normal; }
.cta-banner p { color: rgba(255, 255, 255, .8); font-size: 15px; max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
.cta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 520px; margin: 0 auto; }
.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  outline: none;
  background: rgba(255, 255, 255, .15);
  color: #fff;
}
.cta-form input::placeholder { color: rgba(255, 255, 255, .6); }
.cta-form .btn-white {
  background: #fff;
  color: #3b5af5;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.cta-note { font-size: 12px; color: rgba(255, 255, 255, .55); margin-top: 14px; }
.cta-note span { margin: 0 8px; }

/* ── FOOTER ── */
footer {
  background: #0a0a23;
  color: #464646;
  padding: 60px 60px 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1e1e40;
}
.footer-brand .logo { font-size: 20px; font-weight: 500; color: #fff; letter-spacing: -1px; }
.footer-brand .logo em { color: #3b5af5; font-style: normal; }
.footer-brand p { font-size: 15px; color: #8888aa; margin: 14px 0 20px; line-height: 1.7; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #1e1e40;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #464646;
  transition: background .2s;
}
.social-links a:hover { background: #3b5af5; color: #fff; }
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8888aa;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding-left: 0px;}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: #aaa; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12.5px;
  color: #464646;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: #888; margin-left: 20px; }
.footer-bottom a:hover { color: #fff; }
.heart { color: #e05; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet & smaller desktop */
@media (max-width: 1024px) {
  nav { padding: 14px 30px; }
  .hero, .hero-company { padding: 60px 30px; }
  section { padding: 60px 30px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
  .cta-banner { margin: 30px; padding: 50px 30px; }
  footer { padding: 50px 30px 24px; }
  .mega-menu { padding: 30px 30px 36px; }
  .mega-inner { grid-template-columns: 240px 1fr; gap: 30px; }
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   MOBILE NAV — Attractive Left-Aligned Drawer
   ========================================================================== */
@media (max-width: 992px) {
  nav { padding: 12px 20px; position: relative; }
  .nav-toggle { display: block; color: #0a0a23; }

  /* Dark overlay behind drawer */
  .mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 35, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
    z-index: 998;
  }
  body.menu-open .mobile-overlay { opacity: 1; visibility: visible; }

  /* The drawer itself — slides in from the LEFT */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 86%;
    max-width: 340px;
    background: #fff;
    padding: 0;
    gap: 0;
    box-shadow: 8px 0 40px rgba(10, 10, 35, 0.18);
    transform: translateX(-105%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 999;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links.open { transform: translateX(0); }

  /* Drawer header with logo + close button */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: linear-gradient(135deg, #3b5af5 0%, #6c3ec8 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .mobile-menu-logo img {
    filter: brightness(0) invert(1); /* makes logo white on gradient */
    max-height: 32px;
    width: auto;
  }
  .mobile-close-btn {
    background: rgba(255, 255, 255, 0.18);
    border: none;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    padding: 0;
  }
  .mobile-close-btn:hover { background: rgba(255, 255, 255, 0.3); }

  /* Top-level links */
  .nav-links > a,
  .nav-links .nav-link,
  .nav-links .nav-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #0a0a23;
    border-bottom: 1px solid #f0f1f7;
    width: 100%;
    transition: background .2s, color .2s, padding-left .2s;
  }
  .nav-links > a:hover,
  .nav-links .nav-link:hover,
  .nav-links .nav-trigger:hover {
    background: #f5f7ff;
    color: #3b5af5;
    padding-left: 28px;
  }

  .nav-item.has-mega { width: 100%; position: relative; }

  /* Arrow rotates when accordion opens */
  .nav-arrow {
    font-size: 20px;
    color: #464646;
    transition: transform .25s ease, color .2s;
  }
  .nav-item.has-mega.active > .nav-trigger {
    background: #f5f7ff;
    color: #3b5af5;
  }
  .nav-item.has-mega.active > .nav-trigger .nav-arrow {
    transform: rotate(180deg);
    color: #3b5af5;
  }
  .nav-item.has-mega:hover .nav-arrow { transform: none; } /* disable desktop hover rotate on mobile */
  .nav-item.has-mega.active .nav-arrow { transform: rotate(180deg); }

  /* Mega menu becomes an accordion panel */
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: #fafbff;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    width: 100%;
  }
  .nav-item.has-mega:hover .mega-menu {
    /* prevent desktop hover from opening on mobile */
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
  }
  .nav-item.has-mega.active .mega-menu {
    max-height: 2000px;
  }

  .mega-inner {
    display: block;
    padding: 8px 0 12px;
  }

  /* Hide the marketing heading column on mobile to save space */
  .mega-heading { display: none; }

  .mega-grid,
  .mega-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mega-link {
    padding: 12px 22px 12px 36px;
    border-radius: 0;
    border-bottom: 1px solid #eef0f8;
  }
  .mega-link:last-child { border-bottom: none; }
  .mega-link:hover {
    background: #eef2ff;
    transform: none;
  }
  .mega-link-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
    border-radius: 8px;
  }
  .mega-link-text strong { font-size: 13.5px; }
  .mega-link-text span { font-size: 11.5px; }

  /* Free Trial button styled prominently inside drawer */
  .nav-links .btn-trial {
    margin: 18px 22px;
    padding: 14px 20px;
    text-align: center;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(59, 90, 245, 0.25);
    border-bottom: none;
	width:auto;
  }
  .nav-links .btn-trial:hover {
    padding-left: 20px; /* override hover-shift for the button */
    background: #2a47e0;
    color: #fff;
  }
}

/* General mobile (≤768) tweaks */
@media (max-width: 768px) {
  .hero, .hero-company { flex-direction: column; padding: 40px 20px; }
  .hero-image { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  section { padding: 50px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-banner { margin: 20px; padding: 40px 20px; border-radius: 14px; }
  footer { padding: 40px 20px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom a { margin-left: 0; margin-right: 16px; }
  .btn-primary { width: 50%; }
  .btn-outline { width: 50%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; width: 100%; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}
/* ==========================================================================
   blog.css — Blog page additions
   Add this AFTER style.css. Reuses your existing classes for cards/colors.
   ========================================================================== */

/* ── BLOG HERO ── */
.blog-hero {
  background: linear-gradient(135deg, #eef0f8 0%, #f7f8fc 100%);
  padding: 70px 60px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before,
.blog-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
}
.blog-hero::before {
  width: 320px; height: 320px;
  background: rgba(59, 90, 245, 0.15);
  top: -120px; left: -80px;
}
.blog-hero::after {
  width: 280px; height: 280px;
  background: rgba(108, 62, 200, 0.15);
  bottom: -100px; right: -60px;
}
.blog-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.blog-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: #0a0a23;
  margin: 18px 0 16px;
}
.blog-hero p {
  font-size: 16px;
  color: #464646;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Hero search bar */
.blog-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 8px 28px rgba(10, 10, 35, 0.08);
  max-width: 560px;
  margin: 0 auto;
  gap: 8px;
}
.blog-search-icon { font-size: 18px; color: #888; flex-shrink: 0; }
.blog-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-family: inherit;
  color: #464646;
  padding: 12px 4px;
}
.blog-search input::placeholder { color: #999; }
.blog-search .btn-primary {
  padding: 11px 22px;
  font-size: 15px;
  border-radius: 8px;
}

/* ── FILTER PILLS ── */
.blog-filter-section {
  padding: 28px 60px;
  border-bottom: 1px solid #eef0f8;
  background: #fff;
}
.blog-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.filter-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 600;
  color: #464646;
  background: #f3f4fb;
  border: 1px solid transparent;
  transition: all .2s;
}
.filter-pill:hover {
  background: #e7eaff;
  color: #3b5af5;
}
.filter-pill.active {
  background: #3b5af5;
  color: #fff;
  box-shadow: 0 4px 14px rgba(59, 90, 245, 0.25);
}

/* ── FEATURED POST ── */
.blog-featured {
  padding: 60px 60px 30px;
}
.featured-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 22px;
  transition: box-shadow .25s;
}
.featured-card:hover { box-shadow: 0 16px 44px rgba(10, 10, 35, 0.08); }
.featured-thumb {
  background: linear-gradient(135deg, #3b5af5 0%, #6c3ec8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 320px;
}
.featured-emoji {
  font-size: 110px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.18));
}
.featured-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255,255,255,0.95);
  color: #3b5af5;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 6px;
}
.featured-body {
  padding: 38px 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-body h2 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: #0a0a23;
  margin: 12px 0 14px;
}
.featured-body p {
  font-size: 15px;
  color: #464646;
  line-height: 1.75;
  margin-bottom: 22px;
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #f0f1f7;
  border-bottom: 1px solid #f0f1f7;
  margin-bottom: 18px;
}
.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b5af5, #6c3ec8);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a23;
}
.author-role {
  font-size: 11.5px;
  color: #888;
}
.post-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #888;
}

/* ── BLOG LAYOUT (Posts + Sidebar) ── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 50px 60px 70px;
  background: #fafbff;
}
.blog-main { min-width: 0; }
.blog-main-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.blog-section-title {
  font-size: 26px;
  font-weight: 500;
  color: #0a0a23;
  margin: 6px 0 0;
}
.blog-sort {
  border: 1px solid #e0e3ee;
  background: #fff;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 15px;
  font-family: inherit;
  color: #444;
  cursor: pointer;
  outline: none;
}
.blog-sort:focus { border-color: #3b5af5; }

/* Override blog-grid for 3-column listing */
.blog-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 0;
}

/* Augmented blog cards (build on top of existing .blog-card) */
.blog-grid-3col .blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.blog-grid-3col .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 10, 35, 0.08);
  border-color: #c0caff;
}
.blog-grid-3col .blog-thumb {
  height: auto;
  font-size: 50px;
}
.blog-excerpt {
  font-size: 15px;
  color: #464646;
  line-height: 1.65;
  margin: 8px 0 12px;
}
.blog-grid-3col .blog-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-grid-3col .blog-meta {
  font-size: 11.5px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f3f4fb;
}
.blog-read-link {
  font-size: 15px;
  font-weight: 700;
  color: #3b5af5;
  margin-top: 10px;
  display: inline-block;
}
.blog-read-link:hover { text-decoration: underline; }

/* ── PAGINATION ── */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e3ee;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  transition: all .2s;
}
.page-btn:hover { border-color: #3b5af5; color: #3b5af5; }
.page-btn.active {
  background: #3b5af5;
  border-color: #3b5af5;
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 90, 245, 0.22);
}
.page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.page-prev, .page-next { padding: 0 16px; }
.page-dots { color: #aaa; font-weight: 700; padding: 0 4px; }

/* ── SIDEBAR ── */
.blog-sidebar { display: flex; flex-direction: column; gap: 22px; }
.sidebar-block {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 24px 22px;
}
.sidebar-title {
  font-size: 14px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Newsletter card */
.sidebar-newsletter {
  background: linear-gradient(160deg, #eef2ff 0%, #f5f0ff 100%);
  border-color: #d8def5;
  text-align: center;
}
.sidebar-newsletter-icon {
  font-size: 36px;
  margin-bottom: 8px;
}
.sidebar-newsletter h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 8px;
}
.sidebar-newsletter p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}
.sidebar-newsletter input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d0d6ee;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  margin-bottom: 10px;
  outline: none;
  background: #fff;
}
.sidebar-newsletter input:focus { border-color: #3b5af5; }
.sidebar-note {
  font-size: 11px !important;
  color: #888 !important;
  margin: 10px 0 0 !important;
}

/* Popular posts list */
.popular-list { list-style: none; }
.popular-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4fb;
  align-items: flex-start;
}
.popular-list li:last-child { border-bottom: none; padding-bottom: 0; }
.popular-list li:first-child { padding-top: 0; }
.popular-num {
  font-size: 18px;
  font-weight: 500;
  color: #c0c5d8;
  flex-shrink: 0;
  width: 26px;
  letter-spacing: -0.5px;
}
.popular-list li a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #0a0a23;
  line-height: 1.45;
  margin-bottom: 4px;
}
.popular-list li a:hover { color: #3b5af5; }
.popular-meta {
  font-size: 11px;
  color: #999;
}

/* Categories list */
.category-list { list-style: none; }
.category-list li { border-bottom: 1px solid #f3f4fb; }
.category-list li:last-child { border-bottom: none; }
.category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  font-size: 13.5px;
  color: #444;
  font-weight: 500;
  transition: color .2s, padding-left .2s;
}
.category-list li a:hover {
  color: #3b5af5;
  padding-left: 6px;
}
.category-list li a span {
  font-size: 11.5px;
  color: #aaa;
  font-weight: 600;
}

/* Tag cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  display: inline-block;
  padding: 5px 11px;
  background: #f3f4fb;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: #555;
  transition: all .2s;
}
.tag:hover {
  background: #3b5af5;
  color: #fff;
}

/* Sidebar CTA card */
.sidebar-cta {
  background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 100%);
  border-color: #1a1a3e;
  text-align: center;
  color: #fff;
}
.sidebar-cta-emoji { font-size: 36px; margin-bottom: 6px; }
.sidebar-cta h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.sidebar-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}
.sidebar-cta .btn-trial {
  background: #fff;
  color: #3b5af5;
  font-weight: 700;
}
.sidebar-cta .btn-trial:hover {
  background: #eef2ff;
  color: #2a47e0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .blog-hero { padding: 60px 30px 50px; }
  .blog-filter-section { padding: 22px 30px; }
  .blog-featured { padding: 50px 30px 24px; }
  .blog-layout { padding: 40px 30px 60px; grid-template-columns: 1fr 280px; gap: 28px; }
  .blog-grid-3col { grid-template-columns: repeat(2, 1fr); }
  .featured-thumb { min-height: 260px; }
  .featured-emoji { font-size: 90px; }
  .featured-body { padding: 30px 26px; }
}

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { order: 2; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-thumb { min-height: 200px; }
}

@media (max-width: 768px) {
  .blog-hero { padding: 50px 20px 40px; }
  .blog-search { flex-wrap: wrap; padding: 10px; }
  .blog-search input { width: 100%; padding: 10px 4px; }
  .blog-search .btn-primary { width: 100%; justify-content: center; text-align: center; }
  .blog-filter-section { padding: 18px 20px; }
  .blog-filter-pills { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .filter-pill { white-space: nowrap; flex-shrink: 0; }
  .blog-featured { padding: 40px 20px 20px; }
  .blog-layout { padding: 30px 20px 50px; }
  .blog-grid-3col { grid-template-columns: 1fr; }
  .featured-body { padding: 24px 22px; }
  .featured-body h2 { font-size: 22px; }
  .featured-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .post-meta { flex-direction: column; gap: 4px; }
  .blog-pagination { gap: 4px; }
  .page-btn { min-width: 34px; height: 34px; font-size: 12px; padding: 0 8px; }
  .page-prev, .page-next { padding: 0 12px; }
}

@media (max-width: 480px) {
  .blog-hero h1 { font-size: 26px; }
  .blog-hero p { font-size: 14px; }
}
/* ==========================================================================
   article.css — Single Article / Blog Post Page
   Load AFTER style.css and blog.css.
   ========================================================================== */

/* ── READING PROGRESS BAR (sticky top) ── */
.reading-progress {
  position: sticky;
  top: 0;
  height: 3px;
  background: #eef0f8;
  z-index: 99;
  width: 100%;
}
.reading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3b5af5, #6c3ec8);
  transition: width .1s linear;
}

/* ── BREADCRUMB ── */
.breadcrumb-nav {
  background: #fafbff;
  padding: 16px 60px;
  border-bottom: 1px solid #eef0f8;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-size: 15px;
  max-width: 1280px;
  margin: 0 auto;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
}
.breadcrumb li:not(:last-child)::after {
  content: '\203A';
  color: #ccc;
  font-size: 14px;
}
.breadcrumb li a {
  color: #3b5af5;
  font-weight: 500;
}
.breadcrumb li a:hover { text-decoration: underline; }
.breadcrumb li[aria-current="page"] {
  color: #0a0a23;
  font-weight: 600;
}

/* ── ARTICLE HEADER ── */
.article-header {
  background: #fff;
  padding: 50px 60px 36px;
}
.article-header-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.article-header .blog-category {
  display: inline-block;
  margin-bottom: 18px;
}
.article-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  line-height: 1.18;
  color: #0a0a23;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.article-subtitle {
  font-size: 17px;
  color: #555;
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 34px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid #f0f1f7;
}
.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-author .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b5af5, #6c3ec8);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.article-author .author-name {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a23;
  text-align: left;
}
.article-author .author-role {
  font-size: 12px;
  color: #888;
  text-align: left;
}
.article-meta-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #777;
  flex-wrap: wrap;
}
.article-meta-info .dot { color: #ccc; }

/* ── HERO IMAGE BANNER ── */
.article-hero-image {
  padding: 0 60px 50px;
  background: #fff;
}
.article-hero-banner {
  max-width: 1100px;
  margin: 0 auto;
  height: 380px;
  background: linear-gradient(135deg, #3b5af5 0%, #6c3ec8 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.article-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 50%);
}
.article-hero-emoji {
  font-size: 130px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.22));
  position: relative;
  z-index: 1;
}

/* ── ARTICLE LAYOUT (3-column) ── */
.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px 60px 70px;
  background: #fafbff;
  align-items: start;
}
.article-layout > * { min-width: 0; }

/* ── LEFT TOC ── */
.article-toc {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.toc-block {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 12px;
  padding: 22px 18px;
}
.toc-title {
  font-size: 15px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}
.toc-list {
  list-style: none;
  counter-reset: none;
  padding: 0;
}
.toc-list li {
  margin-bottom: 6px;
}
.toc-list li a {
  display: block;
  padding: 7px 10px;
  font-size: 12.5px;
  color: #555;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all .2s;
  line-height: 1.45;
  font-weight: 500;
}
.toc-list li a:hover {
  background: #f3f4fb;
  color: #3b5af5;
}
.toc-list li a.active {
  background: #eef2ff;
  color: #3b5af5;
  border-left-color: #3b5af5;
  font-weight: 700;
}

/* Sticky share buttons */
.share-block .share-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.share-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f3f4fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #555;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.share-icon:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.share-twitter:hover  { background: #000; }
.share-linkedin:hover { background: #0a66c2; }
.share-facebook:hover { background: #1877f2; }
.share-whatsapp:hover { background: #25d366; }
.share-copy:hover     { background: #3b5af5; }

/* ── ARTICLE BODY ── */
.article-body {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 40px 48px 36px;
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a44;
}
.article-body h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0a0a23;
  margin: 38px 0 16px;
  line-height: 1.3;
  letter-spacing: -0.3px;
  scroll-margin-top: 24px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a0a23;
  margin: 28px 0 12px;
}
.article-body p {
  margin-bottom: 18px;
}
.article-body strong { color: #0a0a23; font-weight: 700; }
.article-body em { color: #2a2a44; }
.article-body a {
  color: #3b5af5;
  font-weight: 600;
  border-bottom: 1px solid rgba(59, 90, 245, 0.3);
  transition: border-color .2s;
}
.article-body a:hover { border-color: #3b5af5; }

.article-body ul,
.article-body ol {
  margin: 0 0 22px 22px;
  padding: 0;
}
.article-body ul li,
.article-body ol li {
  margin-bottom: 10px;
  padding-left: 6px;
}
.article-body ul li::marker { color: #3b5af5; }
.article-body ol li::marker { color: #3b5af5; font-weight: 700; }

.article-body blockquote {
  border-left: 4px solid #3b5af5;
  background: #f5f7ff;
  padding: 18px 24px;
  margin: 24px 0;
  border-radius: 0 10px 10px 0;
  font-size: 15.5px;
  color: #2a2a44;
  line-height: 1.7;
}
.article-body blockquote strong { color: #3b5af5; }

/* Callouts */
.callout {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 12px;
  margin: 28px 0;
  border-left: 4px solid;
}
.callout-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.4;
}
.callout-body {
  font-size: 15px;
  line-height: 1.7;
}
.callout-body strong { display: block; margin-bottom: 6px; font-size: 15px; }
.callout-body ul { margin: 8px 0 0 18px !important; }
.callout-body ul li { margin-bottom: 6px; }

.callout-key     { background: #eef2ff; border-color: #3b5af5; }
.callout-key strong { color: #3b5af5; }
.callout-tip     { background: #fef9e6; border-color: #f5b700; }
.callout-tip strong { color: #b67d00; }
.callout-warning { background: #fdebec; border-color: #e0364a; }
.callout-warning strong { color: #c92034; }

/* Article figure / image */
.article-figure {
  margin: 28px 0;
}
.figure-placeholder {
  height: 280px;
  background: linear-gradient(135deg, #eef2ff, #f5f0ff);
  border: 1px solid #e0e6f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
}
.article-figure figcaption {
  text-align: center;
  font-size: 15px;
  color: #888;
  margin-top: 12px;
  font-style: italic;
}

/* Inline CTA inside article */
.article-inline-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 100%);
  color: #fff;
  border-radius: 14px;
  padding: 26px 28px;
  margin: 36px 0;
  flex-wrap: wrap;
}
.article-inline-cta-emoji { font-size: 36px; flex-shrink: 0; }
.article-inline-cta-body { flex: 1; min-width: 200px; }
.article-inline-cta-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.article-inline-cta-body p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.article-inline-cta .btn-primary { flex-shrink: 0; }

/* Article tags */
.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
  border-top: 1px solid #f0f1f7;
  border-bottom: 1px solid #f0f1f7;
  margin-top: 28px;
}
.article-tags-label {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 4px;
}
.article-tags .tag {
  background: #f3f4fb;
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  border-bottom: none !important;
}
.article-tags .tag:hover { background: #3b5af5; color: #fff; border-bottom: none !important; }

/* Author bio */
.author-bio {
  display: flex;
  gap: 20px;
  background: #fafbff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 26px 24px;
  margin-top: 28px;
}
.author-bio-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b5af5, #6c3ec8);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-bio-body { flex: 1; min-width: 0; }
.author-bio-name {
  font-size: 17px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 2px;
}
.author-bio-role {
  font-size: 12.5px;
  color: #3b5af5;
  font-weight: 600;
  margin-bottom: 10px;
}
.author-bio-body p {
  font-size: 13.5px !important;
  color: #555;
  line-height: 1.65;
  margin-bottom: 14px !important;
}
.author-bio-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.author-bio-social a {
  font-size: 12.5px;
  color: #3b5af5;
  font-weight: 600;
  border-bottom: none !important;
}
.author-bio-social a:hover { text-decoration: underline; }

/* Prev / Next nav */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.article-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 12px;
  transition: all .2s;
  border-bottom: 1px solid #e8e8f0 !important;
}
.article-nav-link:hover {
  border-color: #3b5af5 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 90, 245, 0.08);
}
.article-nav-prev { text-align: left; }
.article-nav-next { text-align: right; }
.article-nav-label {
  font-size: 11px;
  font-weight: 700;
  color: #3b5af5;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.article-nav-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #0a0a23;
  line-height: 1.4;
}

/* Comments */
.article-comments {
  background: #fafbff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 28px 26px;
  margin-top: 32px;
}
.article-comments h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 6px;
}
.article-comments > p {
  font-size: 13.5px !important;
  color: #777;
  margin-bottom: 18px !important;
}
.article-comments textarea,
.article-comments input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8dceb;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  background: #fff;
  margin-bottom: 12px;
  resize: vertical;
}
.article-comments textarea:focus,
.article-comments input:focus { border-color: #3b5af5; }
.comment-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.article-comments .btn-primary {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 13.5px;
  margin-top: 4px;
}

/* ── ARTICLE SIDEBAR (right) ── */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 24px;
}

/* ── RELATED ARTICLES ── */
.related-articles {
  padding: 60px 60px 40px;
  background: #fff;
}
.related-articles .section-eyebrow,
.related-articles .section-title { text-align: center; }
.related-articles .section-title { margin-bottom: 36px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  .article-layout {
    grid-template-columns: 200px 1fr;
    gap: 28px;
    padding: 30px 30px 60px;
  }
  .article-body { padding: 36px 38px 32px; }
}

@media (max-width: 1024px) {
  .breadcrumb-nav { padding: 14px 30px; }
  .article-header { padding: 40px 30px 28px; }
  .article-hero-image { padding: 0 30px 40px; }
  .article-hero-banner { height: 300px; }
  .article-hero-emoji { font-size: 100px; }
  .related-articles { padding: 50px 30px 30px; }

  .article-layout {
    grid-template-columns: 1fr 280px;
    gap: 24px;
  }
  .article-toc {
    display: none; /* hide TOC on tablets — sidebar still shown */
  }
  .article-body { padding: 32px 30px; }
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .article-sidebar {
    position: static;
    order: 2;
  }
}

@media (max-width: 768px) {
  .breadcrumb-nav { padding: 12px 20px; }
  .breadcrumb { font-size: 12px; gap: 6px; }
  .article-header { padding: 30px 20px 24px; }
  .article-title { font-size: 26px; }
  .article-subtitle { font-size: 15px; }
  .article-meta-row { flex-direction: column; gap: 14px; padding-top: 18px; }
  .article-meta-info { font-size: 12px; gap: 8px; }
  .article-hero-image { padding: 0 20px 30px; }
  .article-hero-banner { height: 220px; border-radius: 12px; }
  .article-hero-emoji { font-size: 80px; }

  .article-layout { padding: 24px 20px 50px; }
  .article-body {
    padding: 24px 22px;
    font-size: 15px;
    line-height: 1.75;
  }
  .article-body h2 { font-size: 22px; margin-top: 30px; }
  .article-body h3 { font-size: 18px; }

  .article-inline-cta { flex-direction: column; align-items: flex-start; text-align: left; gap: 14px; }
  .article-inline-cta .btn-primary { width: 100%; text-align: center; }

  .author-bio { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
  .author-bio-avatar { width: 60px; height: 60px; font-size: 18px; }

  .article-nav { grid-template-columns: 1fr; }
  .article-nav-next { text-align: left; }

  .comment-form-row { grid-template-columns: 1fr; }

  .related-articles { padding: 40px 20px 20px; }
}

@media (max-width: 480px) {
  .article-title { font-size: 22px; }
  .article-hero-banner { height: 180px; }
  .article-hero-emoji { font-size: 64px; }
  .figure-placeholder { height: 200px; font-size: 50px; }
}
/* ==========================================================================
   services.css — Services Index / Landing Page
   Load AFTER style.css.
   ========================================================================== */

/* ── BREADCRUMB (reused pattern from article.css, included here standalone) ── */
.breadcrumb-nav {
  background: #fafbff;
  padding: 16px 60px;
  border-bottom: 1px solid #eef0f8;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-size: 15px;
  max-width: 1280px;
  margin: 0 auto;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
}
.breadcrumb li:not(:last-child)::after {
  content: '\203A';
  color: #ccc;
  font-size: 14px;
}
.breadcrumb li a { color: #3b5af5; font-weight: 500; }
.breadcrumb li a:hover { text-decoration: underline; }
.breadcrumb li[aria-current="page"] { color: #0a0a23; font-weight: 600; }

/* ── HERO TWEAK FOR SERVICES INDEX ── */
.services-hero .hero-content { max-width: 700px; }
.services-hero .hero-stats { gap: 36px; }

/* ── 3 PILLARS / WHY-CHOOSE-US ROW ── */
.services-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 60px 120px 0;
  max-width: 1320px;
  margin: 0 auto;
}
.pillar-card {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 28px 26px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.pillar-card:hover {
  box-shadow: 0 12px 32px rgba(10, 10, 35, 0.06);
  transform: translateY(-3px);
  border-color: #c0caff;
}
.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.pillar-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 8px;
}
.pillar-card p {
  font-size: 13.5px;
  color: #464646;
  line-height: 1.65;
}

/* ── SERVICES INDEX GRID (numbered card variant) ── */
.services-index-grid .service-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 26px 24px 24px;
  transition: box-shadow .25s, border-color .25s, transform .2s;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  background: #fff;
}
.services-index-grid .service-card:hover {
  border-color: #3b5af5;
  box-shadow: 0 14px 36px rgba(59, 90, 245, 0.1);
  transform: translateY(-4px);
}
.services-index-grid .service-card:hover h3 { color: #3b5af5; }
.services-index-grid .service-card:hover .learn-more::after { transform: translateX(4px); }

.service-link-card { cursor: pointer; }

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.service-badge {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.service-num {
  font-size: 28px;
  font-weight: 500;
  color: #e3e6f4;
  letter-spacing: -1px;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.services-index-grid h3 {
  font-size: 16.5px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 8px;
  transition: color .2s;
  line-height: 1.3;
}
.services-index-grid p {
  font-size: 15px;
  color: #464646;
  line-height: 1.65;
  margin-bottom: 14px;
}

.service-mini-features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  border-top: 1px solid #f0f1f7;
  padding-top: 14px;
}
.service-mini-features li {
  position: relative;
  padding-left: 18px;
  font-size: 12.5px;
  color: #555;
  margin-bottom: 6px;
  line-height: 1.5;
}
.service-mini-features li:last-child { margin-bottom: 0; }
.service-mini-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #3b5af5;
  font-weight: 800;
  font-size: 12px;
}

.services-index-grid .learn-more {
  margin-top: auto;
  display: inline-block;
  font-size: 15px;
  color: #3b5af5;
  font-weight: 700;
}
.services-index-grid .learn-more::after {
  content: '';
  display: inline-block;
  margin-left: 4px;
  transition: transform .2s;
}

/* ── COMPARE / "WHICH SERVICE" GRID ── */
.services-compare {
  background: #f7f8fc;
  padding: 80px 120px;
  text-align: center;
}
.services-compare .section-sub { margin: 0 auto 40px; }

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}
.compare-card {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 12px;
  padding: 24px 22px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.compare-card:hover {
  border-color: #3b5af5;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(59, 90, 245, 0.08);
}
.compare-emoji {
  font-size: 32px;
  margin-bottom: 12px;
}
.compare-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 8px;
}
.compare-card p {
  font-size: 15px;
  color: #464646;
  line-height: 1.6;
  margin-bottom: 14px;
}
.compare-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.compare-tag {
  display: inline-block;
  background: #eef2ff;
  color: #3b5af5;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ── PROCESS / TIMELINE ── */
.services-process {
  background: #fff;
  padding: 80px 120px;
  text-align: center;
}
.services-process .section-sub { margin: 0 auto 50px; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}
.process-step {
  position: relative;
  padding: 26px 22px;
  background: #fafbff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  transition: border-color .2s, transform .2s;
}
.process-step:hover {
  border-color: #3b5af5;
  transform: translateY(-3px);
}
.process-num {
  display: inline-block;
  font-size: 32px;
  font-weight: 500;
  background: linear-gradient(135deg, #3b5af5, #6c3ec8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  margin-bottom: 10px;
  line-height: 1;
}
.process-line {
  position: absolute;
  top: 38px;
  right: -16px;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, #3b5af5, transparent);
}
.process-step:last-child .process-line { display: none; }
.process-step h4 {
  font-size: 16px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13.5px;
  color: #464646;
  line-height: 1.65;
}

/* ── BUNDLES / PACKAGES ── */
.services-bundles {
  background: #f7f8fc;
  padding: 80px 120px;
  text-align: center;
}
.services-bundles .section-sub { margin: 0 auto 44px; }

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
  align-items: stretch;
}
.bundle-card {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.bundle-card:hover {
  box-shadow: 0 14px 36px rgba(10, 10, 35, 0.08);
  transform: translateY(-3px);
}
.bundle-popular {
  border: 2px solid #3b5af5;
  box-shadow: 0 10px 28px rgba(59, 90, 245, 0.12);
  background: linear-gradient(180deg, #fff 0%, #f5f7ff 100%);
}
.bundle-tag {
  display: inline-block;
  background: #f3f4fb;
  color: #555;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 11px;
  border-radius: 6px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.bundle-tag-popular {
  background: #3b5af5;
  color: #fff;
}
.bundle-emoji {
  font-size: 38px;
  margin-bottom: 12px;
}
.bundle-card h3 {
  font-size: 22px;
  font-weight: 500;
  color: #0a0a23;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.bundle-card > p {
  font-size: 13.5px;
  color: #464646;
  line-height: 1.65;
  margin-bottom: 18px;
}
.bundle-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex: 1;
}
.bundle-features li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 13.5px;
  color: #444;
  border-bottom: 1px solid #f3f4fb;
  line-height: 1.5;
}
.bundle-features li:last-child { border-bottom: none; }
.bundle-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #dcfce7;
  color: #047857;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── TESTIMONIALS ── */
.services-testimonials {
  background: #fff;
  padding: 80px 120px;
  text-align: center;
}
.services-testimonials .section-title { margin-bottom: 40px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}
.testimonial-card {
  background: #fafbff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: #f5b700;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card > p {
  font-size: 14px;
  color: #2a2a44;
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #eef0f8;
}
.testimonial-author .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b5af5, #6c3ec8);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author .author-name {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a23;
}
.testimonial-author .author-role {
  font-size: 11.5px;
  color: #888;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  .services-pillars,
  .services-compare,
  .services-process,
  .services-bundles,
  .services-testimonials { padding-left: 60px; padding-right: 60px; }
}

@media (max-width: 1024px) {
  .breadcrumb-nav { padding: 14px 30px; }
  .services-pillars,
  .services-compare,
  .services-process,
  .services-bundles,
  .services-testimonials { padding-left: 30px; padding-right: 30px; }
  .services-index-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .bundles-grid { grid-template-columns: 1fr; max-width: 560px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; }
}

@media (max-width: 768px) {
  .breadcrumb-nav { padding: 12px 20px; }
  .services-pillars,
  .services-compare,
  .services-process,
  .services-bundles,
  .services-testimonials { padding-left: 20px; padding-right: 20px; padding-top: 50px; padding-bottom: 50px; }
  .services-pillars { grid-template-columns: 1fr; padding-top: 50px; padding-bottom: 0; }
  .services-index-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }

  .process-timeline { grid-template-columns: 1fr; }
  .bundle-card { padding: 28px 22px; }
}
/* ==========================================================================
   cities.css — Cities Index / Landing Page
   Load AFTER style.css and services.css.
   ========================================================================== */

/* ── HERO TWEAK ── */
.cities-hero .hero-content { max-width: 720px; }
.cities-hero .hero-stats { gap: 36px; }

/* ── INDIA MAP SECTION ── */
.cities-map-section {
  background: #fff;
  padding: 80px 120px;
  text-align: center;
}
.cities-map-section .section-sub { margin: 0 auto 44px; }

.india-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  background: linear-gradient(160deg, #fafbff 0%, #f5f7ff 100%);
  border: 1px solid #e8e8f0;
  border-radius: 18px;
  padding: 40px 36px;
  text-align: left;
}

.india-map {
  width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
}

.map-pin {
  cursor: pointer;
}
.map-pin circle:nth-child(1) {
  animation: pinPulse 2.4s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.map-pin:nth-child(2) circle:nth-child(1) { animation-delay: 0.3s; }
.map-pin:nth-child(3) circle:nth-child(1) { animation-delay: 0.6s; }
.map-pin:nth-child(4) circle:nth-child(1) { animation-delay: 0.9s; }
.map-pin:nth-child(5) circle:nth-child(1) { animation-delay: 1.2s; }
.map-pin:nth-child(6) circle:nth-child(1) { animation-delay: 1.5s; }
.map-pin:hover circle:nth-child(2) { r: 8; }
.map-pin text { pointer-events: none; }

@keyframes pinPulse {
  0%, 100% { opacity: 0.2; r: 9; }
  50%      { opacity: 0;   r: 16; }
}

/* Map legend / stats panel */
.map-legend {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 24px 22px;
  text-align: left;
}
.map-legend h4 {
  font-size: 15px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.map-stat-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4fb;
}
.map-stat-row:last-of-type { border-bottom: none; padding-bottom: 14px; }
.map-stat-num {
  font-size: 22px;
  font-weight: 500;
  color: #3b5af5;
  letter-spacing: -0.5px;
  min-width: 50px;
}
.map-stat-lbl {
  font-size: 15px;
  color: #555;
  font-weight: 600;
}

/* ── REGION FILTER ── */
.region-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 36px 0 32px;
}
.region-btn {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  background: #f3f4fb;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}
.region-btn:hover {
  background: #e7eaff;
  color: #3b5af5;
}
.region-btn.active {
  background: #3b5af5;
  color: #fff;
  box-shadow: 0 4px 14px rgba(59, 90, 245, 0.22);
}

/* ── CITIES INDEX GRID ── */
.cities-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 0;
}
.city-grid-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 24px 22px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, transform .2s;
}
.city-grid-card:hover {
  border-color: #3b5af5;
  box-shadow: 0 14px 36px rgba(59, 90, 245, 0.1);
  transform: translateY(-4px);
}
.city-grid-card:hover h3 { color: #3b5af5; }
.city-grid-card:hover .learn-more::after { transform: translateX(4px); }

.city-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.city-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.city-region {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  background: #f3f4fb;
  padding: 4px 10px;
  border-radius: 6px;
}
.city-grid-card h3 {
  font-size: 16.5px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color .2s;
}
.city-grid-card > p {
  font-size: 15px;
  color: #464646;
  line-height: 1.6;
  margin-bottom: 14px;
}

.city-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f1f7;
}
.city-quick-stats span {
  display: inline-block;
  font-size: 11.5px;
  color: #555;
  background: #f8f9ff;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}
.city-quick-stats span strong {
  color: #3b5af5;
  font-weight: 700;
}

.city-grid-card .service-mini-features {
  border-top: none;
  padding-top: 0;
}

.city-grid-card .learn-more {
  margin-top: auto;
  padding-top: 14px;
  display: inline-block;
  font-size: 15px;
  color: #3b5af5;
  font-weight: 700;
}
.city-grid-card .learn-more::after {
  content: '';
  display: inline-block;
  margin-left: 4px;
  transition: transform .2s;
}

/* ── UNIFORM SERVICES (8 cards in 4-col grid) ── */
.city-uniform-services { background: #fafbff; }
.uniform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}
.uniform-card {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 12px;
  padding: 22px 20px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.uniform-card:hover {
  border-color: #3b5af5;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(59, 90, 245, 0.08);
}
.uniform-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.uniform-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 6px;
  line-height: 1.3;
}
.uniform-card p {
  font-size: 12.5px;
  color: #464646;
  line-height: 1.6;
}

/* ── REGION COVERAGE GRID ── */
.region-coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}
.region-card {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.region-card:hover {
  border-color: #3b5af5;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(59, 90, 245, 0.08);
}
.region-emoji {
  font-size: 36px;
  margin-bottom: 10px;
}
.region-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 6px;
}
.region-count {
  font-size: 12px;
  color: #3b5af5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.region-cities-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  border-top: 1px solid #f0f1f7;
  padding-top: 14px;
}
.region-cities-list li {
  font-size: 15px;
  color: #444;
  padding: 5px 0;
  font-weight: 500;
}
.region-note {
  font-size: 12.5px;
  color: #464646;
  line-height: 1.65;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0f1f7;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  .cities-map-section { padding-left: 60px; padding-right: 60px; }
  .india-map-wrapper { padding: 32px 28px; }
  .uniform-grid,
  .region-coverage-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .cities-map-section { padding-left: 30px; padding-right: 30px; }
  .india-map-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
  }
  .map-legend { max-width: 320px; margin: 0 auto; }
  .cities-index-grid { grid-template-columns: repeat(2, 1fr); }
  .uniform-grid { grid-template-columns: repeat(2, 1fr); }
  .region-coverage-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .cities-map-section { padding-left: 20px; padding-right: 20px; padding-top: 50px; padding-bottom: 50px; }
  .india-map-wrapper { padding: 22px 18px; }
  .india-map { max-height: 380px; }
  .india-map text { font-size: 9px !important; }
  .cities-index-grid { grid-template-columns: 1fr; }
  .uniform-grid { grid-template-columns: 1fr; }
  .region-coverage-grid { grid-template-columns: 1fr; }
  .region-filter { gap: 6px; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; justify-content: flex-start; }
  .region-btn { white-space: nowrap; flex-shrink: 0; padding: 8px 14px; font-size: 12px; }
  .city-card-header { flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 480px) {
  .india-map-wrapper { padding: 18px 14px; }
  .map-legend { padding: 20px 18px; }
}
/* ==========================================================================
   industries.css — Industries Index / Landing Page
   Load AFTER style.css, services.css, and cities.css.
   Reuses the city-grid card and segment-filter patterns; adds a few extras.
   ========================================================================== */

/* ── HERO TWEAK ── */
.industries-hero .hero-content { max-width: 720px; }
.industries-hero .hero-stats { gap: 36px; }

/* ── INDUSTRIES GRID (alias for cities-index-grid) ── */
.industries-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 0;
}

/* Industry card builds on city-grid-card pattern */
.industry-grid-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 24px 22px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, transform .2s;
}
.industry-grid-card:hover {
  border-color: #3b5af5;
  box-shadow: 0 14px 36px rgba(59, 90, 245, 0.1);
  transform: translateY(-4px);
}
.industry-grid-card:hover h3 { color: #3b5af5; }
.industry-grid-card:hover .learn-more::after { transform: translateX(4px); }

.industry-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.industry-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.industry-segment {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  background: #f3f4fb;
  padding: 4px 10px;
  border-radius: 6px;
}
.industry-grid-card h3 {
  font-size: 16.5px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color .2s;
}
.industry-grid-card > p {
  font-size: 15px;
  color: #464646;
  line-height: 1.6;
  margin-bottom: 14px;
}

.industry-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f1f7;
}
.industry-quick-stats span {
  display: inline-block;
  font-size: 11.5px;
  color: #555;
  background: #f8f9ff;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}
.industry-quick-stats span strong {
  color: #3b5af5;
  font-weight: 700;
}

.industry-grid-card .service-mini-features {
  border-top: none;
  padding-top: 0;
}

.industry-grid-card .learn-more {
  margin-top: auto;
  padding-top: 14px;
  display: inline-block;
  font-size: 15px;
  color: #3b5af5;
  font-weight: 700;
}
.industry-grid-card .learn-more::after {
  content: '';
  display: inline-block;
  margin-left: 4px;
  transition: transform .2s;
}

/* ── USE CASES GRID ── */
.industry-use-cases { background: #fff; }
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}
.use-case-card {
  background: linear-gradient(160deg, #fafbff 0%, #f5f7ff 100%);
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 26px 24px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.use-case-card:hover {
  border-color: #3b5af5;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 90, 245, 0.1);
}
.use-case-emoji {
  font-size: 36px;
  margin-bottom: 10px;
}
.use-case-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 12px;
}
.use-case-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.use-case-tag {
  display: inline-block;
  background: #fff;
  color: #3b5af5;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #d8defc;
}
.use-case-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ── INDUSTRY BENCHMARKS TABLE ── */
.industry-benchmarks { background: #fafbff; }
.industry-benchmarks .section-sub { margin: 0 auto 36px; }

.benchmark-table-wrap {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(10, 10, 35, 0.04);
}
.benchmark-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: left;
}
.benchmark-table thead {
  background: linear-gradient(135deg, #3b5af5 0%, #6c3ec8 100%);
  color: #fff;
}
.benchmark-table thead th {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  text-align: left;
}
.benchmark-table tbody tr {
  border-bottom: 1px solid #f0f1f7;
  transition: background .15s;
}
.benchmark-table tbody tr:hover { background: #f5f7ff; }
.benchmark-table tbody tr:last-child { border-bottom: none; }
.benchmark-table td {
  padding: 14px 20px;
  color: #2a2a44;
  vertical-align: middle;
}
.benchmark-table td:first-child {
  font-weight: 600;
  color: #0a0a23;
}
.benchmark-table td strong { color: #3b5af5; font-weight: 800; }
.bench-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  font-size: 14px;
  margin-right: 8px;
  vertical-align: middle;
}
.benchmark-note {
  text-align: center;
  font-size: 12px;
  color: #888;
  font-style: italic;
  padding: 16px 20px;
  background: #fafbff;
  border-top: 1px solid #f0f1f7;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .industries-index-grid { grid-template-columns: repeat(2, 1fr); }
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); }

  /* Make the table scroll horizontally rather than wrap awkwardly */
  .benchmark-table-wrap { overflow-x: auto; }
  .benchmark-table { min-width: 640px; }
}

@media (max-width: 768px) {
  .industries-index-grid { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .industry-card-header { flex-wrap: wrap; gap: 8px; }
  .benchmark-table thead th,
  .benchmark-table td { padding: 12px 14px; font-size: 12.5px; }
  .bench-icon { width: 26px; height: 26px; font-size: 12px; margin-right: 6px; }
}

.about-us {
	color:#464646;
}
.about-us h2 {
  font-size: 30px;
  color: #0a0a23;
  margin-bottom: 14px;
  font-weight:700;
}
.about-us h3 {
  font-size: 22px;
  color: #0a0a23;
  margin-bottom: 14px;
  font-weight:500;
}
.about-us h4 {
  font-size: 18px;
  color: #0a0a23;
  margin-bottom: 14px;
  font-weight:500;
}
.about-us p{
    font-size:15px;
    line-height:1.7;
    margin-bottom:15px;
}
.about-us ul{
    padding-left:20px;
    margin:15px 0;
    list-style-type:disc;
}

.about-us ul li{
    color:#464646;
    line-height:25px;
    margin-bottom:10px;
    font-size:15px;
}
.location-icon{
    width:45px;
    height:50px;
    background-image:url(../img/location.svg);
    background-repeat:no-repeat;
    background-size:contain;
    display:inline-block;
}
/* ==========================================================================
   CONTENT-WITH-IMAGE SECTIONS — 4 variants
   Append this entire block to the bottom of your existing style.css.
   ========================================================================== */

.content-image-section {
  background: #fff;
  overflow: hidden; /* contain decorative blobs */
}

/* Alternate-row background tint */
.content-image-section.ci-variant-stats { background: #fafbff; }
.content-image-section.ci-variant-rows  { background: #fafbff; padding-bottom: 100px; }

/* Base 2-column wrapper */
.ci-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
}
.ci-reverse { direction: rtl; }
.ci-reverse > * { direction: ltr; }

/* ── CONTENT COLUMN (shared) ── */
.ci-content-col .section-eyebrow { margin-bottom: 14px; }
.ci-heading {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  color: #0a0a23;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.ci-content-col p {
  font-size: 15px;
  color: #464646;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ── IMAGE COLUMN (shared) ── */
.ci-image-col {
  position: relative;
}
.ci-image-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 10, 35, 0.12);
}
.ci-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  /*aspect-ratio: 4 / 3;*/
  object-fit: cover;
  background: linear-gradient(135deg, #eef2ff, #f5f0ff);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  .content-image-section { padding: 70px 60px; }
}

@media (max-width: 1024px) {
  .content-image-section { padding: 60px 30px; }
  .ci-wrapper,
  .ci-row { grid-template-columns: 1fr; gap: 40px; }
  .ci-reverse,
  .ci-row-reverse { direction: ltr; }
  .ci-image-col { order: 1; max-width: 560px; margin: 0 auto; }
  .ci-content-col { order: 2; }
  .ci-row .ci-row-image { order: 1; }
  .ci-row .ci-row-content { order: 2; }
  .ci-row { margin-bottom: 50px; }
  .ci-image-tilted { transform: none; }
  .ci-stats-card { position: relative; bottom: auto; left: auto; transform: none; margin: -20px auto 0; }
  .ci-variant-stats .ci-wrapper { padding-bottom: 0; }
  .ci-decorative-wrap { padding: 20px; }
  .ci-mini-card-tl { top: 0; left: 0; }
  .ci-mini-card-br { bottom: 0; right: 0; }
}

@media (max-width: 768px) {
  .content-image-section { padding: 50px 20px; }
  .ci-wrapper, .ci-row { gap: 32px; }
  .ci-heading { font-size: 26px; }
  .ci-lead { font-size: 15px; }
  .ci-checklist { grid-template-columns: 1fr; gap: 8px; }
  .ci-row-list { grid-template-columns: 1fr; }
  .ci-cta-row .btn-primary,
  .ci-cta-row .btn-outline { width: 100%; text-align: center; }
  .ci-floating-badge { bottom: 14px; left: 14px; padding: 10px 14px; gap: 10px; }
  .ci-badge-icon { width: 36px; height: 36px; font-size: 20px; }
  .ci-stats-card { padding: 14px 18px; gap: 14px; flex-wrap: wrap; justify-content: center; }
  .ci-stat-divider { display: none; }
  .ci-stat-num { font-size: 22px; }
  .ci-mini-card { padding: 10px 12px; }
  .ci-mini-card strong { font-size: 13px; }
  .ci-mini-card span { font-size: 10px; }
  .ci-stats-inline { gap: 18px; }
  .ci-inline-num { font-size: 22px; }
  .ci-rows-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .ci-blob { display: none; }
  .ci-decorative-wrap { padding: 0; }
}

/* ==========================================================================
   FOUR-BOX STATS SECTION — "By the Numbers"
   Append this to the bottom of your existing style.css.
   ========================================================================== */

.fourbox-section {
  background: #fff;
}

.fourbox-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.fourbox-header .section-sub { margin: 12px auto 0; }

/* Grid */
.fourbox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Each stat box */
.fourbox-stat {
  position: relative;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  padding: 32px 26px 28px;
  text-align: left;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

/* Colored top accent bar */
.fourbox-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: currentColor;
  opacity: 0.9;
}

.fourbox-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 10, 35, 0.08);
}

/* Color variants — currentColor cascades to top bar and label */
.fourbox-stat-blue   { color: #3b5af5; }
.fourbox-stat-blue:hover   { border-color: #3b5af5; }
.fourbox-stat-purple { color: #6c3ec8; }
.fourbox-stat-purple:hover { border-color: #6c3ec8; }
.fourbox-stat-green  { color: #2a8a5a; }
.fourbox-stat-green:hover  { border-color: #2a8a5a; }
.fourbox-stat-orange { color: #e05c2a; }
.fourbox-stat-orange:hover { border-color: #e05c2a; }

/* Icon tile */
.fourbox-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.fourbox-stat-blue   .fourbox-stat-icon { background: rgba(59, 90, 245, 0.1); }
.fourbox-stat-purple .fourbox-stat-icon { background: rgba(108, 62, 200, 0.1); }
.fourbox-stat-green  .fourbox-stat-icon { background: rgba(42, 138, 90, 0.1); }
.fourbox-stat-orange .fourbox-stat-icon { background: rgba(224, 92, 42, 0.1); }

/* Big number */
.fourbox-stat-num {
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  color: #0a0a23;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

/* Label (uppercase, colored) */
.fourbox-stat-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: currentColor;
  margin-bottom: 14px;
}

/* Description paragraph */
.fourbox-stat p {
  font-size: 15px;
  color: #464646;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  .fourbox-section { padding: 70px 60px; }
}

@media (max-width: 1024px) {
  .fourbox-section { padding: 60px 30px; }
  .fourbox-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .fourbox-stat-num { font-size: 36px; }
}

@media (max-width: 640px) {
  .fourbox-section { padding: 50px 20px; }
  .fourbox-grid { grid-template-columns: 1fr; gap: 16px; }
  .fourbox-header { margin-bottom: 36px; }
  .fourbox-stat { padding: 26px 22px 22px; }
  .fourbox-stat-num { font-size: 38px; }
}
/* ==========================================================================
   FIVE-BOX STATS SECTION — "By the Numbers" (center-aligned)
   Append this to the bottom of your existing style.css.
   ========================================================================== */

.fivebox-section {
  background: #fff;
}

.fivebox-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.fivebox-header .section-sub { margin: 12px auto 0; }

/* Grid: 5 columns in a row */
.fivebox-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Each stat box — CENTER ALIGNED */
.fivebox-stat {
  position: relative;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  padding: 32px 22px 26px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

/* Colored top accent bar */
.fivebox-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: currentColor;
  opacity: 0.9;
}

.fivebox-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 10, 35, 0.08);
}

/* Color variants — currentColor cascades to top bar and label */
.fivebox-stat-blue   { color: #3b5af5; }
.fivebox-stat-blue:hover   { border-color: #3b5af5; }
.fivebox-stat-purple { color: #6c3ec8; }
.fivebox-stat-purple:hover { border-color: #6c3ec8; }
.fivebox-stat-green  { color: #2a8a5a; }
.fivebox-stat-green:hover  { border-color: #2a8a5a; }
.fivebox-stat-orange { color: #e05c2a; }
.fivebox-stat-orange:hover { border-color: #e05c2a; }
.fivebox-stat-pink   { color: #bd2884; }
.fivebox-stat-pink:hover   { border-color: #bd2884; }

/* Icon tile — centered */
.fivebox-stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.fivebox-stat-blue   .fivebox-stat-icon { background: rgba(59, 90, 245, 0.1); }
.fivebox-stat-purple .fivebox-stat-icon { background: rgba(108, 62, 200, 0.1); }
.fivebox-stat-green  .fivebox-stat-icon { background: rgba(42, 138, 90, 0.1); }
.fivebox-stat-orange .fivebox-stat-icon { background: rgba(224, 92, 42, 0.1); }
.fivebox-stat-pink   .fivebox-stat-icon { background: rgba(189, 40, 132, 0.1); }

/* Big number */
.fivebox-stat-num {
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  color: #0a0a23;
  letter-spacing: -1.2px;
  margin-bottom: 8px;
}

/* Label (uppercase, colored) */
.fivebox-stat-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: currentColor;
  margin-bottom: 12px;
}

/* Description */
.fivebox-stat p {
  font-size: 15px;
  color: #464646;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  .fivebox-section { padding: 70px 60px; }
  .fivebox-stat-num { font-size: 34px; }
}

/* Tablet: 5-in-a-row becomes 3 on top + 2 centered below */
@media (max-width: 1024px) {
  .fivebox-section { padding: 60px 30px; }

  .fivebox-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  .fivebox-grid > .fivebox-stat:nth-child(1),
  .fivebox-grid > .fivebox-stat:nth-child(2),
  .fivebox-grid > .fivebox-stat:nth-child(3) {
    grid-column: span 2;
  }
  .fivebox-grid > .fivebox-stat:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .fivebox-grid > .fivebox-stat:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

/* Small tablet: 2 columns, last item full-width */
@media (max-width: 768px) {
  .fivebox-grid { grid-template-columns: repeat(2, 1fr); }
  .fivebox-grid > .fivebox-stat:nth-child(1),
  .fivebox-grid > .fivebox-stat:nth-child(2),
  .fivebox-grid > .fivebox-stat:nth-child(3),
  .fivebox-grid > .fivebox-stat:nth-child(4) {
    grid-column: auto;
  }
  .fivebox-grid > .fivebox-stat:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
  }
}

/* Mobile: single column */
@media (max-width: 540px) {
  .fivebox-section { padding: 50px 20px; }
  .fivebox-header { margin-bottom: 36px; }
  .fivebox-grid { grid-template-columns: 1fr; gap: 14px; }
  .fivebox-grid > .fivebox-stat { grid-column: 1 / -1 !important; max-width: none; }
  .fivebox-stat { padding: 26px 22px 22px; }
  .fivebox-stat-num { font-size: 36px; }
}
/* ==========================================================================
   TWO-BOX STATS SECTION — "By the Numbers"
   Append this to the bottom of your existing style.css.
   ========================================================================== */

.twobox-section {
  background: #fff;
}

.twobox-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.twobox-header .section-sub { margin: 12px auto 0; }

/* Grid */
.twobox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Each stat box */
.twobox-stat {
  position: relative;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  padding: 32px 26px 28px;
  text-align: left;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

/* Colored top accent bar */
.twobox-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: currentColor;
  opacity: 0.9;
}

.twobox-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 10, 35, 0.08);
}

/* Color variants — currentColor cascades to top bar and label */
.twobox-stat-blue   { color: #3b5af5; }
.twobox-stat-blue:hover   { border-color: #3b5af5; }
.twobox-stat-purple { color: #6c3ec8; }
.twobox-stat-purple:hover { border-color: #6c3ec8; }
.twobox-stat-green  { color: #2a8a5a; }
.twobox-stat-green:hover  { border-color: #2a8a5a; }
.twobox-stat-orange { color: #e05c2a; }
.twobox-stat-orange:hover { border-color: #e05c2a; }

/* Icon tile */
.twobox-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.twobox-stat-blue   .twobox-stat-icon { background: rgba(59, 90, 245, 0.1); }
.twobox-stat-purple .twobox-stat-icon { background: rgba(108, 62, 200, 0.1); }
.twobox-stat-green  .twobox-stat-icon { background: rgba(42, 138, 90, 0.1); }
.twobox-stat-orange .twobox-stat-icon { background: rgba(224, 92, 42, 0.1); }

/* Big number */
.twobox-stat-num {
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  color: #0a0a23;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

/* Label (uppercase, colored) */
.twobox-stat-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: currentColor;
  margin-bottom: 14px;
}

/* Description paragraph */
.twobox-stat p {
  font-size: 15px;
  color: #464646;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  .twobox-section { padding: 70px 60px; }
}

@media (max-width: 1024px) {
  .twobox-section { padding: 60px 30px; }
  .twobox-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .twobox-stat-num { font-size: 36px; }
}

@media (max-width: 640px) {
  .twobox-section { padding: 50px 20px; }
  .twobox-grid { grid-template-columns: 1fr; gap: 16px; }
  .twobox-header { margin-bottom: 36px; }
  .twobox-stat { padding: 26px 22px 22px; }
  .twobox-stat-num { font-size: 38px; }
}

/* ── OUR STORY ── */
.about-story {
  padding: 90px 60px;
  background: #fff;
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.story-image-col { position: relative; }
.story-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.story-image-placeholder {
  height: 420px;
  background: linear-gradient(135deg, #3b5af5 0%, #6c3ec8 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(59, 90, 245, 0.2);
}
.story-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 60%);
}
.story-emoji {
  font-size: 130px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.2));
  position: relative;
  z-index: 1;
}
.story-floating-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(10, 10, 35, 0.18);
  z-index: 2;
}
.story-floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fef9e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.story-floating-card strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #0a0a23;
}
.story-floating-card span {
  font-size: 11.5px;
  color: #777;
}

.story-content-col h2 {
  font-size: clamp(26px, 3vw, 30px);
  font-weight: 700;
  color: #0a0a23;
  line-height: 1.2;
  margin: 14px 0 18px;
  letter-spacing: -0.4px;
}
.story-content-col p {
  font-size: 15px;
  color: #464646;
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-content-col p.lead {
  font-size: 17px;
  color: #2a2a44;
  font-weight: 500;
}
.story-content-col p strong {
  color: #3b5af5;
  font-weight: 700;
}

/* ── WHAT WE BELIEVE ── */
.about-belief {
  background: #fafbff;
  padding: 80px 60px;
}
.belief-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.belief-header h2 {
  font-size: clamp(26px, 3vw, 30px);
  font-weight: 700;
  color: #0a0a23;
  line-height: 1.2;
  margin: 14px 0 16px;
  letter-spacing: -0.4px;
}
.belief-header p {
  font-size: 15px;
  color: #464646;
  line-height: 1.75;
}

.belief-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.belief-pillar {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-align: left;
}
.belief-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(59, 90, 245, 0.08);
  border-color: #c0caff;
}
.belief-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.belief-pillar h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 10px;
}
.belief-pillar p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
}

/* ── WHAT WE DO (numbered service rows) ── */
.about-services {
  background: #fff;
  padding: 90px 60px;
}
.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.services-header h2 {
  font-size: clamp(26px, 3vw, 30px);
  font-weight: 700;
  color: #0a0a23;
  line-height: 1.2;
  margin: 14px 0 16px;
}
.services-header p {
  font-size: 15px;
  color: #464646;
  line-height: 1.7;
}

.services-list {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-row:hover {
  border-color: #3b5af5;
  box-shadow: 0 12px 32px rgba(59, 90, 245, 0.08);
  transform: translateY(-2px);
}
.service-number {
  font-size: 42px;
  font-weight: 500;
  background: linear-gradient(135deg, #3b5af5, #6c3ec8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -1.5px;
  border-right: 1px solid #f0f1f7;
  background-color: #fafbff;
}
.service-row-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 30px 26px 6px;
}
.service-row-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.service-row-text h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 8px;
}
.service-row-text p {
  font-size: 15px;
  color: #464646;
  line-height: 1.75;
  margin: 0;
}

/* ── OUR APPROACH ── */
.about-approach {
  background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 100%);
  color: #fff;
  padding: 90px 60px;
  position: relative;
  overflow: hidden;
}
.about-approach::before,
.about-approach::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.about-approach::before {
  width: 400px; height: 400px;
  background: #3b5af5;
  top: -100px; left: -100px;
}
.about-approach::after {
  width: 320px; height: 320px;
  background: #6c3ec8;
  bottom: -100px; right: -50px;
}
.approach-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}
.approach-content-col .section-eyebrow { color: #a5b8ff; }
.approach-content-col h2 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin: 14px 0 18px;
  letter-spacing: -0.5px;
}
.approach-content-col p {
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 16px;
}

.approach-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.approach-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: left;
  transition: background .2s, transform .2s;
}
.approach-stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.approach-stat-num {
  font-size: 36px;
  font-weight: 500;
  background: linear-gradient(135deg, #a5b8ff, #d4b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.approach-stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ── OUR VALUES ── */
.about-values {
  background: #fff;
  padding: 90px 60px;
}
.values-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.values-header h2 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  color: #0a0a23;
  line-height: 1.2;
  margin: 14px 0 16px;
}
.values-header p {
  font-size: 15px;
  color: #464646;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

/* Top row: 3 cards × 2 cols each */
.values-grid > .value-card:nth-child(1),
.values-grid > .value-card:nth-child(2),
.values-grid > .value-card:nth-child(3) { grid-column: span 2; }

/* Bottom row: 2 cards × 3 cols each (centered) */
.values-grid > .value-card:nth-child(4) { grid-column: 2 / span 2; }
.values-grid > .value-card:nth-child(5) { grid-column: 4 / span 2; }

.value-card {
  position: relative;
  background: #fafbff;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  padding: 28px 24px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(59, 90, 245, 0.08);
  border-color: #c0caff;
  background: #fff;
}
.value-num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 32px;
  font-weight: 500;
  color: #e3e6f4;
  letter-spacing: -1px;
  line-height: 1;
}
.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.value-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 10px;
  line-height: 1.3;
}
.value-card p {
  font-size: 15px;
  color: #464646;
  line-height: 1.7;
  margin: 0;
}

/* ── INDUSTRIES STRIP TWEAKS ── */
.about-industries-strip {
  background: #fafbff;
  text-align: center;
  padding: 70px 60px;
}
.about-industries-strip .industry-tags { justify-content: center; margin-top: 32px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {

  .about-story-inner,
  .approach-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-image-col { max-width: 500px; margin: 0 auto; }
  .story-image-placeholder { height: 320px; }
  .story-emoji { font-size: 100px; }

  .belief-pillars { grid-template-columns: 1fr; max-width: 560px; }

  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .values-grid > .value-card:nth-child(1),
  .values-grid > .value-card:nth-child(2),
  .values-grid > .value-card:nth-child(3),
  .values-grid > .value-card:nth-child(4) { grid-column: auto; }
  .values-grid > .value-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 500px;
    justify-self: center;
  }
}

@media (max-width: 768px) {

  .about-story,
  .about-belief,
  .about-services,
  .about-approach,
  .about-values,
  .about-industries-strip { padding: 50px 20px; }

  .story-image-placeholder { height: 260px; }
  .story-emoji { font-size: 80px; }
  .story-floating-card { bottom: -16px; right: 0; padding: 10px 14px; }
  .story-floating-icon { width: 36px; height: 36px; font-size: 18px; }

  .service-row { grid-template-columns: 70px 1fr; }
  .service-number { font-size: 32px; }
  .service-row-content { flex-direction: column; gap: 14px; padding: 22px 22px 22px 4px; }
  .service-row-icon { width: 46px; height: 46px; font-size: 22px; }

  .approach-stats-col { grid-template-columns: 1fr 1fr; }
  .approach-stat-card { padding: 22px 18px; }
  .approach-stat-num { font-size: 30px; }

  .values-grid { grid-template-columns: 1fr; }
  .values-grid > .value-card:nth-child(5) { grid-column: 1 / -1; max-width: none; }
  .value-num { font-size: 28px; top: 18px; right: 18px; }
}
.email-icon-campaigns{
    width:50px;
    height:50px;
    background-repeat:no-repeat;
    background-size:contain;
    display:inline-block;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Crect x='7' y='12' width='36' height='24' rx='3' fill='%232563EB'/%3E%3Cpath d='M10 15L25 25L40 15' stroke='%23fff' stroke-width='2' fill='none'/%3E%3Cpath d='M25 6V14' stroke='%23F59E0B' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M21 10L25 6L29 10' stroke='%23F59E0B' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.email-icon-automation{
    width:50px;
    height:50px;
    background-repeat:no-repeat;
    background-size:contain;
    display:inline-block;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Crect x='8' y='12' width='24' height='18' rx='3' fill='%234F46E5'/%3E%3Cpath d='M10 15L20 22L30 15' stroke='%23fff' stroke-width='2' fill='none'/%3E%3Ccircle cx='37' cy='26' r='8' fill='%2310B981'/%3E%3Cpath d='M37 21V26L40 29' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.analytics-reporting{
    width:50px;
    height:50px;
    background-repeat:no-repeat;
    background-size:contain;
    display:inline-block;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Crect x='8' y='30' width='6' height='12' fill='%2310B981'/%3E%3Crect x='18' y='22' width='6' height='20' fill='%233B82F6'/%3E%3Crect x='28' y='14' width='6' height='28' fill='%23F59E0B'/%3E%3Crect x='38' y='8' width='6' height='34' fill='%23EF4444'/%3E%3C/svg%3E");
}

.segmentation-personalization{
    width:50px;
    height:50px;
    background-repeat:no-repeat;
    background-size:contain;
    display:inline-block;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Ccircle cx='16' cy='18' r='5' fill='%233B82F6'/%3E%3Ccircle cx='34' cy='18' r='5' fill='%23F59E0B'/%3E%3Ccircle cx='25' cy='34' r='5' fill='%2310B981'/%3E%3Cpath d='M16 28H34' stroke='%23374151' stroke-width='2'/%3E%3Cpath d='M25 28V34' stroke='%23374151' stroke-width='2'/%3E%3C/svg%3E");
}

.deliverability-management{
    width:50px;
    height:50px;
    background-repeat:no-repeat;
    background-size:contain;
    display:inline-block;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Crect x='8' y='12' width='34' height='22' rx='3' fill='%232563EB'/%3E%3Cpath d='M10 15L25 25L40 15' stroke='%23fff' stroke-width='2' fill='none'/%3E%3Ccircle cx='38' cy='38' r='6' fill='%2310B981'/%3E%3Cpath d='M35 38L37 40L41 36' stroke='%23fff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.smtp-server-services{
    width:50px;
    height:50px;
    background-repeat:no-repeat;
    background-size:contain;
    display:inline-block;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Crect x='10' y='8' width='30' height='12' rx='2' fill='%232563EB'/%3E%3Crect x='10' y='22' width='30' height='12' rx='2' fill='%2310B981'/%3E%3Ccircle cx='16' cy='14' r='2' fill='%23fff'/%3E%3Ccircle cx='16' cy='28' r='2' fill='%23fff'/%3E%3C/svg%3E");
}

.a-b-testing{
    width:50px;
    height:50px;
    background-repeat:no-repeat;
    background-size:contain;
    display:inline-block;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Crect x='6' y='10' width='16' height='30' rx='3' fill='%233B82F6'/%3E%3Crect x='28' y='10' width='16' height='30' rx='3' fill='%23F59E0B'/%3E%3Ctext x='14' y='30' font-size='14' text-anchor='middle' fill='%23fff'%3EA%3C/text%3E%3Ctext x='36' y='30' font-size='14' text-anchor='middle' fill='%23fff'%3EB%3C/text%3E%3C/svg%3E");
}

.drip-nurture-campaigns{
    width:50px;
    height:50px;
    background-repeat:no-repeat;
    background-size:contain;
    display:inline-block;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Crect x='8' y='10' width='34' height='20' rx='3' fill='%232563EB'/%3E%3Cpath d='M10 13L25 22L40 13' stroke='%23fff' stroke-width='2' fill='none'/%3E%3Cpath d='M25 32C22 36 20 38 20 41C20 44 22 46 25 46C28 46 30 44 30 41C30 38 28 36 25 32Z' fill='%2306B6D4'/%3E%3C/svg%3E");
}

.digital-marketing-strategy{
    width:50px;
    height:50px;
    background-repeat:no-repeat;
    background-size:contain;
    display:inline-block;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Ccircle cx='25' cy='25' r='14' fill='%23E5E7EB' stroke='%23374151' stroke-width='2'/%3E%3Ccircle cx='25' cy='25' r='6' fill='%23EF4444'/%3E%3C/svg%3E");
}
.location-icon{
    width:50px;
    height:50px;
    display:inline-block;
    background-repeat:no-repeat;
    background-size:contain;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cpath d='M25 5C17.82 5 12 10.82 12 18C12 28 25 45 25 45C25 45 38 28 38 18C38 10.82 32.18 5 25 5Z' fill='%23EF4444'/%3E%3Ccircle cx='25' cy='18' r='5' fill='%23fff'/%3E%3C/svg%3E");
}
/* E-Commerce */
.ecommerce-icon{
    width:25px;
    height:25px;
    display:inline-block;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cpath d='M10 14H14L18 30H36L40 18H20' fill='none' stroke='%232563EB' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='20' cy='38' r='3' fill='%2310B981'/%3E%3Ccircle cx='34' cy='38' r='3' fill='%2310B981'/%3E%3C/svg%3E");
}

/* Healthcare */
.healthcare-icon{
    width:25px;
    height:25px;
    display:inline-block;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Crect x='20' y='10' width='10' height='30' fill='%23EF4444'/%3E%3Crect x='10' y='20' width='30' height='10' fill='%23EF4444'/%3E%3C/svg%3E");
}

/* Real Estate */
.realestate-icon{
    width:25px;
    height:25px;
    display:inline-block;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cpath d='M10 24L25 10L40 24' fill='none' stroke='%23374151' stroke-width='3' stroke-linejoin='round'/%3E%3Crect x='15' y='24' width='20' height='16' fill='%2310B981'/%3E%3Crect x='22' y='30' width='6' height='10' fill='%23fff'/%3E%3C/svg%3E");
}

/* Restaurants */
.restaurant-icon{
    width:25px;
    height:25px;
    display:inline-block;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cpath d='M16 8V24' stroke='%23F59E0B' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M12 8V16' stroke='%23F59E0B' stroke-width='2'/%3E%3Cpath d='M16 8V16' stroke='%23F59E0B' stroke-width='2'/%3E%3Cpath d='M20 8V16' stroke='%23F59E0B' stroke-width='2'/%3E%3Cpath d='M32 8C28 16 28 24 32 42' stroke='%23EF4444' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Hotels */
.hotel-icon{
    width:25px;
    height:25px;
    display:inline-block;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Crect x='12' y='10' width='26' height='30' fill='%232563EB'/%3E%3Crect x='18' y='16' width='4' height='4' fill='%23fff'/%3E%3Crect x='28' y='16' width='4' height='4' fill='%23fff'/%3E%3Crect x='18' y='24' width='4' height='4' fill='%23fff'/%3E%3Crect x='28' y='24' width='4' height='4' fill='%23fff'/%3E%3Crect x='22' y='32' width='6' height='8' fill='%2310B981'/%3E%3C/svg%3E");
}

/* Manufacturing */
.manufacturing-icon{
    width:25px;
    height:25px;
    display:inline-block;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Crect x='10' y='18' width='30' height='22' fill='%236B7280'/%3E%3Cpath d='M10 18L18 10L26 18' fill='%239CA3AF'/%3E%3Crect x='16' y='26' width='4' height='6' fill='%23fff'/%3E%3Crect x='24' y='26' width='4' height='6' fill='%23fff'/%3E%3Crect x='32' y='26' width='4' height='6' fill='%23fff'/%3E%3C/svg%3E");
}

/* Education */
.education-icon{
    width:25px;
    height:25px;
    display:inline-block;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cpath d='M8 18L25 10L42 18L25 26Z' fill='%232563EB'/%3E%3Cpath d='M14 22V30C14 34 20 37 25 37C30 37 36 34 36 30V22' fill='%2310B981'/%3E%3C/svg%3E");
}

/* Travel */
.travel-icon{
    width:25px;
    height:25px;
    display:inline-block;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cpath d='M25 6L29 20H44L32 28L36 42L25 34L14 42L18 28L6 20H21Z' fill='%23F59E0B'/%3E%3C/svg%3E");
}

/* NGO */
.ngo-icon{
    width:25px;
    height:25px;
    display:inline-block;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cpath d='M25 42S10 32 10 20C10 14 14 10 20 10C23 10 25 12 25 12S27 10 30 10C36 10 40 14 40 20C40 32 25 42 25 42Z' fill='%23EF4444'/%3E%3C/svg%3E");
}

/* IT & SaaS */
.it-icon{
    width:25px;
    height:25px;
    display:inline-block;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Crect x='10' y='12' width='30' height='20' rx='3' fill='%232563EB'/%3E%3Cpath d='M16 38H34' stroke='%23374151' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M20 20H30' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M20 26H26' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Finance */
.finance-icon{
    width:25px;
    height:25px;
    display:inline-block;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Ccircle cx='25' cy='25' r='14' fill='%2310B981'/%3E%3Cpath d='M25 16V34' stroke='%23fff' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M20 20C20 18 22 16 25 16C28 16 30 18 30 20C30 24 20 24 20 30C20 32 22 34 25 34C28 34 30 32 30 30' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
}

/* Small Business */
.smallbusiness-icon{
    width:25px;
    height:25px;
    display:inline-block;
    background-size:contain;
    background-repeat:no-repeat;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Crect x='12' y='18' width='26' height='20' fill='%23F59E0B'/%3E%3Cpath d='M10 18L14 10H36L40 18Z' fill='%23EF4444'/%3E%3Crect x='20' y='26' width='10' height='12' fill='%23fff'/%3E%3C/svg%3E");
}
.content-image-section:nth-of-type(even) .ci-wrapper {
  direction: rtl;
}
.content-image-section:nth-of-type(even) .ci-wrapper > * {
  direction: ltr;
}
.ci-wrapper.ci-flip {
  direction: rtl;
}
.ci-wrapper.ci-flip > * {
  direction: ltr;
}
@media (max-width: 1024px) {
  .content-image-section:nth-of-type(even) .ci-wrapper,
  .ci-wrapper.ci-flip {
    direction: ltr;
  }
}
ul, ol{
    padding-left:20px;
    margin:15px 0;
    list-style-type:disc;
}

ul li, ol li{
    color:#464646;
    line-height:25px;
    margin-bottom:10px;
    font-size:15px;
}
.compare-table {
  width: 100%;
  margin: 32px auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(10, 10, 35, 0.06);
  background: #fff;
  font-family: inherit;
}
.compare-table tr:first-child td {
  padding: 22px 26px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  position: relative;
}
.compare-table tr:first-child td:first-child {
  background: linear-gradient(135deg, #e0364a 0%, #c92034 100%);
}
.compare-table tr:first-child td:last-child {
  background: linear-gradient(135deg, #3b5af5 0%, #6c3ec8 100%);
}
.compare-table tr:first-child td:first-child strong::before {
  content: '✖';
  font-size: 18px;
  margin-right: 4px;
}
.compare-table tr:first-child td:last-child strong::before {
  content: "✓";
  font-size: 18px;
  margin-right: 4px;
}
.compare-table tr:not(:first-child) td {
  padding: 18px 26px;
  font-size: 15px;
  line-height: 1.65;
  border-bottom: 1px solid #f0f1f7;
  vertical-align: top;
  position: relative;
  transition: background .2s;
}
.compare-table tr:not(:first-child) td:first-child {
  color: #464646;
  background: #fafbff;
  padding-left: 52px;
}
.compare-table tr:not(:first-child) td:first-child::before {
  content: '✖';
  position: absolute;
  left: 22px;
  top: 18px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fdebec;
  color: #e0364a;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-table tr:not(:first-child) td:last-child {
  color: #0a0a23;
  font-weight: 500;
  background: #fff;
  padding-left: 52px;
}
.compare-table tr:not(:first-child) td:last-child::before {
  content: "✓";
  position: absolute;
  left: 22px;
  top: 18px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dcfce7;
  color: #047857;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-table tr:not(:first-child):hover td:first-child { background: #fef3f4; }
.compare-table tr:not(:first-child):hover td:last-child  { background: #f5f7ff; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td { width: 50%; }
@media (max-width: 768px) {
  .compare-table {
    border-radius: 14px;
    box-shadow: none;
    background: transparent;
    display: block;
    overflow: visible;
  }
  .compare-table tbody { display: block; }
  .compare-table tr {
    display: block;
    margin-bottom: 0;
  }
  .compare-table tr:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }
  .compare-table tr:first-child td {
    padding: 14px 12px;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(10, 10, 35, 0.1);
  }
  .compare-table tr:not(:first-child) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }
  .compare-table tr:not(:first-child) td {
    display: block;
    width: auto;
    padding: 16px 14px 16px 42px;
    font-size: 13px;
    line-height: 1.55;
    border: 1px solid #f0f1f7;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(10, 10, 35, 0.03);
  }
  .compare-table tr:not(:first-child) td:first-child {
    border-left: 3px solid #e0364a;
  }
  .compare-table tr:not(:first-child) td:last-child {
    border-left: 3px solid #3b5af5;
  }
  .compare-table tr:not(:first-child) td::before {
    left: 14px;
    top: 16px;
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}
@media (max-width: 480px) {
	.compare-table tr:not(:first-child) {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #e8e8f0;
  }
  .compare-table tr:not(:first-child):last-child { border-bottom: none; }
  .compare-table tr:first-child td {
    font-size: 11.5px;
    padding: 12px 8px;
    letter-spacing: 0.8px;
  }
}
/* ==========================================================================
   COMPANY DROPDOWN — compact nav dropdown (not a full mega menu)
   ========================================================================== */

.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: #333;
  transition: color .2s;
}
.nav-item.has-dropdown .nav-trigger:hover { color: #3b5af5; }
.nav-item.has-dropdown:hover .nav-arrow { transform: rotate(180deg); color: #3b5af5; }

/* Dropdown panel (desktop) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(10, 10, 35, 0.12);
  padding: 8px;
  margin-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 99;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown links */
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 9px;
  color: #0a0a23;
  text-decoration: none;
  transition: background .18s;
}
.dropdown-link:hover { background: #f5f7ff; }

.dropdown-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.dropdown-link:hover .dropdown-icon { background: #e0e8ff; }

.dropdown-text { display: flex; flex-direction: column; line-height: 1.3; }
.dropdown-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #0a0a23;
}
.dropdown-link:hover .dropdown-text strong { color: #3b5af5; }
.dropdown-text small {
  font-size: 11.5px;
  color: #888;
  margin-top: 1px;
}

/* MOBILE — accordion behavior */
@media (max-width: 992px) {
  .nav-item.has-dropdown { width: 100%; position: relative; }

  .nav-item.has-dropdown > .nav-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #0a0a23;
    border-bottom: 1px solid #f0f1f7;
    width: 100%;
    transition: background .2s, color .2s, padding-left .2s;
  }
  .nav-item.has-dropdown > .nav-trigger:hover {
    background: #f5f7ff;
    color: #3b5af5;
    padding-left: 28px;
  }

  .nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
  }
  .nav-item.has-dropdown .nav-arrow {
    font-size: 20px;
    color: #999;
    transition: transform .25s ease, color .2s;
  }
  .nav-item.has-dropdown.active > .nav-trigger {
    background: #f5f7ff;
    color: #3b5af5;
  }
  .nav-item.has-dropdown.active > .nav-trigger .nav-arrow {
    transform: rotate(180deg);
    color: #3b5af5;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
    width: 100%;
    background: #fafbff;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .dropdown-menu::before { display: none; }
  .nav-item.has-dropdown.active .dropdown-menu {
    max-height: 600px;
  }

  .dropdown-link {
    padding: 12px 22px 12px 36px;
    border-radius: 0;
    border-bottom: 1px solid #eef0f8;
  }
  .dropdown-link:last-child { border-bottom: none; }
  .dropdown-link:hover { background: #eef2ff; }
  .dropdown-icon { width: 34px; height: 34px; font-size: 16px; }
}
.contact-main { background: #fff; padding: 70px 60px 80px; }
.contact-main-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 50px; max-width: 1180px; margin: 0 auto; align-items: start; }

.contact-form-col h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; color: #0a0a23; line-height: 1.2; margin: 12px 0 12px; letter-spacing: -0.4px; }
.contact-form-intro { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 28px; }

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .form-group { margin-bottom: 18px; display: flex; flex-direction: column; }
.contact-form label { font-size: 13px; font-weight: 700; color: #0a0a23; margin-bottom: 7px; }
.contact-form label span { color: #e0364a; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; padding: 12px 14px; border: 1px solid #d8dceb; border-radius: 9px; font-size: 14px; font-family: inherit; color: #111; outline: none; background: #fff; transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #3b5af5; box-shadow: 0 0 0 3px rgba(59,90,245,0.12); }
.contact-form textarea { resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }

.form-consent { margin: 4px 0 22px; }
.form-consent label { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; font-weight: 500; color: #666; line-height: 1.5; cursor: pointer; }
.form-consent input { width: auto; margin-top: 2px; flex-shrink: 0; accent-color: #3b5af5; }
.form-consent a { color: #3b5af5; font-weight: 600; }

.contact-submit { border: none; cursor: pointer; font-size: 14px; }
.form-success { display: none; margin-top: 18px; padding: 14px 18px; background: #dcfce7; border: 1px solid #86efac; border-radius: 10px; color: #047857; font-size: 13.5px; font-weight: 600; }
.form-success.show { display: block; }

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-side-card { background: #fafbff; border: 1px solid #e8e8f0; border-radius: 16px; padding: 26px 24px; }
.contact-side-card h3 { font-size: 16px; font-weight: 800; color: #0a0a23; margin-bottom: 16px; }
.contact-side-list { list-style: none; padding: 0; margin: 0; }
.contact-side-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: #444; font-weight: 500; padding: 7px 0; line-height: 1.5; }
.contact-side-list li span { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: #dcfce7; color: #047857; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 1px; }

.contact-side-hours .hours-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid #eef0f8; font-size: 13.5px; color: #555; }
.contact-side-hours .hours-row:last-of-type { border-bottom: none; }
.contact-side-hours .hours-row strong { color: #0a0a23; font-weight: 700; }
.contact-side-hours .hours-note { font-size: 11.5px; color: #999; margin-top: 12px; font-style: italic; }

.contact-side-cta { background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 100%); border-color: #1a1a3e; text-align: center; }
.contact-side-cta .side-cta-emoji { font-size: 34px; margin-bottom: 6px; }
.contact-side-cta h3 { color: #fff; }
.contact-side-cta p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.6; margin-bottom: 16px; }
.contact-side-cta .btn-trial { background: #fff; color: #3b5af5; font-weight: 700; }
.contact-side-cta .btn-trial:hover { background: #eef2ff; color: #2a47e0; }

/* Responsive */
@media (max-width: 1024px) {
  .contact-main { padding: 60px 30px; }
  .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-map-section { padding: 60px 30px; }
}
@media (max-width: 768px) {
  .contact-main { padding: 50px 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-submit { width: 100%; }
  .contact-map-placeholder { padding: 40px 20px; }
}
.cta-status {
  min-height: 22px;
  font-weight: 700;
  color: #ffe0df;
  padding-top:20px;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(8, 16, 28, 0.68);
}

.modal.is-open {
  display: grid;
}
.modal-card {
  width: min(640px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  border-radius: 18px;
  background: #ffffff;
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}
.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 26px 0;
}
.modal-head p {
  margin: 8px 0 0;
  color: #66758a;
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: left;
}

.modal-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #42526a;
  background: #edf2f7;
  font-size: 1.4rem;
  line-height: 1;
}
.popup-form {
  display: grid;
  gap: 14px;
  padding: 24px 26px 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.field-full {
  grid-column: 1 / -1;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-status {
  min-height: 22px;
  color: #66758a;
  font-size: 0.95rem;
  font-weight: 700;
}
.form-status.is-success {
  color: #08795f;
}
.form-status.is-error {
  color: #c83535;
}
.thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
    background: linear-gradient(135deg, #fff7f3 0%, #ffffff 100%);
}

.thank-you-box {
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border: 1px solid #f3f3f3;
    position: relative;
    overflow: hidden;
}

.thank-you-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: rgba(244, 98, 45, 0.08);
    border-radius: 50%;
}

.thank-you-box img {
    margin-bottom: 20px;
}

.success-icon {
    width: 95px;
    height: 95px;
    line-height: 95px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(244, 98, 45, 0.1);
    color: #f4622d;
    font-size: 48px;
}

.thank-you-box h1 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.thank-you-box h3 {
    font-size: 24px;
    color: #374151;
    margin-bottom: 22px;
    line-height: 1.5;
}

.ref-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    margin: 25px 0;
    font-size: 17px;
    color: #111827;
}

.ref-box strong {
    color: #3b5af5;
}

.contact-text {
    font-size: 18px;
    color: #374151;
    margin-bottom: 18px;
}

.contact-info {
    display: inline-block;
    background: linear-gradient(135deg,#3b5af5,#6c3ec8);
    color: #fff;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(244, 98, 45, 0.25);
}

.contact-info i {
    margin-right: 8px;
}

.note-text {
    font-size: 15px;
    color: #6b7280;
    margin-top: 10px;
}

.home-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    border-radius: 12px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.home-btn:hover {
    background: #f4622d;
    color: #fff;
}

@media (max-width: 768px) {

    .thank-you-box {
        padding: 35px 22px;
    }

    .thank-you-box h1 {
        font-size: 30px;
    }

    .thank-you-box h3 {
        font-size: 20px;
    }

    .contact-info {
        font-size: 16px;
        padding: 14px 18px;
    }
}
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 10px;
}
.icon-zap,
.icon-refresh,
.icon-shield {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(240 249 255 / 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    margin-top: 3px;
}

/* Common SVG */
.icon-zap::before,
.icon-refresh::before,
.icon-shield::before {
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Zap Icon */
.icon-zap::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23f59e0b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z'/%3E%3C/svg%3E");
}

/* Refresh Icon */
.icon-refresh::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230ea5e9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8'/%3E%3Cpath d='M21 3v5h-5'/%3E%3Cpath d='M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16'/%3E%3Cpath d='M8 16H3v5'/%3E%3C/svg%3E");
    animation: rotateIcon 4s linear infinite;
}

/* Shield Icon */
.icon-shield::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E");
}
.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e8ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}
.gallery-category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}
.gallery-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:.4s;
}
.gallery-card:hover img{
    transform:scale(1.08);
}
.gallery-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:250px;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.3s;
}
.gallery-card:hover .gallery-overlay{
    opacity:1;
}
.gallery-btn{
    background:#fff;
    color:#000;
    border:none;
    padding:10px 20px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
}
.gallery-info{
    padding:15px;
    text-align:center;
}
.gallery-info h4{
    margin:0;
    font-size:18px;
    font-weight:600;
    color:#222;
}
/* Popup */
.gallery-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.92);
    z-index:99999;
    overflow:auto;
}
.gallery-modal-content{
    width:90%;
    max-width:1200px;
    margin:40px auto;
    background:#fff;
    border-radius:10px;
    padding:25px;
    position:relative;
}
.gallery-close{
    position:absolute;
    right:20px;
    top:10px;
    font-size:35px;
    cursor:pointer;
}
#galleryTitle{
    margin-bottom:20px;
    text-align:center;
}
.gallery-popup-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}
.gallery-popup-grid img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:8px;
}

@media(max-width:991px){
    .gallery-category-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .gallery-popup-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .gallery-category-grid{
        grid-template-columns:1fr;
    }
    .gallery-popup-grid{
        grid-template-columns:1fr;
    }
}
/* Slider */
.image-slider{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    z-index:999999;
}

.slider-img{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    max-width:90%;
    max-height:85%;
    border-radius:10px;
}

.slider-close{
    position:absolute;
    top:15px;
    right:25px;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}

.slider-prev,
.slider-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:50px;
    color:#fff;
    cursor:pointer;
    padding:15px;
    user-select:none;
}

.slider-prev{
    left:20px;
}

.slider-next{
    right:20px;
}
/* ==========================================================================
   COLLAPSIBLE / ACCORDION  —  FAQ & Content
   Overrides the old static .faq-grid / .faq-card styles.
   ========================================================================== */

/* Container */
.collapse-list {
  max-width: 860px;
  margin: 15px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Single item wrapper */
.collapse-item {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.collapse-item.open {
  border-color: #3b5af5;
  box-shadow: 0 8px 28px rgba(59, 90, 245, 0.09);
}

/* Trigger button (the clickable header row) */
.collapse-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background .18s;
}
.collapse-trigger:hover { background: #f5f7ff; }
.collapse-item.open .collapse-trigger { background: #f5f7ff; }

/* "Q" badge */
.collapse-q {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #3b5af5;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  transition: background .2s;
}
.collapse-item.open .collapse-q { background: #6c3ec8; }

/* Title text */
.collapse-title {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #0a0a23;
  line-height: 1.4;
  transition: color .2s;
}
.collapse-item.open .collapse-title { color: #3b5af5; }

/* ± icon */
.collapse-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef2ff;
  color: #3b5af5;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .3s ease, color .2s;
  line-height: 1;
}
.collapse-item.open .collapse-icon {
  background: #3b5af5;
  color: #fff;
  transform: rotate(0deg);
}

/* Animated body panel */
.collapse-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.4, 0, .2, 1);
}
.collapse-body p {
  padding: 0 22px 22px 66px; /* aligns with title text */
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}
.collapse-body p:first-child { padding-top: 4px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .collapse-list { margin-top: 32px; gap: 8px; }
  .collapse-trigger { padding: 16px 18px; gap: 12px; }
  .collapse-title { font-size: 14px; }
  .collapse-body p { padding: 0 18px 18px 54px; font-size: 13.5px; }
  .collapse-q { width: 26px; height: 26px; font-size: 11px; }
  .collapse-icon { width: 24px; height: 24px; font-size: 16px; }
}

@media (max-width: 480px) {
  .collapse-body p { padding: 0 16px 16px 16px; }
}