html {
  font-size: 15px;
  font-family: 'Inter', "Segoe UI", Arial, sans-serif;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* ── Illustration circles ── */
.sathya-illus-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sathya-illus-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7.5rem;
  transition: transform .35s ease, box-shadow .35s ease;
}
.sathya-illus-circle:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 56px rgba(0,0,0,.14);
}
.sathya-illus-circle.blue   { background: linear-gradient(135deg,#dbe8ff,#b8d0ff); color:#1a56db; box-shadow:0 10px 36px rgba(26,86,219,.22); }
.sathya-illus-circle.green  { background: linear-gradient(135deg,#d1fae5,#6ee7b7); color:#047857; box-shadow:0 10px 36px rgba(4,120,87,.22); }
.sathya-illus-circle.gold   { background: linear-gradient(135deg,#fef3c7,#fcd34d); color:#b45309; box-shadow:0 10px 36px rgba(180,83,9,.22); }
.sathya-illus-circle.purple { background: linear-gradient(135deg,#ede9fe,#c4b5fd); color:#6d28d9; box-shadow:0 10px 36px rgba(109,40,217,.22); }

/* ── Buttons ── */
.sathya-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: linear-gradient(135deg,#1a56db 0%,#3b82f6 100%);
  color: #fff;
  padding: .72rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 4px 18px rgba(26,86,219,.32);
}
.sathya-btn-primary:hover {
  background: linear-gradient(135deg,#1741b5 0%,#2563eb 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,86,219,.42);
  text-decoration: none;
}

.sathya-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: transparent;
  color: #1a56db;
  padding: .72rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid #1a56db;
  transition: all .25s ease;
}
.sathya-btn-outline:hover {
  background: #1a56db;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,86,219,.3);
  text-decoration: none;
}

.sathya-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: transparent;
  color: #fff;
  padding: .72rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.65);
  transition: all .25s ease;
}
.sathya-btn-outline-white:hover {
  background: rgba(255,255,255,.14);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

/* ── Tags / badges ── */
.sathya-tag {
  display: inline-block;
  background: linear-gradient(135deg,#dbeafe,#e0e7ff);
  color: #1a56db;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 50px;
  margin-bottom: .9rem;
}
.sathya-tag-white {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.92);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 50px;
  margin-bottom: .9rem;
  border: 1px solid rgba(255,255,255,.28);
}

/* ── Typography ── */
.sathya-gradient-text {
  background: linear-gradient(135deg,#1a56db 0%,#7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-cta-title {
  font-size: clamp(1.85rem,4vw,3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}
.home-cta-sub {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.75;
  max-width: 520px;
}
.home-service-title {
  font-size: clamp(1.45rem,3vw,2.1rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: .85rem;
  font-family: 'Poppins', sans-serif;
}
.home-service-title span { color: #1a56db; }
.section-subtitle-text {
  font-size: 1rem;
  color: #6b7a9a;
  max-width: 560px;
  margin: .5rem auto 0;
  line-height: 1.65;
}

/* ── Feature list ── */
.home-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.6rem;
}
.home-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .65rem;
  font-size: .96rem;
  color: #374151;
  line-height: 1.5;
}
.home-feature-list li i {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: .18rem;
  font-size: 1rem;
}

/* ── Dark overlay for banner sections ── */
.dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ── Background themes ── */
.new-sg-section  { width: 100%; }
.new-back-theme-1 { background: #ffffff; }
.new-back-theme-2 { background: #f8faff; }

/* ── Hero trust chips ── */
.hero-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #fff;
  border: 1.5px solid #e2e8f4;
  border-radius: 50px;
  padding: .42rem 1.05rem;
  font-size: .8rem;
  font-weight: 600;
  color: #1a2340;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.hero-stat-chip i { color: #1a56db; font-size: .9rem; }

/* ── Core Services section ── */
.core-svc-section {
  padding: 5rem 0 4.5rem;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  position: relative;
}
.core-svc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, #dbe8ff 1px, transparent 0);
  background-size: 36px 36px;
  opacity: .35;
  pointer-events: none;
}
.core-svc-section .container { position: relative; }

.core-svc-header {
  margin-bottom: 3rem;
}
.core-svc-header .home-service-title {
  margin-bottom: .65rem;
}

/* ── Service grid tiles ── */
.svc-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 1.5px solid #e4eaf8;
  border-radius: 20px;
  padding: 2rem 1.1rem 1.75rem;
  text-decoration: none;
  color: #1a2340;
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  box-shadow: 0 2px 14px rgba(0,0,0,.048);
  height: 100%;
}

/* Primary-colour bottom accent bar */
.svc-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #1a56db;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
  border-radius: 0 0 3px 3px;
}
.svc-tile:hover::after { transform: scaleX(1); }

.svc-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(26,86,219,.14);
  border-color: #bfdbfe;
  text-decoration: none;
  color: #1a2340;
}

/* Service image — full-bleed at top of tile */
.svc-tile-img {
  width: calc(100% + 2.2rem);
  margin: -2rem -1.1rem 1.15rem;
  height: 130px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  flex-shrink: 0;
}
.svc-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.svc-tile:hover .svc-tile-img img {
  transform: scale(1.08);
}

/* Service name */
.svc-tile span {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a2340;
  margin-bottom: .45rem;
}

/* Service tagline */
.svc-tile small {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  color: #8494b2;
  line-height: 1.45;
}

/* Tile colour tokens */
.svc-tile-icon.c-blue   { background: linear-gradient(135deg,#dbeafe,#bfdbfe); color:#1d4ed8; }
.svc-tile-icon.c-purple { background: linear-gradient(135deg,#ede9fe,#ddd6fe); color:#6d28d9; }
.svc-tile-icon.c-green  { background: linear-gradient(135deg,#dcfce7,#bbf7d0); color:#15803d; }
.svc-tile-icon.c-gold   { background: linear-gradient(135deg,#fef3c7,#fde68a); color:#b45309; }
.svc-tile-icon.c-teal   { background: linear-gradient(135deg,#ccfbf1,#99f6e4); color:#0f766e; }
.svc-tile-icon.c-rose   { background: linear-gradient(135deg,#ffe4e6,#fecdd3); color:#be123c; }
.svc-tile-icon.c-orange { background: linear-gradient(135deg,#ffedd5,#fed7aa); color:#c2410c; }
.svc-tile-icon.c-sky    { background: linear-gradient(135deg,#e0f2fe,#bae6fd); color:#0369a1; }
.svc-tile-icon.c-indigo { background: linear-gradient(135deg,#e0e7ff,#c7d2fe); color:#4338ca; }
.svc-tile-icon.c-lime   { background: linear-gradient(135deg,#ecfccb,#d9f99d); color:#3f6212; }

/* ── Why Choose Us section ── */
.why-choose-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #f8faff 0%, #f0f5ff 100%);
  position: relative;
}
.why-choose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, #dbe8ff 1px, transparent 0);
  background-size: 40px 40px;
  opacity: .28;
  pointer-events: none;
}
.why-choose-section .container { position: relative; }

/* ── Why Choose Us cards ── */
.sathya-why-card {
  background: #fff;
  border: 1.5px solid #e4eaf8;
  border-radius: 22px;
  padding: 0 0  2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
  box-shadow: 0 3px 18px rgba(0,0,0,.055);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sathya-why-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 22px 52px rgba(26,86,219,.13);
  border-color: #bfdbfe;
}

/* Top colour stripe */
.sathya-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 3px 3px 0 0;
}


/* Card image */
.why-img {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 0 1.35rem;
  box-shadow: 0 4px 18px rgba(26,86,219,.13);
  transition: transform .32s ease, box-shadow .32s ease;
}
.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.sathya-why-card:hover .why-img {
  box-shadow: 0 8px 26px rgba(0,0,0,.16);
}
.sathya-why-card:hover .why-img img {
  transform: scale(1.06);
}

/* Card heading */
.sathya-why-card h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: .65rem;
  font-size: 1.08rem;
  line-height: 1.3;
}

/* Card body text */
.sathya-why-card p {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: #6b7a9a;
  padding: 0 40px;
  margin: 0 0 1rem;
  line-height: 1.7;
  flex: 1;
}

/* Bottom stat tag */
.why-card-tag {
  display: inline-block;
  background: #eff6ff;
  color: #1a56db;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .28rem .85rem;
  border-radius: 50px;
  margin-top: auto;
  border: 1px solid #dbeafe;
}
.why-tag-gold   { background:#fffbeb; color:#b45309; border-color:#fde68a; }
.why-tag-green  { background:#f0fdf4; color:#15803d; border-color:#bbf7d0; }
.why-tag-purple { background:#f5f3ff; color:#6d28d9; border-color:#ddd6fe; }
.why-tag-teal   { background:#f0fdfa; color:#0f766e; border-color:#99f6e4; }
.why-tag-orange { background:#fff7ed; color:#c2410c; border-color:#fed7aa; }


/* ── Support channel cards ── */
.support-card-v2 {
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  border-top: 3px solid rgba(96,165,250,.55);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background .3s, transform .3s, box-shadow .3s;
  height: 100%;
}
.support-card-v2:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(26,86,219,.28);
}
.sc-icon-circle {
  width: 68px; height: 68px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin: 0 auto 1.1rem;
  box-shadow: 0 6px 18px rgba(26,86,219,.4);
}
.sc-icon-circle.phone    { background: linear-gradient(135deg,#1a56db,#3b82f6); color:#fff; }
.sc-icon-circle.whatsapp { background: linear-gradient(135deg,#1e40af,#2563eb); color:#fff; }
.sc-icon-circle.email    { background: linear-gradient(135deg,#1d4ed8,#60a5fa); color:#fff; }
.sc-icon-circle.desk     { background: linear-gradient(135deg,#1a56db,#93c5fd); color:#fff; }
.support-card-v2 h5 {
  font-weight: 700; color: #fff; font-size: 1.05rem;
  margin-bottom: .35rem; font-family: 'Poppins', sans-serif;
}
.support-card-v2 p  {
  font-size: .83rem; color: rgba(255,255,255,.68);
  margin-bottom: .75rem; line-height: 1.55;
  font-family: 'Inter', sans-serif;
}
.support-card-v2 a  {
  display: block; color: #bfdbfe; font-weight: 600;
  font-size: .93rem; text-decoration: none; word-break: break-all;
  font-family: 'Inter', sans-serif; transition: color .2s;
}
.support-card-v2 a:hover { color: #fff; text-decoration: underline; }
.sc-badge {
  display: inline-block; margin-top: .7rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.88);
  padding: .25rem .7rem; border-radius: 30px;
  font-family: 'Inter', sans-serif;
}
.support-phone-hero {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #1a56db;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: .8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 1.25rem;
  font-family: 'Poppins', sans-serif;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 6px 22px rgba(26,86,219,.5);
}
.support-phone-hero:hover {
  background: #1e40af;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(26,86,219,.6);
}


/* ── Partner logo cards ── */
.partner-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1.5rem 1rem 1.25rem;
  background: #fff;
  border: 1.5px solid #e8ecf4;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.045);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  height: 100%;
  text-align: center;
  min-height: 110px;
}
.partner-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(26,86,219,.11);
  border-color: #3b82f6;
}
.partner-logo-card img {
  max-height: 50px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter .28s ease, transform .28s ease;
}
.partner-logo-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.07);
}
.partner-logo-card span {
  font-size: .73rem;
  font-weight: 600;
  color: #7b8db0;
  line-height: 1.3;
  margin-top: .1rem;
}
.partners-divider-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #aab4cc;
  margin: 0 1rem;
  white-space: nowrap;
}

/* ── Top utility bar ── */
.si-topbar { background: #0f172a; border-bottom: 1px solid #1e293b; }
.si-topbar-inner { display:flex; align-items:center; justify-content:space-between; height:38px; font-size:.8rem; }
.si-topbar-left, .si-topbar-right { display:flex; align-items:center; gap:.9rem; }
.si-topbar a { color:rgba(255,255,255,.75); text-decoration:none; display:inline-flex; align-items:center; gap:.32rem; transition:color .2s; }
.si-topbar a:hover { color:#fff; text-decoration:none; }
.si-topbar i { color:#1a56db; font-size:.82rem; }
.si-topbar .si-pipe { color:rgba(255,255,255,.18); user-select:none; }
.si-topbar .si-cta-btn { background:#1a56db; color:#fff !important; padding:.22rem .8rem; border-radius:4px; font-weight:600; font-size:.78rem; transition:background .2s !important; }
.si-topbar .si-cta-btn:hover { background:#1741b5 !important; color:#fff !important; }
/* keep support-drop working inside top bar */
.si-topbar .toolbar-contact { position:relative; }
.si-topbar .top-menu { list-style:none; margin:0; padding:0; display:flex; }
.si-topbar .top-menu > li { position:relative; }
.si-topbar .top-menu > li > a { color:rgba(255,255,255,.75); font-size:.8rem; display:inline-flex; align-items:center; gap:.3rem; cursor:pointer; }
.si-topbar .top-menu > li > a:hover { color:#fff; }
@media (max-width:500px) {
  ul.support-drop { left:-70px !important; }
}

/* ── Footer ── */
.si-footer {
  background: linear-gradient(180deg, #0b1423 0%, #0f172a 100%);
  color: #94a3b8;
  padding: 4.5rem 0 0;
  position: relative;
}
.si-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #1a56db 30%, #3b82f6 70%, transparent 100%);
}
.si-footer h6 {
  color: #f1f5f9;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid #1e2d4a;
  font-family: 'Poppins', sans-serif;
  position: relative;
}
.si-footer h6::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 28px; height: 1px;
  background: #1a56db;
}
.si-footer ul { list-style: none; padding: 0; margin: 0; }
.si-footer ul li { margin-bottom: .5rem; }
.si-footer ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: .86rem;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: color .2s, gap .2s;
}
.si-footer ul li a::before {
  content: '›';
  color: #1a56db;
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity .2s, width .2s;
}
.si-footer ul li a:hover { color: #e2e8f0; gap: .3rem; }
.si-footer ul li a:hover::before { opacity: 1; width: .6rem; }
.si-footer-desc {
  font-size: .87rem;
  line-height: 1.78;
  color: #94a3b8;
  margin: .85rem 0 1.35rem;
  font-family: 'Inter', sans-serif;
}
.si-footer-social { display: flex; flex-wrap: wrap; gap: .5rem; }
.si-footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; text-decoration: none;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.si-footer-social a:hover {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
  transform: translateY(-3px);
  text-decoration: none;
}
.si-footer-social a img { height: 14px; filter: brightness(0) invert(.6); transition: filter .25s; }
.si-footer-social a:hover img { filter: brightness(0) invert(1); }
.si-footer-contact-item {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: .75rem; font-size: .86rem; color: #94a3b8;
}
.sc-contact-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(26,86,219,.15);
  border: 1px solid rgba(26,86,219,.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #3b82f6; font-size: .8rem;
}
.si-footer-contact-item a {
  color: #94a3b8; text-decoration: none;
  transition: color .2s; font-family: 'Inter', sans-serif;
}
.si-footer-contact-item a:hover { color: #bfdbfe; }
.si-footer-contact-item span { font-family: 'Inter', sans-serif; line-height: 1.55; }
.si-footer-bottom {
  border-top: 1px solid #1e2d4a;
  padding: 1.15rem 0;
  font-size: .79rem;
  color: #475569;
  font-family: 'Inter', sans-serif;
  margin-top: 3rem;
}
.si-footer-bottom a { color: #475569; text-decoration: none; transition: color .2s; }
.si-footer-bottom a:hover { color: #94a3b8; }
.si-footer-pipe { margin: 0 .5rem; color: #1e2d4a; }

/* ── Sticky glass header ── */
.rs-header {
  transition: background .35s ease, box-shadow .35s ease;
}
.rs-header.is-sticky {
  background: rgba(255,255,255,.94) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(0,0,0,.09) !important;
}

/* ── Solutions tab section ── */
.solutions-tab-nav {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.solutions-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.5rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  background: #fff;
  border: 2px solid #e2e8f4;
  color: #6b7a9a;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}
.solutions-tab-btn.active,
.solutions-tab-btn:hover {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
  text-decoration: none;
}
.solutions-tab-pane { display: none; }
.solutions-tab-pane.active { display: block; }
.solutions-product-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  color: #1d4ed8;
  font-size: .76rem;
  font-weight: 700;
  padding: .28rem .75rem;
  border-radius: 6px;
  margin-bottom: 1.1rem;
  letter-spacing: .03em;
}


/* HERO SECTION */

.hero-section {
    /* min-height:100vh; */
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(0,123,255,.25), transparent 40%), radial-gradient(circle at bottom left, rgba(111,66,193,.25), transparent 40%), linear-gradient(135deg,#08152f,#0f2d70);
    overflow: hidden;
    padding: 80px 0;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.hero-wrapper {
    display: grid;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 58px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 25px;
}

    .hero-title span {
        background: linear-gradient(90deg,#4dabff,#bb86fc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero-description {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    transition: .3s;
}

    .stat-card:hover {
        transform: translateY(-8px);
    }

.icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: #4dabff;
    font-size: 28px;
    margin-bottom: 20px;
}

/* ROLLING NUMBERS */

.stat-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.roller {
    height: 60px;
    overflow: hidden;
}

.roller-inner {
    display: flex;
    flex-direction: column;
    transition: transform 2s cubic-bezier(.22,.68,.36,1);
}

    .roller-inner div {
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 42px;
        font-weight: 700;
        color: #fff;
    }

.suffix {
    font-size: 32px;
    color: #4dabff;
    font-weight: 700;
    margin-left: 5px;
}

.stat-card p {
    color: rgba(255,255,255,.7);
    margin-top: 10px;
}

/* MOBILE */

@media(max-width:991px) {

    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }
}

@media(max-width:576px) {

    .hero-title {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }
}
/* Responsive */
@media (max-width: 991px) {
    .hero-cta-section {
        padding: 60px 0;
    }

    .home-cta-title {
        font-size: 1.55rem;
    }

    .cta-stats-row {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .cta-feat-card {
        padding: 20px 10px 16px;
    }

    .cta-stat-roller-digit {
        font-size: 1.7rem;
    }

    .cta-stat-roller {
        height: 44px;
    }

    .cta-stat-roller-digit {
        height: 44px;
    }
}/* ── Mobile responsive ── */
@media (max-width: 767px) {
  .home-cta-title   { font-size: 1.8rem; }
  .home-service-title { font-size: 1.35rem; }
  .hero-cta-section { padding: 4.5rem 0; }
  .cta-feat-card    { padding: 1.5rem .9rem 1.35rem; }
  .cta-feat-stat    { font-size: 1.7rem; }
  .cta-feat-icon-wrap { width: 48px; height: 48px; font-size: 1.3rem; }
  .sathya-illus-circle { width:200px; height:200px; font-size:5rem; }
  .sathya-why-card  { padding:1.5rem 1.25rem; }
  .support-card-v2  { padding:1.5rem 1rem; }
  .svc-tile         { padding:1.5rem .85rem 1.25rem; }
  .svc-tile-img     { height:100px; }
  .svc-tile span    { font-size:.83rem; }
  .svc-tile small   { font-size:.68rem; }
  .hero-stat-chip   { font-size:.74rem; padding:.35rem .8rem; }
  .core-svc-section { padding:3.5rem 0 3rem; }
}
  .testi-card      { padding: 1.5rem 1.25rem; }
  .solutions-tab-btn { padding: .52rem 1rem; font-size: .82rem; }
}
@media (max-width: 480px) {
  .d-flex.flex-wrap.gap-2 { gap: .5rem !important; }
  .d-flex.flex-wrap.gap-3 { gap: .75rem !important; }
  .solutions-tab-nav { gap: .35rem; }
}

/* ═══════════════════════════════════════════════════
   HEADER — improved nav & dropdown styles
   ═══════════════════════════════════════════════════ */

/* ── Force single-row nav ── */
.full-width-header .rs-header .main-menu .rs-menu ul.nav-menu {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  white-space: nowrap !important;
}

.full-width-header .rs-header .main-menu .rs-menu ul.nav-menu > li {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  margin-right: 0 !important;
}

/* ── Top-level nav links only ── */
.full-width-header .rs-header .main-menu .rs-menu ul.nav-menu > li > a {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #1a2340 !important;
  padding: 0 13px !important;
  position: relative;
  transition: color .22s ease !important;
  background: transparent !important;
  white-space: nowrap !important;
}

/* Animated underline — top-level only */
.full-width-header .rs-header .main-menu .rs-menu ul.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: #1a56db;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.full-width-header .rs-header .main-menu .rs-menu ul.nav-menu > li > a:hover::after,
.full-width-header .rs-header .main-menu .rs-menu ul.nav-menu > li.current-menu-item > a::after {
  transform: scaleX(1);
}

/* Suppress underline on all sub-menu links */
.full-width-header .rs-header .main-menu .rs-menu ul.sub-menu li a::after {
  display: none !important;
}

.full-width-header .rs-header .main-menu .rs-menu ul.nav-menu > li > a:hover,
.full-width-header .rs-header .main-menu .rs-menu ul.nav-menu > li.current-menu-item > a {
  color: #1a56db !important;
  background: transparent !important;
}

/* Caret icon in nav */
.full-width-header .rs-header .main-menu .rs-menu ul.nav-menu > li > i,
.full-width-header .rs-header .main-menu .rs-menu ul.nav-menu > li > a > i {
  color: #6b7a9a !important;
  font-size: .7rem !important;
  margin-left: 3px !important;
  transition: color .22s ease, transform .22s ease !important;
}
.full-width-header .rs-header .main-menu .rs-menu ul.nav-menu > li:hover > a > i {
  color: #1a56db !important;
  transform: rotate(180deg);
}

/* ── Dropdown panel (ul.sub-menu) ── */
.full-width-header .rs-header .main-menu .rs-menu ul.sub-menu,
.rs-menu .sub-menu {
  background: #ffffff !important;
  border-radius: 12px !important;
  border: 1px solid #e8ecf4 !important;
  box-shadow: 0 12px 40px rgba(15, 23, 42, .13), 0 2px 8px rgba(15, 23, 42, .06) !important;
  min-width: 260px !important;
  padding: 8px 0 !important;
  margin-top: 6px !important;
  overflow: hidden;
  animation: dropSlideIn .2s ease forwards;
}

@keyframes dropSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ── Dropdown items ── */
.full-width-header .rs-header .main-menu .rs-menu ul.sub-menu li {
  border: none !important;
  margin: 0 !important;
}

.full-width-header .rs-header .main-menu .rs-menu ul.sub-menu li a {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #374151 !important;
  padding: 10px 20px 10px 16px !important;
  width: auto !important;
  min-width: 220px;
  line-height: 1.45 !important;
  display: flex !important;
  align-items: center !important;
  gap: .5rem !important;
  border-left: 3px solid transparent !important;
  transition: color .18s ease, background .18s ease, border-color .18s ease, padding-left .18s ease !important;
  background: transparent !important;
  text-transform: none !important;
}

.full-width-header .rs-header .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #1a56db !important;
  background: #f0f5ff !important;
  border-left-color: #1a56db !important;
  padding-left: 20px !important;
}

/* Icon inside dropdown items */
.full-width-header .rs-header .main-menu .rs-menu ul.sub-menu li a i {
  color: #1a56db !important;
  font-size: .95rem !important;
  width: 22px !important;
  text-align: center !important;
  flex-shrink: 0;
  transition: transform .18s ease !important;
}
.full-width-header .rs-header .main-menu .rs-menu ul.sub-menu li a:hover i {
  color: #1a56db !important;
  transform: translateX(2px);
}

/* Sub-description text */
.full-width-header .rs-header .main-menu .rs-menu ul.sub-menu li a span {
  font-size: 11.5px !important;
  color: #9ca3af !important;
  line-height: 1.4 !important;
  margin-top: 1px !important;
}

/* Active item */
.full-width-header .rs-header .main-menu .rs-menu ul.sub-menu li.active {
  background: transparent !important;
}
.full-width-header .rs-header .main-menu .rs-menu ul.sub-menu li.active a,
.full-width-header .rs-header .main-menu .rs-menu ul.sub-menu li.active a i {
  color: #1a56db !important;
  background: #eff6ff !important;
  border-left-color: #1a56db !important;
}

/* ── Top-bar support dropdown ── */
.top-menu li ul {
  border: 1px solid #e8ecf4 !important;
  border-bottom: none !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 32px rgba(15, 23, 42, .12) !important;
  background: #fff !important;
  overflow: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease !important;
  margin-top: 4px !important;
}

.top-menu li ul li {
  border-bottom: 1px solid #f1f5f9 !important;
  padding: 9px 16px !important;
  transition: background .15s ease !important;
}
.top-menu li ul li:last-child { border-bottom: none !important; }
.top-menu li ul li:hover { background: #f8faff !important; }

.support-drop li a {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1a2340 !important;
}
.support-drop li a:hover { color: #1a56db !important; }
.support-drop li a span {
  font-size: 11.5px !important;
  font-weight: 400 !important;
  color: #9ca3af !important;
}
.support-drop li { border-bottom: 1px solid #f1f5f9 !important; }

/* ── Sticky header overrides ── */
.rs-header.is-sticky .full-width-header .rs-header .main-menu .rs-menu ul.nav-menu li a,
.rs-header.is-sticky .rs-menu ul.nav-menu li a {
  color: #1a2340 !important;
}

/* ═══════════════════════════════════════════════════
   BANNER & HERO IMPROVEMENTS
   ═══════════════════════════════════════════════════ */

/* ── Homepage hero slider ── */
.home-page-slider.rs-hostlab-slider .single-slider {
  min-height: 540px;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark gradient scrim so text stays readable on any photo */
.home-page-slider.rs-hostlab-slider .single-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 15, 50, .72) 0%,
    rgba(5, 15, 50, .45) 55%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}

.home-page-slider.rs-hostlab-slider .content-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.home-page-slider.rs-hostlab-slider .content-inner .slider-text {
  padding: 0 !important;
  max-width: 600px;
}

/* Slide title */
.home-page-slider.rs-hostlab-slider .content-inner .slider-text .sl-title {
  font-family: 'Poppins', Arial, sans-serif !important;
  font-size: clamp(1.9rem, 3.5vw, 3rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  text-transform: none !important;
  margin-bottom: 14px !important;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

/* Slide subtitle / price text */
.home-page-slider.rs-hostlab-slider .content-inner .slider-text .sl-price {
  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,.88) !important;
  line-height: 1.65 !important;
  margin-bottom: 28px !important;
  text-shadow: 0 1px 6px rgba(0,0,0,.25);
}

/* Slider CTA button */
.home-page-slider.rs-hostlab-slider .content-inner .slider-text .slider-btn,
.home-page-slider.rs-hostlab-slider .content-inner .slider-text ul li a.slider-btn {
  font-family: 'Inter', sans-serif !important;
  font-size: .95rem !important;
  font-weight: 600 !important;
  background: #1a56db !important;
  color: #fff !important;
  border: 2px solid #1a56db !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  text-transform: none !important;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(26,86,219,.38) !important;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease !important;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.home-page-slider.rs-hostlab-slider .content-inner .slider-text .slider-btn:hover,
.home-page-slider.rs-hostlab-slider .content-inner .slider-text ul li a.slider-btn:hover {
  background: #1741b5 !important;
  border-color: #1741b5 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(26,86,219,.48) !important;
}

/* Owl carousel nav arrows */
.home-page-slider.rs-hostlab-slider .owl-nav .owl-prev,
.home-page-slider.rs-hostlab-slider .owl-nav .owl-next {
  width: 46px !important;
  height: 46px !important;
  background: rgba(255,255,255,.15) !important;
  border: 1.5px solid rgba(255,255,255,.4) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0.7 !important;
  transition: background .25s ease, opacity .25s ease !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.home-page-slider.rs-hostlab-slider:hover .owl-nav .owl-prev,
.home-page-slider.rs-hostlab-slider:hover .owl-nav .owl-next {
  opacity: 1 !important;
  background: rgba(255,255,255,.25) !important;
}
.home-page-slider.rs-hostlab-slider .owl-nav .owl-prev i,
.home-page-slider.rs-hostlab-slider .owl-nav .owl-next i {
  font-size: 1.2rem !important;
  color: #fff;
}

/* Owl dots */
.home-page-slider.rs-hostlab-slider .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.home-page-slider.rs-hostlab-slider .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.45);
  border-radius: 50%;
  display: block;
  transition: background .25s, transform .25s;
}
.home-page-slider.rs-hostlab-slider .owl-dots .owl-dot.active span,
.home-page-slider.rs-hostlab-slider .owl-dots .owl-dot:hover span {
  background: #fff;
  transform: scale(1.3);
}

/* ── Inner-page banners (.new-sathya-banner) ── */
.new-sathya-banner {
  min-height: 320px !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
}

/* Replace washed-out white overlay with a rich dark gradient */
.new-sathya-banner::before {
  background: linear-gradient(
    100deg,
    rgba(8, 18, 60, .82) 0%,
    rgba(10, 30, 80, .65) 60%,
    rgba(5, 15, 50, .45) 100%
  ) !important;
}

.new-sathya-banner-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0 !important;
}

.new-sathya-banner-content h1 {
  font-family: 'Poppins', Arial, sans-serif !important;
  font-size: clamp(1.75rem, 3vw, 2.6rem) !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.22 !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 12px !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.new-sathya-banner-content h1 span {
  color: #60a5fa !important;
}

.new-sathya-banner-content h3 {
  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,.85) !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

.new-sathya-banner-content .banner-price {
  color: #60a5fa !important;
}
.new-sathya-banner-content .banner-highlight {
  color: #60a5fa !important;
}

/* ── Breadcrumbs ── */
.rs-breadcrumbs {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%) !important;
  padding: 28px 0 !important;
  border-bottom: 1px solid #dce6f8;
}

.rs-breadcrumbs .page-title {
  font-family: 'Poppins', Arial, sans-serif !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  color: #1a2340 !important;
  letter-spacing: -0.01em;
  line-height: 1.3 !important;
}

.rs-breadcrumbs nav ul li {
  font-family: 'Inter', sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  color: #6b7a9a !important;
  text-transform: none !important;
}

.rs-breadcrumbs nav ul li a {
  color: #1a56db !important;
}
.rs-breadcrumbs nav ul li a:hover {
  color: #1741b5 !important;
}

.rs-breadcrumbs nav ul li + li::after {
  content: '\203A' !important;
  color: #9ca3af !important;
  font-size: 14px !important;
}

/* ── Responsive slider ── */
@media (max-width: 767px) {
  .home-page-slider.rs-hostlab-slider .single-slider {
    min-height: 360px;
  }
  .home-page-slider.rs-hostlab-slider .content-inner .slider-text {
    text-align: center;
    max-width: 100%;
  }
  .home-page-slider.rs-hostlab-slider .single-slider::before {
    background: rgba(5, 15, 50, .65);
  }
  .new-sathya-banner { min-height: 220px !important; }
  .new-sathya-banner-content { padding: 2rem 0 !important; }
}
