/* ==========================================================================
   NRS Systems & Technologies — Shared Stylesheet
   ========================================================================== */

:root {
  --primary: #1565C0;
  --secondary: #2196F3;
  --accent: #0D47A1;
  --light-blue: #EAF4FF;
  --light-blue-2: #F4F9FF;
  --dark: #0A1E33;
  --dark-2: #0D2A47;
  --text-muted: #5A6B7B;
  --white: #ffffff;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 16px rgba(13, 71, 161, 0.07);
  --shadow-md: 0 12px 32px rgba(13, 71, 161, 0.12);
  --shadow-lg: 0 24px 60px rgba(13, 71, 161, 0.18);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

p { color: var(--text-muted); }

a { text-decoration: none; }

img { max-width: 100%; }

::selection { background: var(--secondary); color: #fff; }

.section-pad { padding: 100px 0; }
@media (max-width: 767px) { .section-pad { padding: 64px 0; } }

.bg-light-blue { background: linear-gradient(180deg, var(--light-blue-2) 0%, var(--light-blue) 100%); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(21, 101, 192, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.2);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  max-width: 620px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------------- Buttons ---------------- */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 50px;
  padding: 13px 30px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  border: none;
}
.btn-primary-nrs {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 10px 24px rgba(21, 101, 192, 0.3);
}
.btn-primary-nrs:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(21, 101, 192, 0.4); color: #fff; }

.btn-outline-nrs {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 11px 28px;
}
.btn-outline-nrs:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

.btn-light-nrs {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-light-nrs:hover { background: rgba(255,255,255,0.28); transform: translateY(-3px); color: #fff; }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: #1ebe5b; color: #fff; transform: translateY(-3px); }

/* ripple */
.ripple { position: relative; overflow: hidden; }
.ripple span.ripple-effect {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  background: rgba(255,255,255,0.5);
  pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(3); opacity: 0; } }

/* ---------------- Navbar ---------------- */
.navbar-nrs {
  padding: 18px 0;
  transition: all 0.35s ease;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(21,101,192,0.06);
}
.navbar-nrs.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 6px 24px rgba(13,71,161,0.08);
}
.navbar-brand-nrs { display: flex; align-items: center; gap: 12px; }
.navbar-brand-nrs .logo-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 18px;
  box-shadow: 0 8px 18px rgba(21,101,192,0.35);
}
.navbar-brand-nrs .brand-text { line-height: 1.1; }
.navbar-brand-nrs .brand-text strong { font-family: var(--font-head); font-size: 18px; color: var(--dark); display:block; }
.navbar-brand-nrs .brand-text span { font-size: 10.5px; color: var(--primary); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

.nav-link-nrs {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--dark) !important;
  padding: 8px 16px !important;
  border-radius: 50px;
  transition: all 0.25s ease;
  position: relative;
}
.nav-link-nrs:hover, .nav-link-nrs.active { color: var(--primary) !important; background: rgba(21,101,192,0.08); }

.nav-cta-group { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--light-blue);
  color: var(--primary);
  transition: all 0.3s ease;
  font-size: 16px;
}
.icon-btn:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: 100px;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,30,51,0.96) 10%, rgba(13,71,161,0.85) 60%, rgba(21,101,192,0.55) 100%);
}
.hero-content { position: relative; z-index: 3; color: #fff; }
.hero-content h1 { color: #fff; font-size: clamp(32px, 5.2vw, 58px); line-height: 1.1; }
.hero-content p.lead-nrs { color: rgba(255,255,255,0.82); font-size: 18px; max-width: 620px; }

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 1;
  opacity: 0.5;
  animation: float-anim 8s ease-in-out infinite;
}
@keyframes float-anim {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  50% { transform: translateY(-26px) translateX(14px) rotate(12deg); }
}

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-stat-strip {
  position: relative;
  z-index: 3;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  margin-top: 40px;
}
.hero-stat-strip .stat-item { padding: 22px 10px; text-align: center; }
.hero-stat-strip .stat-num { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: #fff; }
.hero-stat-strip .stat-label { font-size: 12.5px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------------- Cards ---------------- */
.card-nrs {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(21,101,192,0.06);
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  height: 100%;
}
.card-nrs:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(21,101,192,0.16); }
.card-nrs .icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--light-blue), #fff);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.35s ease;
}
.card-nrs:hover .icon-wrap { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; transform: scale(1.08) rotate(-4deg); }
.card-nrs h4 { font-size: 19px; margin-bottom: 10px; }
.card-nrs p { font-size: 14.5px; margin-bottom: 0; }

.glass-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* product cards */
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid rgba(21,101,192,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card .prod-img-wrap { position: relative; overflow: hidden; height: 200px; }
.product-card .prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .prod-img-wrap img { transform: scale(1.1); }
.product-card .brand-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  font-size: 11.5px; font-weight: 700;
  padding: 5px 12px; border-radius: 50px;
  font-family: var(--font-head);
  box-shadow: var(--shadow-sm);
}
.product-card .prod-body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-card .prod-body h5 { font-size: 16.5px; margin-bottom: 6px; }
.product-card .prod-body p { font-size: 13.5px; flex: 1; }
.product-card .prod-actions { display: flex; gap: 8px; margin-top: 14px; }
.product-card .prod-actions .btn { padding: 8px 16px; font-size: 12.5px; flex: 1; text-align: center; }

/* service card image top */
.service-card { border-radius: var(--radius-md); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); transition: all .4s ease; height: 100%; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card .serv-img { height: 210px; overflow: hidden; position: relative; }
.service-card .serv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .serv-img img { transform: scale(1.08); }
.service-card .serv-body { padding: 26px; }
.service-card .serv-body h4 { font-size: 19px; }
.service-card .serv-body ul { padding-left: 18px; margin: 14px 0 0; font-size: 13.5px; color: var(--text-muted); }
.service-card .serv-body ul li { margin-bottom: 6px; }

/* ---------------- Category tabs ---------------- */
.cat-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cat-tab {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 22px;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid rgba(21,101,192,0.15);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
}
.cat-tab:hover { border-color: var(--primary); color: var(--primary); }
.cat-tab.active { background: linear-gradient(90deg, var(--primary), var(--secondary)); color: #fff; border-color: transparent; box-shadow: 0 8px 20px rgba(21,101,192,0.3); }

.anchor-offset { display: block; position: relative; top: -130px; visibility: hidden; }
.product-item { transition: all 0.4s ease; }
.product-item.hide-item { display: none; }

/* ---------------- Counters ---------------- */
.counter-box { text-align: center; }
.counter-box .num { font-family: var(--font-head); font-size: clamp(34px,4vw,48px); font-weight: 800; color: var(--primary); }
.counter-box .lbl { font-size: 14px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------------- Brand / client logo strip ---------------- */
.logo-strip-track { display: flex; gap: 50px; align-items: center; animation: scroll-logos 30s linear infinite; }
.logo-strip-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
@keyframes scroll-logos { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-chip {
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  color: var(--dark); opacity: 0.55;
  white-space: nowrap; padding: 12px 22px;
  background: #fff; border-radius: 50px; border: 1px solid rgba(21,101,192,0.08);
  transition: all 0.3s ease;
}
.logo-chip:hover { opacity: 1; color: var(--primary); box-shadow: var(--shadow-sm); }

/* ---------------- Testimonials ---------------- */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid rgba(21,101,192,0.06);
}
.testimonial-card .stars { color: #FFB400; font-size: 14px; margin-bottom: 14px; }
.testimonial-card p.quote { font-size: 15px; color: var(--dark); font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-card .author .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: var(--font-head);
}
.testimonial-card .author strong { display: block; font-size: 14px; }
.testimonial-card .author span { font-size: 12px; color: var(--text-muted); }

/* ---------------- FAQ ---------------- */
.accordion-nrs .accordion-item { border: none; border-radius: var(--radius-md) !important; overflow: hidden; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.accordion-nrs .accordion-button { font-family: var(--font-head); font-weight: 600; font-size: 15.5px; padding: 20px 24px; }
.accordion-nrs .accordion-button:not(.collapsed) { background: var(--light-blue); color: var(--primary); box-shadow: none; }
.accordion-nrs .accordion-button:focus { box-shadow: none; }
.accordion-nrs .accordion-body { padding: 4px 24px 22px; font-size: 14.5px; color: var(--text-muted); }

/* ---------------- CTA band ---------------- */
.cta-band {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--accent), var(--primary) 60%, var(--secondary));
  padding: 70px 50px;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(26px,3.6vw,38px); }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08);
}
.cta-band::before { width: 260px; height: 260px; top: -100px; right: -60px; }
.cta-band::after { width: 180px; height: 180px; bottom: -80px; left: -40px; }

/* ---------------- Footer ---------------- */
footer.footer-nrs { background: var(--dark); color: rgba(255,255,255,0.7); padding: 80px 0 0; position: relative; }
footer.footer-nrs h5 { color: #fff; font-size: 16px; margin-bottom: 22px; }
footer.footer-nrs .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
footer.footer-nrs p { color: rgba(255,255,255,0.55); font-size: 14px; }
footer.footer-nrs a.f-link { color: rgba(255,255,255,0.62); font-size: 14px; display: block; margin-bottom: 12px; transition: all 0.25s ease; }
footer.footer-nrs a.f-link:hover { color: #fff; padding-left: 4px; }
footer.footer-nrs .f-social { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s ease; }
footer.footer-nrs .f-social:hover { background: var(--secondary); transform: translateY(-3px); }
footer.footer-nrs .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px; padding: 22px 0; font-size: 13px; }
footer.footer-nrs .f-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; color: rgba(255,255,255,0.65); }
footer.footer-nrs .f-contact-item i { color: var(--secondary); margin-top: 3px; }

/* ---------------- Floating buttons ---------------- */
.float-btns { position: fixed; right: 24px; bottom: 24px; z-index: 999; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px; box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}
.fab-whatsapp { background: #25D366; }
.fab-whatsapp:hover { transform: scale(1.1); color: #fff; }
.fab-top { background: var(--primary); width: 46px; height: 46px; font-size: 18px; opacity: 0; pointer-events: none; transform: translateY(10px); }
.fab-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.pulse-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------------- Misc sections ---------------- */
.about-preview-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-preview-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.exp-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border-radius: 20px; padding: 22px 26px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.exp-badge .num { font-family: var(--font-head); font-size: 34px; font-weight: 800; line-height: 1; }
.exp-badge .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 767px) { .exp-badge { bottom: -18px; right: 12px; padding: 14px 18px; } .exp-badge .num { font-size: 24px; } }

.timeline-nrs { position: relative; padding-left: 40px; }
.timeline-nrs::before { content: ''; position: absolute; left: 10px; top: 4px; bottom: 4px; width: 2px; background: linear-gradient(180deg, var(--primary), var(--secondary)); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before { content: ''; position: absolute; left: -34px; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 3px solid var(--primary); }
.timeline-item h5 { font-size: 16px; margin-bottom: 6px; }
.timeline-item p { font-size: 14px; margin-bottom: 0; }

.value-card { text-align: center; padding: 30px 18px; }
.value-card .icon-wrap { margin: 0 auto 18px; }

.industry-chip { background: #fff; border: 1px solid rgba(21,101,192,0.1); border-radius: var(--radius-md); padding: 26px 18px; text-align: center; transition: all 0.3s ease; height: 100%; }
.industry-chip:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.industry-chip i { font-size: 30px; color: var(--primary); margin-bottom: 12px; }
.industry-chip span { display: block; font-family: var(--font-head); font-weight: 600; font-size: 14px; }

/* process steps */
.process-step { text-align: center; position: relative; padding: 10px; }
.process-step .step-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  box-shadow: var(--shadow-md);
}
.process-step h5 { font-size: 15.5px; }
.process-step p { font-size: 13px; }

.tech-badge { background: #fff; border: 1px solid rgba(21,101,192,0.12); border-radius: 12px; padding: 16px 10px; text-align: center; font-family: var(--font-head); font-weight: 600; font-size: 13px; transition: all 0.3s ease; }
.tech-badge:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-4px); }

/* portfolio */
.portfolio-card { border-radius: var(--radius-md); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.portfolio-card img { width: 100%; height: 260px; object-fit: cover; transition: transform .6s ease; }
.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,30,51,0.88), transparent 60%);
  display: flex; align-items: flex-end; padding: 22px; opacity: 0; transition: opacity .35s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h5 { color: #fff; margin-bottom: 4px; font-size: 16px; }
.portfolio-overlay span { color: rgba(255,255,255,0.75); font-size: 12.5px; }

/* contact page */
.contact-info-card { display: flex; gap: 18px; align-items: flex-start; padding: 26px; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); height: 100%; }
.contact-info-card .icon-wrap { flex-shrink: 0; }
.contact-info-card h5 { font-size: 16px; margin-bottom: 6px; }
.contact-info-card p { font-size: 14px; margin-bottom: 0; }

.form-control-nrs {
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(21,101,192,0.15);
  padding: 13px 18px;
  font-size: 14.5px;
  transition: all 0.25s ease;
}
.form-control-nrs:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(21,101,192,0.1); }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* success popup */
.toast-success-nrs {
  position: fixed; top: 110px; right: 24px; z-index: 2000;
  background: #fff; border-left: 5px solid #25D366;
  padding: 18px 24px; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  transform: translateX(140%); transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.toast-success-nrs.show { transform: translateX(0); }
.toast-success-nrs i { color: #25D366; font-size: 26px; }

/* fade-up fallback (if AOS not loaded) */
[data-aos] { }

/* scroll to top progress could go here if needed */

@media (min-width: 992px) {
  .col-lg-2-4 { flex: 0 0 20%; max-width: 20%; }
}

@media (max-width: 991px) {
  .navbar-nrs .navbar-collapse { background: #fff; margin-top: 14px; padding: 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
}
