/* ============================================================
   Samvaad Catalyst Global — Static Site CSS
   Design & Developed by Digital Game On
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #1e2a3a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --blue:    #0A3B8F;
  --orange:  #FF6F00;
  --green:   #138808;
  --white:   #ffffff;
  --dark:    #1e2a3a;
  --muted:   #64748b;
  --bg-muted:#f1f5f9;
  --radius:  10px;
}

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 24px; }
@media (min-width: 768px) { .section-pad { padding: 112px 24px; } }
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-muted  { color: var(--muted); }
.text-white  { color: var(--white); }
.bg-blue     { background: var(--blue); }
.bg-muted    { background: var(--bg-muted); }
.text-center { text-align: center; }
.font-bold   { font-weight: 700; }
.font-semibold{ font-weight: 600; }


/* ── Buttons / CTAs ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; border: 2px solid transparent;
  cursor: pointer; transition: all .25s;
  width: max-content;
}
.btn-orange {
  background: var(--orange); color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: var(--white); color: var(--orange); }
.btn-green {
  background: var(--green); color: var(--white);
  border-color: var(--green);
}
.btn-green:hover { background: var(--white); color: var(--green); }
.btn-blue {
  background: var(--blue); color: var(--white);
  border-color: var(--blue);
}

.btn-blue:hover { background: var(--white); color: var(--blue) !important; }
.btn-outline-blue {
  background: transparent; color: var(--blue);
  border-color: var(--blue);

}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-ghost {
  background: rgba(255,255,255,.1); color: var(--white);
  border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }

@media screen and (min-width: 1024px) {
  .btn-blue {
  color: white !important;
}
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 80px; display: flex; align-items: center; justify-content: space-between;
}
/* ── Navbar logo — to resize: change height below ── */
.scg-navbar-logo { height: 75px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  position: relative; font-size: 14px; font-weight: 500;
  color: var(--muted); transition: color .2s;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  height: 2px; width: 0; background: var(--blue); border-radius: 2px;
  transition: width .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.hamburger { display: none; background: none; border: none; cursor: pointer; }

/* ── Mobile Drawer ────────────────────────────────────────── */
.drawer-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 998;
}
.drawer {
  position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
  background: #fff; z-index: 999; display: flex; flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,.15);
  transform: translateX(100%); transition: transform .35s ease;
}
.drawer.open { transform: translateX(0); }
.drawer-backdrop.open { display: block; }
.drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid #e2e8f0;
}
.drawer-header img { height: 36px; width: auto; }
.drawer-close { background: none; border: none; cursor: pointer; color: var(--blue); }
.drawer-links { flex: 1; overflow-y: auto; padding: 24px 16px; display: flex; flex-direction: column; gap: 4px; }
.drawer-links a {
  display: block; padding: 12px 12px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; color: var(--dark);
  transition: color .2s, background .2s;
}
.drawer-links a:hover,
.drawer-links a.active { color: var(--blue); background: rgba(10,59,143,.05); }
.drawer-cta { padding: 12px; }
.drawer-socials {
  padding: 20px 24px; border-top: 1px solid #e2e8f0;
  display: flex; gap: 20px;
}
.drawer-socials a { color: var(--blue); transition: opacity .2s; }
.drawer-socials a:hover { opacity: .7; }

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative; height: 90vh; min-height: 500px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
/* ── Hero background image — class: scg-hero-bg ── */
.scg-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(30,42,58,.5); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 960px; }
.hero-title {
  font-size: clamp(2rem, 6vw, 4.5rem); font-weight: 800;
  color: #fff; line-height: 1.1; margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.4rem); color: rgba(255,255,255,.9);
  margin-bottom: 40px; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Banner (inner pages) ─────────────────────────────────── */
.banner {
  position: relative; height: 40vh; min-height: 300px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
/* ── Banner background image — class: scg-banner-img ── */
.scg-banner-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.banner-overlay-orange { position: absolute; inset: 0; background: rgba(255,111,0,.70); }
.banner h1 { position: relative; z-index: 2; font-size: clamp(2rem,5vw,3rem); font-weight: 800; color: #fff; text-align: center; }

/* ── Value Strip ──────────────────────────────────────────── */
.value-strip { background: var(--blue); padding: 32px 24px; }
.value-strip-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
}
@media (min-width: 768px) {
  .value-strip-inner { flex-direction: row; align-items: center; }
}
.value-tagline {
  font-size: 18px; font-weight: 700; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 16px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .value-tagline {
    border-bottom: none; border-right: 1px solid rgba(255,255,255,.2);
    padding-bottom: 0; padding-right: 32px;
  }
}
.value-text { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.7; }

/* ── Cards / Services ─────────────────────────────────────── */
.card {
  background: #fff; border-radius: var(--radius);
  padding: 32px; box-shadow: 0 0 0 1px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px rgba(0,0,0,.05), 0 8px 24px rgba(0,0,0,.1); }
.card-icon {
  display: inline-flex; padding: 12px; background: rgba(10,59,143,.1);
  color: var(--blue); border-radius: var(--radius); margin-bottom: 16px;
  transition: background .3s, color .3s;
}
.card:hover .card-icon { background: var(--blue); color: #fff; }
.card h3 { font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
.card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }
.card ul { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.card ul li { font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.card ul li::before {
  content: ''; display: block; width: 6px; height: 6px; min-width: 6px;
  border-radius: 50%; background: var(--blue); margin-top: 6px;
}
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ── Service mini cards (homepage) ───────────────────────── */
.service-mini {
  display: flex; align-items: center; gap: 16px;
  padding: 24px; border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.05);
  transition: background .3s;
}
.service-mini:hover { background: var(--bg-muted); }
.service-mini .icon-wrap {
  padding: 10px; background: rgba(10,59,143,.1);
  color: var(--blue); border-radius: var(--radius);
  transition: background .3s, color .3s; flex-shrink: 0;
}
.service-mini:hover .icon-wrap { background: var(--blue); color: #fff; }
.service-mini span { font-weight: 600; color: var(--dark); font-size: 14px; }

/* ── About split ──────────────────────────────────────────── */
.about-split { display: grid; }
@media (min-width: 768px) { .about-split { grid-template-columns: 1fr 1fr; } }
.about-panel { padding: 48px 24px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .about-panel { padding: 96px; } }
.about-panel.muted-bg { background: var(--bg-muted); }
.about-panel.blue-bg  { background: var(--blue); }

/* ── SCG Identity letters — adjust .scg-letter-* font-size to resize ── */
.scg-identity { margin-bottom: 32px; }
.scg-identity p { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 12px; }
.scg-identity ul { display: flex; flex-direction: column; gap: 8px; }
.scg-identity li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--muted); }
.scg-letter-s { font-size: 1.15em; font-weight: 700; color: var(--orange); flex-shrink: 0; }
.scg-letter-c { font-size: 1.15em; font-weight: 700; color: var(--blue);   flex-shrink: 0; }
.scg-letter-g { font-size: 1.15em; font-weight: 700; color: var(--green);  flex-shrink: 0; }

/* ── Profile (team) ───────────────────────────────────────── */
/* Profile image container: adjust width/height here to resize both equally */
.profile-img-wrap { display: inline-block; margin-bottom: 24px; }
.profile-img {
  width: 200px; height: 200px; object-fit: cover;
  border-radius: var(--radius);
  outline: 3px solid var(--blue); outline-offset: 4px;
  background: var(--bg-muted);
}
/* Individual class hooks for resizing if needed */
.scg-profile-siddhesh { /* same as .profile-img */ }
.scg-profile-pradnya  { /* same as .profile-img */ }

.team-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .team-grid { grid-template-columns: 350px 1fr; } }
.team-bio { display: flex; flex-direction: column; gap: 20px; }
.team-bio p { font-size: 15px; color: var(--muted); line-height: 1.8; }
.team-name { font-size: 22px; font-weight: 700; color: var(--blue); }
.team-role { font-size: 15px; font-weight: 600; color: var(--blue); margin-top: 4px; }
.team-sub  { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── Network tags ─────────────────────────────────────────── */
.tags-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.tag {
  display: inline-block; white-space: nowrap;
  padding: 12px 20px; background: var(--bg-muted);
  border-radius: var(--radius); font-size: 13px;
  font-weight: 500; color: var(--dark);
  transition: background .3s, color .3s; cursor: default;
}
.tag:hover { background: var(--blue); color: #fff; }

/* ── Vision / Mission / Values ────────────────────────────── */
.vm-grid { display: grid; gap: 64px; }
@media (min-width: 768px) { .vm-grid { grid-template-columns: 1fr 1fr; } }
.vm-card { position: relative; }
.vm-card::before {
  content: ''; position: absolute; top: -16px; left: -16px;
  width: 64px; height: 64px; background: rgba(10,59,143,.1);
  border-radius: var(--radius);
}
.vm-label { font-size: 14px; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; position: relative; }
.vm-text  { font-size: 18px; color: var(--muted); line-height: 1.7; position: relative; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid { display: grid; gap: 64px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon { padding: 10px; background: rgba(10,59,143,.1); color: var(--blue); border-radius: var(--radius); flex-shrink: 0; }
.form-group { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-input, .form-textarea {
  width: 100%; padding: 16px; background: var(--bg-muted);
  border: none; border-radius: var(--radius); font-size: 14px;
  font-family: inherit; outline: none; transition: box-shadow .2s;
}
.form-input:focus, .form-textarea:focus { box-shadow: 0 0 0 2px var(--blue); }
.form-textarea { resize: none; }

/* ── Footer ───────────────────────────────────────────────── */
.footer-cta { background: var(--blue); padding: 48px 24px; }
.footer-cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; text-align: center;
}
@media (min-width: 768px) { .footer-cta-inner { flex-direction: row; justify-content: center; } }
.footer-body { background: #1e2a3a; padding: 64px 24px 32px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; gap: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
/* ── Footer logo — to resize: change height on .scg-footer-logo ── */
.scg-footer-logo { height: 64px; width: auto; margin-bottom: 24px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer-heading { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 12px; }
.footer-contact-item a,
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; line-height: 1.5; }
.footer-contact-item a:hover { color: #fff; }
.footer-socials { display: flex; gap: 16px; margin-top: 16px; }
.footer-socials a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-socials a:hover { color: #fff; }
.footer-bottom { max-width: 1280px; margin: 48px auto 0; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; }
.footer-copy  { font-size: 11px; color: rgba(255,255,255,.3); }
.footer-credit{ font-size: 11px; color: rgba(255,255,255,.2); margin-top: 4px; }

/* ── Back To Top ──────────────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff; border: none;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.2); transition: opacity .3s, transform .3s;
  z-index: 100;
}
#back-to-top.show { display: flex; }
#back-to-top:hover { transform: translateY(-3px); }

/* ── WhatsApp Float ───────────────────────────────────────── */
#whatsapp-float {
  /* ── Replace WHATSAPP_NUMBER in the onclick/href below ── */
  position: fixed; bottom: 32px; left: 32px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4); z-index: 100;
  transition: transform .3s; cursor: pointer;
}
#whatsapp-float:hover { transform: scale(1.1); }
#whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── Highlighted box ──────────────────────────────────────── */
.highlight-box {
  background: var(--blue); color: #fff;
  padding: 32px; border-radius: var(--radius);
}
.highlight-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.highlight-box p  { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.7; }

/* ── Border highlight ─────────────────────────────────────── */
.border-quote {
  border-left: 4px solid var(--blue); padding-left: 24px;
  font-size: 18px; font-weight: 500; color: var(--dark); line-height: 1.6;
  margin-bottom: 24px;
}

/* ── Social icons inline ──────────────────────────────────── */
.social-icons { display: flex; gap: 12px; }
.social-icon {
  padding: 10px; background: var(--bg-muted); color: var(--blue);
  border-radius: var(--radius); transition: background .2s, color .2s;
  display: inline-flex;
}
.social-icon:hover { background: var(--blue); color: #fff; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero { height: 80vh; }
  .banner { height: 220px; min-height: 220px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .profile-img { width: 200px; height: 200px; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── Map ──────────────────────────────────────────────────── */
.map-section { height: 400px; width: 100%; }
.map-section iframe { width: 100%; height: 100%; border: 0; filter: grayscale(30%); }

/* ── pt-20 (below fixed navbar) ──────────────────────────── */
.page-wrap { padding-top: 80px; }

/* ── Policy Pages (Privacy & Terms) ─────────────────────── */
.policy-block { margin-bottom: 36px; }
.policy-h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--bg-muted);
}
.policy-block p { color: var(--muted); line-height: 1.8; }
.policy-list {
  list-style: disc;
  padding-left: 24px;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.9;
}
