/* --- TEAM PRO (Custom Responsive Social) --- */
.nx-team-social-pro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
}

.nx-team-social-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f6fa;
  color: #1d4ed8;
  font-size: 1.25rem;
  box-shadow: 0 2px 8px rgba(29,78,216,0.08);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.nx-team-social-ic:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-2px) scale(1.08);
}

@media (max-width: 576px) {
  .nx-team-social-pro {
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
  }
  .nx-team-social-ic {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
  }
}
/* =========================================
   SUYANSH CONSULTANCY | PREMIUM HOME THEME (FINAL)
   Works perfectly with your EJS page
========================================= */

/* ✅ Root */
:root{
  --bg: #f6f9fc;
  --text: #0f172a;
  --muted: #64748b;
  --card: #ffffff;
  --border: #e2e8f0;

  --brand: #1d4ed8;
  --brand-dark: #1e40af;
  --brand2: #0ea5e9;

  --success: #16a34a;
  --warning: #f59e0b;

  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 22px 60px rgba(15, 23, 42, 0.12);

  --radius: 16px;
  --radius-lg: 22px;

  --transition: 0.25s ease;
}

/* ✅ Global Reset */
html, body{
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Inter", system-ui, -apple-system, Arial, sans-serif;
}

/* ✅ Fix Bootstrap spacing issues */
section{
  margin: 0 !important;
}

/* ✅ Buttons */
.btn{
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: var(--transition);
  padding: 12px 18px;
}

.btn-lg{
  padding: 14px 20px;
  border-radius: 16px;
}

.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border: none;
  box-shadow: 0 12px 26px rgba(29, 78, 216, 0.22);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(29, 78, 216, 0.28);
}

.btn-success{
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.18);
}
.btn-success:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.24);
}

.btn-outline-light{
  border: 2px solid rgba(255,255,255,.25);
  color: #fff;
}
.btn-outline-light:hover{
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* ✅ HERO */
.nx-hero{
  position: relative;
  padding: 120px 0 70px;
  background: radial-gradient(1200px 620px at 15% 15%, rgba(29,78,216,.22), transparent 55%),
              radial-gradient(900px 520px at 85% 25%, rgba(34,197,94,.14), transparent 60%),
              linear-gradient(135deg, #0b1220 0%, #0f1b3a 55%, #0b1220 100%);
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nx-hero-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity: 0.8;
}

.nx-badge{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.55rem .95rem;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  font-weight: 700;
  font-size:.92rem;
}

.nx-hero-title{
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.nx-text-grad{
  background: linear-gradient(135deg, #6d5efc, #22c55e);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.nx-hero-subtitle{
  max-width: 680px;
  font-size: 1.08rem;
  color: rgba(255,255,255,.86);
  line-height: 1.6;
}

/* ✅ TRUST STATS */
.nx-trust{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.nx-trust-item{
  min-width: 150px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.nx-trust-num{
  font-weight: 950;
  font-size: 1.25rem;
}

.nx-trust-label{
  font-size: .85rem;
  color: rgba(255,255,255,.72);
}

/* ✅ HERO RIGHT CARD */
.nx-hero-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  padding: 16px;
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
}

.nx-mini-pill{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.nx-hero-visual img{
  border-radius: 22px !important;
  border: 1px solid rgba(255,255,255,.10);
}

.nx-hero-card-bottom{
  display:grid;
  gap: 10px;
  margin-top: 14px;
}

.nx-mini-card{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.nx-mini-card i{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(109,94,252,.22);
  border: 1px solid rgba(109,94,252,.35);
}

/* ✅ SECTIONS */
.nx-section{
  padding: 70px 0;
}

.nx-section-soft{
  background: linear-gradient(to bottom, #f8fafc, #f6f9fc);
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

.nx-section-alt{
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

.nx-head .nx-label{
  display:inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(29,78,216,.10);
  color: #1d4ed8;
  font-weight: 900;
  font-size:.82rem;
  border: 1px solid rgba(29,78,216,.18);
  margin-bottom: 10px;
}

.nx-title{
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
}

.nx-subtitle{
  color: #475569;
  max-width: 820px;
  margin: 10px auto 0;
  font-size: 1.05rem;
}

/* ✅ PILLARS */
.nx-pillar{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.nx-pillar:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29,78,216,.22);
}

.nx-icon{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(29,78,216,.12);
  color:#1d4ed8;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.nx-icon-green{ background: rgba(34,197,94,.14); color:#16a34a; }
.nx-icon-sky{ background: rgba(14,165,233,.14); color:#0284c7; }

/* ✅ CARDS */
.nx-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height:100%;
}

.nx-card:hover{
  transform: translateY(-4px);
  border-color: rgba(29,78,216,.25);
  box-shadow: var(--shadow-md);
}

.nx-card-icon{
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(29,78,216,.12);
  color: #1d4ed8;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.nx-chip{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.10);
  border:1px solid rgba(34,197,94,.18);
  color:#16a34a;
  font-weight: 900;
  font-size:.78rem;
}

.nx-chip-dark{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.12);
  color:#0b1220;
  font-weight:900;
  font-size:.78rem;
}

/* ✅ LIST / WHY SUYANSH CONSULTANCY */
.nx-list{
  display:grid;
  gap: 10px;
}

.nx-list-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(0,0,0,.04);
}

.nx-list-item i{
  color:#16a34a;
  margin-top:2px;
}

/* ✅ IMAGE BADGE */
.nx-img-card{
  position:relative;
}

.nx-img-badge{
  position:absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,0,0,.06);
  font-weight: 800;
  color:#0b1220;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.nx-img-badge i{ color:#1d4ed8; }

/* ✅ STUDY ABROAD STEPS */
.nx-steps{
  display:grid;
  gap:10px;
}

.nx-step{
  padding: 14px 16px;
  border-radius: 18px;
  background:#fff;
  border: 1px solid var(--border);
  display:flex;
  gap:10px;
  align-items:center;
  box-shadow: 0 10px 22px rgba(0,0,0,.04);
}

.nx-step span{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: rgba(14,165,233,.14);
  border: 1px solid rgba(14,165,233,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  color:#0284c7;
}

/* ✅ COUNTRY CARDS */
.nx-country{
  display:block;
  padding: 14px 14px;
  border-radius: 18px;
  background:#fff;
  border:1px solid var(--border);
  text-decoration:none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height:100%;
}

.nx-country:hover{
  transform: translateY(-3px);
  border-color: rgba(14,165,233,.28);
  box-shadow: var(--shadow-md);
}

.nx-country-all{
  background: linear-gradient(135deg, rgba(14,165,233,.10), rgba(29,78,216,.08));
}

/* ✅ TESTIMONIAL */
.nx-card-quote p{
  color:#334155;
  line-height: 1.6;
}

.nx-quote-icon{
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(29,78,216,.12);
  color:#1d4ed8;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.nx-stars i{ color: var(--warning); }

/* ✅ JOB ROW */
.nx-job{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(2,6,23,.14);
}

.nx-job:last-child{
  border-bottom:none;
}

/* ✅ FINAL CTA */
.nx-final{
  padding: 70px 0;
}

.nx-final-card{
  background: linear-gradient(135deg, rgba(29,78,216,.12), rgba(34,197,94,.08));
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 26px;
  padding: 20px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  flex-wrap:wrap;
  box-shadow: var(--shadow-md);
}

/* ✅ RESPONSIVE */
@media (max-width: 992px){
  .nx-hero{
    padding: 110px 0 55px;
  }
  .nx-section{
    padding: 55px 0;
  }
  .nx-hero-card{
    margin-top: 10px;
  }
}

@media (max-width: 576px){
  .nx-hero-title{
    font-size: 1.95rem;
  }
  .nx-hero-subtitle{
    font-size: 0.98rem;
  }
  .btn-lg{
    width: 100%;
  }
  .nx-trust-item{
    min-width: 45%;
  }
}

/* ===============================
   SUYANSH CONSULTANCY PREMIUM NAVBAR
================================ */

.nav-blur{
  background: rgba(11, 18, 32, 0.92) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Brand */
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  letter-spacing: 0.2px;
}

.brand-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  box-shadow: 0 0 0 6px rgba(29,78,216,0.18);
}

/* Nav links */
.navbar .nav-link{
  color: rgba(255,255,255,0.85) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 14px !important;
  border-radius: 12px;
  transition: 0.2s ease;
  position: relative;
}

.navbar .nav-link:hover{
  color: #fff !important;
  background: rgba(255,255,255,0.07);
  transform: translateY(-1px);
}

/* Active highlight (auto using current page) */
.navbar .nav-link.active{
  color: #ffffff !important;
  background: rgba(29,78,216,0.15);
  border: 1px solid rgba(29,78,216,0.25);
}

/* Quote button */
.navbar .btn-primary{
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  border: none;
  border-radius: 14px;
  font-weight: 900;
  padding: 10px 16px;
  box-shadow: 0 14px 28px rgba(29,78,216,0.22);
  transition: 0.25s ease;
}

.navbar .btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(29,78,216,0.28);
}

/* Mobile toggle */
.navbar-toggler{
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 14px;
  padding: 8px 10px;
}

.navbar-toggler:focus{
  box-shadow: 0 0 0 3px rgba(59,130,246,0.25) !important;
}

/* Mobile dropdown style */
@media (max-width: 992px){
  .navbar-collapse{
    margin-top: 10px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  }

  .navbar .nav-link{
    padding: 12px 14px !important;
    margin-bottom: 6px;
  }

  .navbar .btn-primary{
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
}

/* ===============================
   SUYANSH CONSULTANCY PREMIUM FOOTER
================================ */

.nx-footer{
  background: radial-gradient(1000px 500px at 15% 0%, rgba(29,78,216,0.18), transparent 55%),
              radial-gradient(800px 450px at 85% 10%, rgba(34,197,94,0.12), transparent 55%),
              #08101f;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.nx-footer::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background: linear-gradient(90deg, #1d4ed8, #0ea5e9, #22c55e);
}

.footer-tagline{
  font-size: 0.78rem;
  color: rgba(14,165,233,0.9);
  font-weight: 700;
}

.footer-description{
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  max-width: 360px;
  line-height: 1.6;
}

/* Logo */
.footer-logo-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 1.15rem;
  color:#fff;
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  box-shadow: 0 16px 35px rgba(29,78,216,0.28);
}

/* Headings */
.footer-heading{
  color:#fff;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 14px;
  position: relative;
}

.footer-heading::after{
  content:"";
  display:block;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  margin-top: 8px;
  background: linear-gradient(90deg, #0ea5e9, #1d4ed8);
}

/* Links */
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom: 10px;
}

.footer-link{
  color: rgba(255,255,255,0.7);
  text-decoration:none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.footer-link:hover{
  color:#fff;
  transform: translateX(3px);
}

/* Contact */
.contact-info p{
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}

.contact-info i{
  color: rgba(14,165,233,0.95);
  margin-right: 8px;
}

/* Newsletter */
.footer-input{
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #fff !important;
  border-radius: 14px !important;
  padding: 10px 14px !important;
}

.footer-input::placeholder{
  color: rgba(255,255,255,0.5);
}

.footer-send-btn{
  border-radius: 14px;
  padding: 10px 14px;
  border: none;
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: #fff;
  box-shadow: 0 14px 30px rgba(29,78,216,0.25);
  transition: 0.25s ease;
}

.footer-send-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Small note */
.footer-note{
  display:block;
  margin-top: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}

/* Social Icons */
.social-links{
  display:flex;
  gap: 10px;
}

.social-icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.8);
  transition: 0.2s ease;
  text-decoration:none;
}

.social-icon:hover{
  background: rgba(29,78,216,0.18);
  color: #fff;
  transform: translateY(-2px);
}

/* Divider */
.footer-divider{
  height: 1px;
  width: 100%;
  margin: 28px 0 18px;
  background: rgba(255,255,255,0.10);
}

/* Legal */
.footer-legal{
  display:flex;
  gap: 16px;
  flex-wrap:wrap;
}

.footer-legal-link{
  color: rgba(255,255,255,0.6);
  text-decoration:none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.2s ease;
}

.footer-legal-link:hover{
  color:#fff;
}

/* Copyright */
.copyright{
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 768px){
  .nx-footer{
    text-align:center;
  }
  .footer-description{
    margin: 0 auto;
  }
  .social-links{
    justify-content:center;
  }
  .footer-legal{
    justify-content:center;
  }
}/* ===============================
   SUYANSH CONSULTANCY ABOUT PAGE (PREMIUM)
   Works with your existing HTML
================================ */

/* --- HERO --- */
.about-hero{
  position: relative;
  padding: 110px 0 70px;
  background:
    radial-gradient(900px 500px at 18% 20%, rgba(29,78,216,.14), transparent 60%),
    radial-gradient(800px 450px at 85% 25%, rgba(14,165,233,.12), transparent 60%),
    linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(2,6,23,.06);
}

.about-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(rgba(2,6,23,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .45;
  pointer-events:none;
}

.about-hero .container{
  position: relative;
  z-index: 2;
}

.about-hero-image{
  border-radius: 22px !important;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 24px 60px rgba(2,6,23,.10);
  overflow: hidden;
}

.about-hero-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-hero-image:hover img{
  transform: scale(1.03);
}

/* Badge */
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: rgba(29,78,216,.10);
  border: 1px solid rgba(29,78,216,.18);
  color: #1d4ed8;
  font-weight: 800;
  font-size: .88rem;
}

.hero-title{
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: #0f172a;
}

.hero-subtitle{
  font-size: 1.05rem;
  color: #475569;
  max-width: 620px;
  line-height: 1.7;
}

/* Buttons in hero */
.about-hero .btn{
  border-radius: 14px;
  padding: .65rem 1.1rem;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}

.about-hero .btn:hover{
  transform: translateY(-2px);
}

.about-hero .btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border: none;
  box-shadow: 0 18px 45px rgba(29,78,216,.18);
}

.about-hero .btn-outline-primary{
  border: 2px solid rgba(29,78,216,.35);
  color: var(--brand);
}

.about-hero .btn-outline-primary:hover{
  background: rgba(29,78,216,.10);
  border-color: rgba(29,78,216,.55);
}

/* --- SECTION BASE --- */
.section{
  padding: 70px 0;
}

.section-header{
  margin-bottom: 34px;
}

.section-label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(29,78,216,.10);
  border: 1px solid rgba(29,78,216,.18);
  color: var(--brand);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
}

.section-title{
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #0f172a;
}

/* --- PURPOSE CARDS --- */
.purpose-card{
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 18px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 14px 30px rgba(2,6,23,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.purpose-card:hover{
  transform: translateY(-5px);
  border-color: rgba(29,78,216,.25);
  box-shadow: 0 22px 45px rgba(2,6,23,.08);
}

.purpose-icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 12px;
  box-shadow: 0 16px 30px rgba(0,0,0,.10);
}

.purpose-title{
  font-weight: 900;
  margin-bottom: 6px;
  color: #0f172a;
}

.purpose-desc{
  color: #475569;
  font-size: .92rem;
  margin: 0;
}

/* --- STATS GRID --- */
.stats-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat-item{
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(2,6,23,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.stat-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(2,6,23,.08);
}

.stat-number{
  font-weight: 950;
  font-size: 1.9rem;
  color: var(--brand);
  margin-bottom: 6px;
}

.stat-label{
  color: #475569;
  font-size: .92rem;
  font-weight: 700;
}

/* --- MISSION & VISION --- */
.mission-card,
.vision-card{
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 35px rgba(2,6,23,.05);
}

.mission-header,
.vision-header{
  padding: 22px 22px 14px;
  background:
    radial-gradient(500px 240px at 12% 10%, rgba(29,78,216,.12), transparent 60%),
    linear-gradient(135deg, #f8fbff, #eef6ff);
  border-bottom: 1px solid rgba(2,6,23,.06);
}

.vision-header{
  background:
    radial-gradient(500px 240px at 12% 10%, rgba(34,197,94,.12), transparent 60%),
    linear-gradient(135deg, #f6fffb, #eafff2);
}

.mission-icon,
.vision-icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 12px;
  box-shadow: 0 16px 30px rgba(0,0,0,.10);
}

.mission-icon{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

.vision-icon{
  background: linear-gradient(135deg, var(--success), #0d8b3d);
}

.mission-title,
.vision-title{
  font-weight: 950;
  margin: 0;
  color: #0f172a;
}

.mission-body,
.vision-body{
  padding: 16px 22px 22px;
}

.mission-text,
.vision-text{
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-item{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(2,6,23,.10);
  font-weight: 700;
  color: #0f172a;
}

.feature-item:last-child{
  border-bottom: none;
}

.goal{
  border-top: 1px solid rgba(2,6,23,.08);
  padding-top: 14px;
}

/* --- SERVICE PILLARS --- */
.service-pillar{
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 22px;
  padding: 26px;
  height: 100%;
  text-align: left;
  box-shadow: 0 14px 30px rgba(2,6,23,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-pillar:hover{
  transform: translateY(-6px);
  border-color: rgba(29,78,216,.22);
  box-shadow: 0 22px 45px rgba(2,6,23,.08);
}

.service-pillar .pillar-icon{
  margin: 0 0 16px 0;
  border-radius: 18px;
}

.pillar-title{
  font-weight: 950;
  margin-bottom: 10px;
  color: #0f172a;
}

.pillar-desc{
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
}

.pillar-link{
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.pillar-link:hover{
  color: var(--brand-dark);
}

/* --- TEAM --- */
.team-member{
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 35px rgba(2,6,23,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.team-member:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(2,6,23,.08);
}

.member-image{
  height: 220px;
  overflow: hidden;
}

.member-image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.team-member:hover img{
  transform: scale(1.05);
}

.member-info{
  padding: 18px 18px 22px;
}

.member-name{
  font-weight: 950;
  margin-bottom: 4px;
}

.member-role{
  font-weight: 900;
  font-size: .9rem;
}

.member-bio{
  color: #475569;
}

/* --- CTA CARD --- */
.cta-card{
  border-radius: 22px !important;
  border: 1px solid rgba(29,78,216,.12);
  background: linear-gradient(135deg, rgba(29,78,216,.08), rgba(34,197,94,.06));
  box-shadow: 0 16px 40px rgba(2,6,23,.06);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px){
  .about-hero{ padding: 90px 0 55px; }
  .stats-grid{ margin-top: 18px; }
}

@media (max-width: 768px){
  .section{ padding: 52px 0; }
  .stats-grid{ grid-template-columns: 1fr; }
  .about-hero-image{ margin-top: 16px; }
}

@media (max-width: 576px){
  .about-hero{ padding: 72px 0 44px; }
  .about-hero .btn{ width: 100%; }
}


/* =========================================
   SUYANSH CONSULTANCY SERVICES PAGE (PREMIUM CORPORATE)
   Matches your NX Home theme
========================================= */

/* HERO */
.services-hero{
  position: relative;
  padding: 110px 0 70px;
  background:
    radial-gradient(900px 520px at 18% 20%, rgba(29,78,216,.14), transparent 60%),
    radial-gradient(800px 480px at 85% 25%, rgba(14,165,233,.12), transparent 60%),
    linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  border-bottom: 1px solid rgba(2,6,23,.06);
  overflow: hidden;
}

.services-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(2,6,23,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .45;
  pointer-events:none;
}

.services-hero .container{
  position: relative;
  z-index: 2;
}

.services-hero-image{
  border-radius: 22px !important;
  border: 1px solid rgba(2,6,23,.08);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2,6,23,.10);
}

.services-hero-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.services-hero-image:hover img{
  transform: scale(1.03);
}

/* Badge (reusable) */
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: rgba(29,78,216,.10);
  border: 1px solid rgba(29,78,216,.18);
  color: #1d4ed8;
  font-weight: 900;
  font-size: .88rem;
}

.hero-title{
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #0f172a;
}

.hero-subtitle{
  font-size: 1.05rem;
  color: #475569;
  max-width: 620px;
  line-height: 1.7;
}

/* Hero buttons */
.services-hero .btn{
  border-radius: 14px;
  padding: .65rem 1.1rem;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}

.services-hero .btn:hover{ transform: translateY(-2px); }

.services-hero .btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border: none;
  box-shadow: 0 18px 45px rgba(29,78,216,.18);
}

.services-hero .btn-outline-primary{
  border: 2px solid rgba(29,78,216,.35);
  color: var(--brand);
}

.services-hero .btn-outline-primary:hover{
  background: rgba(29,78,216,.10);
  border-color: rgba(29,78,216,.55);
}

/* SECTION BASE */
.section{
  padding: 70px 0;
}

.section-header{
  margin-bottom: 34px;
}

.section-label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(29,78,216,.10);
  border: 1px solid rgba(29,78,216,.18);
  color: var(--brand);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
}

.section-title{
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #0f172a;
}

.section-subtitle{
  color: #475569;
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* SERVICE CARDS (Premium) */
.service-card{
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 22px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 14px 35px rgba(2,6,23,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before{
  content:"";
  position:absolute;
  left:0; top:0; right:0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  opacity: 0;
  transition: opacity .18s ease;
}

.service-card:hover::before{ opacity: 1; }

.service-card:hover{
  transform: translateY(-7px);
  border-color: rgba(29,78,216,.22);
  box-shadow: 0 26px 55px rgba(2,6,23,.10);
}

.service-icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(29,78,216,.12);
  border: 1px solid rgba(29,78,216,.18);
  color: var(--brand);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.service-title{
  font-weight: 950;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.service-desc{
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-features .feature-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 7px 0;
  color: #0f172a;
  font-weight: 700;
  font-size: .92rem;
}

.service-features .feature-item i{
  margin-top: 2px;
  color: var(--success);
}

/* Meta line */
.service-meta{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 12px;
}

.meta-item{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.08);
  font-size: .78rem;
  font-weight: 800;
  color: #0f172a;
}

/* DETAILS SECTION */
.service-detail{
  padding: 60px 0;
  border-bottom: 1px solid rgba(2,6,23,.08);
}

.service-detail:last-child{
  border-bottom: none;
  padding-bottom: 10px;
}

.detail-image{
  border-radius: 22px !important;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 24px 60px rgba(2,6,23,.10);
  overflow:hidden;
}

.detail-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .6s ease;
}

.detail-image:hover img{
  transform: scale(1.03);
}

/* Tech badges (Premium) */
.tech-stack{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tech-badge{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(29,78,216,.10);
  border: 1px solid rgba(29,78,216,.16);
  color: var(--brand);
  font-weight: 900;
  font-size: .78rem;
}

/* PROCESS (Timeline Style) */
.process-steps{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  gap: 14px;
}

.process-step{
  display:flex;
  gap: 16px;
  align-items:flex-start;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 14px 35px rgba(2,6,23,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.process-step:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(2,6,23,.08);
}

.step-number{
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  font-size: 1.2rem;
  flex-shrink:0;
  box-shadow: 0 16px 30px rgba(29,78,216,.18);
}

.step-content h4{
  font-weight: 950;
  margin-bottom: 6px;
  color:#0f172a;
}

/* CTA */
.cta-card{
  border-radius: 22px !important;
  border: 1px solid rgba(29,78,216,.12);
  background: linear-gradient(135deg, rgba(29,78,216,.08), rgba(14,165,233,.06));
  box-shadow: 0 16px 40px rgba(2,6,23,.06);
}

/* RESPONSIVE */
@media (max-width: 992px){
  .services-hero{ padding: 90px 0 55px; }
}

@media (max-width: 768px){
  .section{ padding: 55px 0; }
  .process-step{
    flex-direction: column;
    text-align: left;
  }
}

@media (max-width: 576px){
  .services-hero{ padding: 72px 0 45px; }
  .services-hero .btn{
    width:100%;
  }
  .service-card{ padding: 18px; }
  .process-step{ padding: 16px; }
}

/* =========================================
   SUYANSH CONSULTANCY INTERNSHIPS PAGE (PREMIUM)
========================================= */


.nx-page-hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 18% 18%, rgba(29,78,216,.22), transparent 55%),
    radial-gradient(700px 380px at 84% 26%, rgba(34,197,94,.16), transparent 58%),
    radial-gradient(500px 300px at 60% 85%, rgba(14,165,233,.12), transparent 60%);
  pointer-events:none;
}

.nx-hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.55rem 1rem;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  font-weight:800;
  font-size:.9rem;
}

.nx-page-title{
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.nx-page-subtitle{
  font-size: 1.06rem;
  color: rgba(255,255,255,.86);
  max-width: 680px;
  line-height: 1.7;
}

.nx-text-grad{
  background: linear-gradient(135deg, #6d5efc, #22c55e);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

/* small stats */
.nx-mini-stats{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.nx-mini-stat{
  min-width: 150px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.nx-mini-num{ font-weight:950; font-size:1.2rem; }
.nx-mini-label{ font-size:.86rem; color: rgba(255,255,255,.74); }

/* side card */
.nx-hero-sidecard{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
}

.nx-side-pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .85rem;
  margin-bottom: 12px;
}

.nx-side-img{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
}

.nx-side-img img{
  width:100%;
  height: 260px;
  object-fit: cover;
  transition: transform .6s ease;
}

.nx-hero-sidecard:hover .nx-side-img img{
  transform: scale(1.03);
}

.nx-side-list{
  display:grid;
  gap:10px;
}

.nx-side-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.nx-side-item i{
  color:#22c55e;
  margin-top: 2px;
}

/* Soft section */
.nx-section-soft{
  background: rgba(248,250,252,.75);
  border-top: 1px solid rgba(2,6,23,.06);
  border-bottom: 1px solid rgba(2,6,23,.06);
}

.nx-label{
  display:inline-flex;
  align-items:center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(29,78,216,.10);
  border: 1px solid rgba(29,78,216,.18);
  color: #1d4ed8;
  font-weight: 950;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.nx-title{
  font-weight: 950;
  letter-spacing: -0.02em;
}

.nx-subtitle{
  color:#475569;
  max-width: 780px;
  margin: 0 auto;
}

/* flow cards */
.nx-flow-card{
  background:#fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 28px rgba(2,6,23,.05);
  transition: transform .18s ease, box-shadow .18s ease;
  height:100%;
}

.nx-flow-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(2,6,23,.08);
}

.nx-flow-num{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  margin-bottom: 10px;
}

/* programs */
.nx-program-card{
  background:#fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(2,6,23,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  height: 100%;
}

.nx-program-card:hover{
  transform: translateY(-6px);
  border-color: rgba(34,197,94,.28);
  box-shadow: 0 26px 55px rgba(2,6,23,.10);
}

.nx-program-top{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.nx-program-icon{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.18);
  color:#16a34a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.25rem;
}

.nx-program-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom: 16px;
}

.nx-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.08);
  font-weight: 900;
  font-size: .76rem;
  color:#0f172a;
}

.nx-program-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: auto;
}

.nx-fee-price{
  font-weight: 950;
  font-size: 1.05rem;
  color:#0f172a;
}

/* final CTA */
.nx-final-card{
  background: linear-gradient(135deg, rgba(29,78,216,.12), rgba(34,197,94,.08));
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 22px;
  padding: 18px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  flex-wrap:wrap;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

@media (max-width: 992px){
  .nx-page-hero{ padding: 90px 0 55px; }
}

@media (max-width: 576px){
  .nx-page-hero{ padding: 72px 0 45px; }
  .nx-page-hero .btn{ width: 100%; }
  .nx-program-bottom{ flex-direction: column; align-items:flex-start; }
}

/* ======================================================
   SUYANSH CONSULTANCY LITE HERO (same as Services hero for all pages)
====================================================== */

.nx-lite-hero{
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 85px 0 55px;
  border-bottom: 1px solid rgba(2,6,23,.06);
}

.nx-pill-badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.55rem 1rem;
  border-radius:999px;
  background: rgba(29,78,216,0.10);
  border: 1px solid rgba(29,78,216,0.18);
  color: #1d4ed8;
  font-weight: 900;
  font-size: .85rem;
}

.nx-lite-title{
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #0f172a;
}

.nx-lite-subtitle{
  font-size: 1.08rem;
  color: #475569;
  line-height: 1.7;
  max-width: 650px;
}

.nx-text-grad-blue{
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nx-lite-hero-img{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 14px 30px rgba(2,6,23,.10);
}

.nx-lite-hero-img img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .6s ease;
}

.nx-lite-hero-img:hover img{
  transform: scale(1.03);
}

@media (max-width: 992px){
  .nx-lite-hero{
    padding: 75px 0 45px;
    text-align: center;
  }
  .nx-lite-hero-img img{
    height: 260px;
  }
  .nx-lite-hero .d-flex{
    justify-content: center;
  }
}

@media (max-width: 576px){
  .nx-lite-hero{
    padding: 65px 0 40px;
  }
  .nx-lite-hero .btn{
    width: 100%;
  }
}


/* ======================================================
   SUYANSH CONSULTANCY LITE HERO (same as Services hero for all pages)
====================================================== */

.nx-lite-hero{
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 85px 0 55px;
  border-bottom: 1px solid rgba(2,6,23,.06);
}

.nx-pill-badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.55rem 1rem;
  border-radius:999px;
  background: rgba(29,78,216,0.10);
  border: 1px solid rgba(29,78,216,0.18);
  color: #1d4ed8;
  font-weight: 900;
  font-size: .85rem;
}

.nx-lite-title{
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #0f172a;
}

.nx-lite-subtitle{
  font-size: 1.08rem;
  color: #475569;
  line-height: 1.7;
  max-width: 650px;
}

.nx-text-grad-blue{
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nx-lite-hero-img{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 14px 30px rgba(2,6,23,.10);
}

.nx-lite-hero-img img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .6s ease;
}

.nx-lite-hero-img:hover img{
  transform: scale(1.03);
}

@media (max-width: 992px){
  .nx-lite-hero{
    padding: 75px 0 45px;
    text-align: center;
  }
  .nx-lite-hero-img img{
    height: 260px;
  }
  .nx-lite-hero .d-flex{
    justify-content: center;
  }
}

@media (max-width: 576px){
  .nx-lite-hero{
    padding: 65px 0 40px;
  }
  .nx-lite-hero .btn{
    width: 100%;
  }
}

/* ==============================
   SUYANSH CONSULTANCY | ABOUT PAGE PREMIUM UI
================================ */

.about-hero{
  position: relative;
  padding: 85px 0 55px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 40%, #e6f7ff 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(2,6,23,.06);
}

.about-hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(700px 350px at 18% 25%, rgba(29,78,216,.15), transparent 60%),
    radial-gradient(650px 320px at 85% 30%, rgba(34,197,94,.12), transparent 60%),
    radial-gradient(480px 260px at 55% 85%, rgba(14,165,233,.12), transparent 60%);
  pointer-events:none;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(29,78,216,.20);
  backdrop-filter: blur(10px);
  font-weight: 800;
  color: #1d4ed8;
  box-shadow: 0 12px 22px rgba(2,6,23,.06);
}

.hero-title{
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #0b1220;
}

.hero-subtitle{
  font-size: 1.08rem;
  color: #475569;
  max-width: 620px;
  line-height: 1.6;
}

.text-gradient{
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9, #22c55e);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

/* Hero Image */
.about-hero-image{
  border-radius: 18px !important;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 22px 45px rgba(2,6,23,.10);
  transform: translateY(0);
  transition: transform .35s ease, box-shadow .35s ease;
}

.about-hero-image img{
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.about-hero-image:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(2,6,23,.14);
}

/* Sections */
.section{
  padding: 70px 0;
}

.section.bg-light{
  background: rgba(248,250,252,.80) !important;
  border-top: 1px solid rgba(2,6,23,.06);
  border-bottom: 1px solid rgba(2,6,23,.06);
}

.section-header{
  margin-bottom: 32px;
}

.section-label{
  display:inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(29,78,216,.10);
  border: 1px solid rgba(29,78,216,.18);
  color: #1d4ed8;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 12px;
}

.section-title{
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  color:#0b1220;
}

/* ✅ Purpose Cards */
.purpose-card{
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 18px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 16px 30px rgba(2,6,23,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.purpose-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(2,6,23,.10);
  border-color: rgba(29,78,216,.22);
}

.purpose-icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.3rem;
  color:#fff;
  margin-bottom: 12px;
}

.purpose-title{
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.purpose-desc{
  color:#475569;
  font-size: .92rem;
  margin: 0;
}

/* ✅ Stats Grid */
.stats-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat-item{
  background:#fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 18px;
  padding: 18px;
  text-align:center;
  box-shadow: 0 16px 30px rgba(2,6,23,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.stat-item:hover{
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(2,6,23,.10);
  border-color: rgba(14,165,233,.25);
}

.stat-number{
  font-size: 1.8rem;
  font-weight: 950;
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.stat-label{
  color:#64748b;
  font-weight: 700;
  font-size: .9rem;
}

/* ✅ Mission + Vision Cards */
.mission-card, .vision-card{
  background:#fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 18px;
  overflow:hidden;
  height: 100%;
  box-shadow: 0 18px 40px rgba(2,6,23,.06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.mission-card:hover, .vision-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(2,6,23,.11);
}

.mission-header, .vision-header{
  padding: 18px 18px 12px;
  background: linear-gradient(135deg, rgba(29,78,216,.10), rgba(14,165,233,.08));
  border-bottom: 1px solid rgba(2,6,23,.06);
}

.vision-header{
  background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(14,165,233,.06));
}

.mission-icon, .vision-icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.25rem;
  color:#fff;
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  margin-bottom: 10px;
}

.vision-icon{
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.mission-title, .vision-title{
  font-weight: 950;
  margin: 0;
  font-size: 1.2rem;
}

.mission-body, .vision-body{
  padding: 14px 18px 18px;
}

.mission-text, .vision-text{
  color:#475569;
  line-height: 1.65;
}

/* ✅ Services Pillars */
.service-pillar{
  background:#fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 18px;
  padding: 22px;
  text-align:center;
  height:100%;
  box-shadow: 0 16px 30px rgba(2,6,23,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-pillar:hover{
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(2,6,23,.10);
  border-color: rgba(29,78,216,.22);
}

.pillar-icon{
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.5rem;
  color:#fff;
  margin: 0 auto 14px;
}

.pillar-title{
  font-weight: 950;
  margin-bottom: 10px;
}

.pillar-desc{
  color:#475569;
  line-height: 1.6;
  margin-bottom: 14px;
}

.pillar-link{
  font-weight: 900;
  text-decoration:none;
  color:#1d4ed8;
}

.pillar-link:hover{
  color:#1e40af;
}

/* ✅ Team */
.team-member{
  background:#fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 18px;
  overflow:hidden;
  height:100%;
  box-shadow: 0 16px 30px rgba(2,6,23,.05);
  transition: transform .22s ease, box-shadow .22s ease;
}

.team-member:hover{
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(2,6,23,.10);
}

.member-image{
  height: 220px;
  overflow:hidden;
}

.member-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .6s ease;
}

.team-member:hover .member-image img{
  transform: scale(1.06);
}

.member-info{
  padding: 18px;
}

.member-name{
  font-weight: 950;
  margin-bottom: 4px;
}

.member-role{
  font-weight: 800;
  font-size: .9rem;
}

.member-bio{
  color:#475569;
  line-height: 1.5;
}

/* ✅ CTA Card */
.cta-card{
  background: linear-gradient(135deg, rgba(29,78,216,.06), rgba(34,197,94,.05));
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(2,6,23,.06);
}

/* ✅ Buttons (Fix Visibility Always) */
.btn{
  border-radius: 14px !important;
  font-weight: 800;
  padding: 0.7rem 1.4rem;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(2,6,23,.10);
}

.btn-primary{
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  border: none;
  color:#fff;
}

.btn-outline-primary{
  border: 2px solid #1d4ed8;
  color:#1d4ed8;
  background: transparent;
}

.btn-outline-primary:hover{
  background: rgba(29,78,216,.08);
  color:#1d4ed8;
}

/* Responsive */
@media(max-width: 992px){
  .about-hero{ padding: 70px 0 40px; }
  .stats-grid{ margin-top: 18px; }
}

@media(max-width: 768px){
  .stats-grid{ grid-template-columns: 1fr; }
}

@media(max-width: 576px){
  .section{ padding: 55px 0; }
  .btn{ width: 100%; }
  .d-flex.flex-wrap{ flex-direction: column; }
}

/* ==============================
   GLOBAL ANIMATIONS (All Pages)
================================ */

/* Base hidden state */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

/* When visible */
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Fade Only */
.reveal-fade {
  opacity: 0;
  transition: opacity .7s ease;
}
.reveal-fade.show {
  opacity: 1;
}

/* Slide Left */
.reveal-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Slide Right */
.reveal-right {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Zoom */
.reveal-zoom {
  opacity: 0;
  transform: scale(.96);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-zoom.show {
  opacity: 1;
  transform: scale(1);
}

/* Stagger support */
.reveal-delay-1 { transition-delay: .06s; }
.reveal-delay-2 { transition-delay: .12s; }
.reveal-delay-3 { transition-delay: .18s; }
.reveal-delay-4 { transition-delay: .24s; }
.reveal-delay-5 { transition-delay: .30s; }

/* Reduce motion (Accessibility) */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-fade, .reveal-zoom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===============================
   SUYANSH CONSULTANCY NAVBAR (MINIMAL)
   =============================== */

.nx-nav{
  padding: 10px 0;
  background: rgba(10, 16, 28, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all .25s ease;
  z-index: 999;
}

.nx-nav.nx-scrolled{
  background: rgba(10, 16, 28, 0.92);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  padding: 8px 0;
}

/* Logo */
.nx-logo{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 12px 30px rgba(29,78,216,0.25);
}

.nx-brand-name{
  font-weight: 900;
  letter-spacing: -0.4px;
  font-size: 1.15rem;
  color: #fff;
}

.nx-brand-tag{
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* Links */
.nx-nav .nav-link{
  color: rgba(255,255,255,0.86) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 12px !important;
  border-radius: 10px;
  transition: all .2s ease;
  position: relative;
}

.nx-nav .nav-link:hover{
  color: #fff !important;
  background: rgba(255,255,255,0.06);
}

.nx-nav .nav-link.active{
  color: #fff !important;
}

.nx-nav .nav-link.active::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
}

/* CTA */
.nx-cta-btn{
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff !important;
  border: none;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  transition: all .2s ease;
  box-shadow: 0 14px 30px rgba(29,78,216,0.18);
}

.nx-cta-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(29,78,216,0.25);
}

/* Mobile menu */
@media(max-width: 991px){
  .nx-nav{
    background: rgba(10, 16, 28, 0.92);
  }

  .nx-nav .navbar-collapse{
    margin-top: 10px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(10, 16, 28, 0.86);
  }

  .nx-nav .nav-link{
    padding: 12px 12px !important;
  }

  .nx-cta-btn{
    width: 100%;
    justify-content: center;
    display: flex;
  }
}

/* Fix fixed navbar overlap */

body{
  padding-top: 20px;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0A1F44; /* Navy */
}

.logo span {
  font-weight: 500;
  color: #1FA2FF; /* Cyan */
}

/* ===============================
   ✅ SUYANSH CONSULTANCY GLOBAL PREMIUM LOADER
================================ */

.nx-loader-wrap{
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(900px 500px at 20% 20%, rgba(29,78,216,.25), transparent 60%),
              radial-gradient(700px 450px at 80% 25%, rgba(34,197,94,.18), transparent 60%),
              rgba(8, 16, 31, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nx-loader-wrap.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nx-loader{
  text-align: center;
  position: relative;
  width: 220px;
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

/* Ring */
.nx-loader-ring{
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 5px solid rgba(255,255,255,0.12);
  border-top-color: rgba(34,197,94,0.95);
  border-right-color: rgba(29,78,216,0.95);
  animation: nxSpin 0.9s linear infinite;
  box-shadow: 0 0 30px rgba(29,78,216,0.25);
}

/* Center dot */
.nx-loader-dot{
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  box-shadow: 0 0 35px rgba(34,197,94,0.45);
}

/* Text */
.nx-loader-brand{
  font-size: 1.25rem;
  font-weight: 950;
  color: #fff;
  letter-spacing: 0.4px;
}

.nx-loader-sub{
  font-size: 0.85rem;
  margin-top: 4px;
  color: rgba(255,255,255,0.7);
}

@keyframes nxSpin{
  to{ transform: rotate(360deg); }
}

/* Mobile size */
@media (max-width: 576px){
  .nx-loader{
    width: 190px;
    border-radius: 18px;
  }
  .nx-loader-ring{
    width: 62px;
    height: 62px;
  }
}

/* ✅ HERO SLIDER (FULL BG + CLEAN) */
.nx-hero-slider{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80")
    center/cover no-repeat;
  overflow: hidden;
  padding-top: 90px; /* because navbar fixed */
}

.nx-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11,18,32,0.92), rgba(29,78,216,0.55));
}

.nx-hero-wrap{
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.nx-hero-content{
  color: #fff;
  padding: 20px 0;
}

.nx-hero-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.nx-hero-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin-bottom: 10px;
}

.nx-hero-subtitle{
  font-size: 1.1rem;
  max-width: 650px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 20px;
}

.nx-hero-btns{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nx-control{
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
}

.nx-control .carousel-control-prev-icon,
.nx-control .carousel-control-next-icon{
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.4));
}

/* ✅ dots */
.nx-indicators{
  justify-content: start;
  margin-left: 0;
}

.nx-indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: none;
  margin-right: 8px;
}

.nx-indicators .active{
  background: #fff;
}

/* ✅ MOBILE FIX */
@media (max-width: 768px){
  .nx-hero-slider{
    min-height: 88vh;
    padding-top: 80px;
  }

  .nx-hero-btns .btn{
    width: 100%;
  }

  .nx-control{
    display: none;
  }
}

