/* ============================================================
   GATHA ENTERPRISES — Shared Design System
   "Engineered Premium" — deep forest green + gold
   ============================================================ */

:root {
  /* Brand palette — navy + gold (var names kept for compatibility) */
  --green-dark:  #0B1E47;  /* deep navy */
  --green-mid:   #16335C;  /* mid navy */
  --green-light: #2E5E96;  /* steel-blue accent */
  --green-pale:  #EAF1FA;  /* pale blue surface */
  --gold:        #C9A24B;
  --gold-light:  #E6C476;
  --gold-pale:   #FBF4E1;
  --white:       #FAFBFD;
  --text:        #14223D;  /* navy-tinted ink */
  --muted:       #586780;  /* blue-grey */
  --border:      #DCE5F1;

  /* Effects */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 4px 16px rgba(11,30,71,.06);
  --shadow:    0 16px 40px rgba(11,30,71,.10);
  --shadow-lg: 0 24px 60px rgba(11,30,71,.16);
  --ring:      0 0 0 3px rgba(201,168,76,.18);

  /* Layout */
  --maxw: 1200px;
  --nav-h: 72px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--gold); color: var(--green-dark);
  padding: 10px 18px; border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Reusable helpers ---------- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: 48px; }
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.bg-pale { background: var(--green-pale); }
.bg-dark { background: var(--green-dark); }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--gold); }
.eyebrow.center { justify-content: center; }

.h-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(28px, 4vw, 42px); line-height: 1.15; color: var(--text);
  margin-bottom: 16px; letter-spacing: -.5px;
}
.h-title.on-dark { color: var(--white); }
.lead { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 600px; }
.lead.on-dark { color: rgba(255,255,255,.72); }
.divider { width: 64px; height: 3px; background: var(--gold); border-radius: 2px; margin: 22px 0 0; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.center .divider { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 15px; cursor: pointer; border: 2px solid transparent;
  transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s, box-shadow .2s;
  font-family: var(--font-body); line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gold); color: var(--green-dark); box-shadow: 0 8px 20px rgba(201,168,76,.25); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201,168,76,.35); }
.btn-dark { background: var(--green-dark); color: var(--white); }
.btn-dark:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.4); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost { border-color: var(--border); color: var(--green-light); background: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   NAVBAR (glassmorphic, sticky)
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(11,30,71,.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(201,168,76,.25);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.nav.scrolled { background: rgba(11,30,71,.96); box-shadow: 0 8px 30px rgba(0,0,0,.25); }
.nav-inner { max-width: var(--maxw); margin-inline: auto; width: 100%; padding-inline: 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-size: 18px; font-weight: 700; letter-spacing: 1px; color: var(--white); font-family: var(--font-body); }
.brand-text span { font-size: 9.5px; font-weight: 600; letter-spacing: 4px; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500; position: relative; padding: 6px 0; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gold); transition: width .25s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { background: var(--gold); color: var(--green-dark) !important; padding: 9px 20px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; transition: background .2s, transform .2s; }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06); border-radius: var(--radius-sm); cursor: pointer;
  align-items: center; justify-content: center; color: var(--white);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .ic-close { display: none; }
body.menu-open .nav-toggle .ic-open { display: none; }
body.menu-open .nav-toggle .ic-close { display: block; }

.nav-links a.clsGetQuote{padding-left: 4px; padding-right: 4px}

/*============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  background: radial-gradient(1200px 600px at 80% -10%, #1E4178 0%, transparent 55%),
              linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 130%);
  padding: calc(var(--nav-h) + 80px) 0 96px;
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(201,168,76,.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,.07) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 75%);
          mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 75%);
}
.hero::before { content:''; position:absolute; top:-120px; right:-120px; width:520px; height:520px; border-radius:50%;
  background: radial-gradient(circle, rgba(201,168,76,.16) 0%, transparent 70%); animation: float 9s var(--ease) infinite; }
.hero::after { content:''; position:absolute; bottom:-120px; left:-100px; width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, rgba(201,168,76,.10) 0%, transparent 70%); animation: float 11s var(--ease) infinite reverse; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  background: rgba(201,168,76,.14); border: 1px solid rgba(201,168,76,.4);
  color: var(--gold); font-size: 13px; font-weight: 500; padding: 7px 16px; border-radius: 100px;
}
.hero-badge svg { width: 15px; height: 15px; }
.hero h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(36px, 5.2vw, 60px); line-height: 1.08; letter-spacing: -1px; margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.74); line-height: 1.7; max-width: 500px; margin-bottom: 18px; }
.hero-tagline { font-style: italic; color: var(--gold); font-size: 15px; border-left: 3px solid var(--gold); padding-left: 16px; margin-bottom: 36px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-cards { display: grid; gap: 18px; }
.glass-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 26px 28px; backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.glass-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.45); background: rgba(255,255,255,.1); }
.glass-card .num { font-size: 38px; font-weight: 700; color: var(--gold); font-family: var(--font-head); line-height: 1; margin-bottom: 6px; }
.glass-card .lbl { font-size: 14px; color: rgba(255,255,255,.66); }
.hero-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.glass-card.wide .num { font-size: 18px; letter-spacing: .5px; }

/* ============================================================
   TRUST / LOGO STRIP
   ============================================================ */
.trust { border-block: 1px solid var(--border); background: var(--white); }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--muted); }
.trust-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   STAT COUNTERS
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
  text-align: center; padding: 36px 20px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--border); transition: transform .3s var(--ease), box-shadow .3s;
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.stat .stat-ic { width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 12px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center; color: var(--green-light); }
.stat .stat-ic svg { width: 24px; height: 24px; }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: 40px; color: var(--green-dark); line-height: 1; }
.stat .num .suffix { color: var(--gold); }
.stat .lbl { font-size: 14px; color: var(--muted); margin-top: 8px; }
.stats-grid.on-dark .stat { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.stats-grid.on-dark .stat .stat-ic { background: rgba(201,168,76,.14); color: var(--gold); }
.stats-grid.on-dark .stat .num { color: var(--white); }
.stats-grid.on-dark .stat .lbl { color: rgba(255,255,255,.6); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.svc-card {
  position: relative; overflow: hidden; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 30px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.svc-card::before { content:''; position:absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ic {
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center; color: var(--green-light);
  background: var(--green-pale); transition: background .3s, color .3s, transform .3s var(--ease);
}
.svc-ic svg { width: 30px; height: 30px; }
.svc-card:hover .svc-ic { background: var(--green-dark); color: var(--gold); transform: rotate(-6deg); }
.svc-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 11px; }
.svc-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--green-light); display: inline-flex; align-items: center; gap: 7px; transition: gap .2s, color .2s; }
.svc-link svg { width: 15px; height: 15px; }
.svc-link:hover { color: var(--gold); gap: 11px; }
.svc-card.feature { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }
.svc-card.feature h3 { color: var(--white); }
.svc-card.feature p { color: rgba(255,255,255,.72); }
.svc-card.feature .svc-ic { background: rgba(201,168,76,.16); color: var(--gold); }
.svc-card.feature .svc-link { color: var(--gold); }

/* ============================================================
   WHY-CHOOSE / FEATURE LIST
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card { display: flex; gap: 20px; align-items: flex-start; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: box-shadow .25s, transform .25s var(--ease); }
.why-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.why-ic { width: 50px; height: 50px; flex-shrink: 0; border-radius: 12px; background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.why-ic svg { width: 24px; height: 24px; }
.why-card h4 { font-size: 16.5px; font-weight: 600; margin-bottom: 6px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.62; }

/* ============================================================
   INDUSTRIES SERVED
   ============================================================ */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 30px 26px;
  background: var(--green-dark); color: var(--white); min-height: 168px;
  display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate;
  transition: transform .3s var(--ease);
}
.ind-card::after { content:''; position:absolute; inset:0; z-index:-1; opacity:.16; transition: opacity .3s, transform .5s var(--ease);
  background: radial-gradient(circle at 80% 20%, var(--gold) 0%, transparent 55%); }
.ind-card:hover { transform: translateY(-6px); }
.ind-card:hover::after { opacity:.32; transform: scale(1.15); }
.ind-card .ind-ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(201,168,76,.16);
  display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: auto; }
.ind-card .ind-ic svg { width: 23px; height: 23px; }
.ind-card h4 { font-size: 17px; font-weight: 600; margin-top: 18px; }
.ind-card p { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 5px; }

/* ============================================================
   TIMELINE / JOURNEY
   ============================================================ */
.timeline { position: relative; margin-top: 8px; }
.timeline::before { content:''; position:absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold), var(--border)); }
.tl-item { position: relative; padding: 0 0 36px 60px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 8px; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: var(--gold);
  border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--gold); }
.tl-item h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.tl-item .yr { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.tl-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; color: var(--white); text-align: center;
  background: radial-gradient(900px 500px at 70% -20%, #1E4178 0%, transparent 60%), linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: calc(var(--nav-h) + 70px) 0 78px; }
.page-hero .hero-grid-bg { opacity: .4; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(34px, 5vw, 52px); margin-bottom: 16px; letter-spacing: -.5px; }
.page-hero p { font-size: 16.5px; color: rgba(255,255,255,.72); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.page-hero.split .page-hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; text-align: left; }
.page-hero.split h1 { font-size: clamp(32px, 4.4vw, 48px); }
.page-hero.split p { margin: 0; }

.breadcrumb { background: var(--green-pale); border-bottom: 1px solid var(--border); }
.breadcrumb-inner { display: flex; gap: 9px; font-size: 13px; color: var(--muted); padding: 14px 52px; flex-wrap: wrap;  }
.breadcrumb a { color: var(--green-light); }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Pills / tags ---------- */
.pill { display: inline-flex; align-items: center; gap: 7px; background: rgba(201,168,76,.14);
  border: 1px solid rgba(201,168,76,.35); color: var(--gold); font-size: 13px; font-weight: 500; padding: 7px 15px; border-radius: 100px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { background: var(--green-pale); color: var(--green-light); font-size: 11.5px; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }

/* ============================================================
   OVERVIEW / INFO TABLE / VM / LEADERS  (about)
   ============================================================ */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.prose p { font-size: 15.5px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.info-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.info-table tr:nth-child(even) { background: var(--green-pale); }
.info-table td { padding: 15px 22px; font-size: 14px; border-bottom: 1px solid var(--border); }
.info-table td:first-child { font-weight: 600; width: 45%; }
.info-table td:last-child { color: var(--muted); }
.info-table tr:last-child td { border-bottom: none; }

.leaders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.leader-card { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 36px; }
.leader-card::before { content:''; position:absolute; inset:0 0 auto 0; height:4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.leader-head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.leader-avatar { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; background: var(--green-dark); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 24px; font-weight: 700; }
.leader-eyebrow { font-size: 11.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.leader-card h3 { font-family: var(--font-head); font-size: 23px; }
.leader-card .role { font-size: 13.5px; color: var(--muted); }
.leader-card blockquote { font-size: 14.5px; color: var(--muted); line-height: 1.78; font-style: italic; border-left: 3px solid var(--gold); padding-left: 20px; }
.leader-photo { width: 88px; height: 100px; flex-shrink: 0; border-radius: 14px; object-fit: cover; object-position: top center;
  border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-sm); }

/* ---------- Image banner strip (division pages) ---------- */
.banner-strip { padding-top: 36px; }
.banner-strip figure { margin: 0; }
.banner-strip img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow); }
.banner-strip figcaption { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 12px; }

/* ---------- Hero emblem (veena, homepage) ---------- */
.hero-emblem { display: flex; align-items: center; gap: 18px; background: #FFFFFF;
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 22px 16px 16px; box-shadow: var(--shadow-sm); }
.hero-emblem img { width: 64px; height: auto; flex-shrink: 0; }
.hero-emblem b { display: block; font-size: 15px; color: var(--text); margin-bottom: 3px; }
.hero-emblem span { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card { border-radius: var(--radius-lg); padding: 40px 36px; border: 1px solid var(--border); }
.vm-card.vision { background: var(--green-dark); color: var(--white); }
.vm-card .vm-ic { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.vm-card .vm-ic svg { width: 26px; height: 26px; }
.vm-card.vision .vm-ic { background: rgba(201,168,76,.16); color: var(--gold); }
.vm-card.mission .vm-ic { background: var(--gold-pale); color: var(--gold); }
.vm-card h3 { font-family: var(--font-head); font-size: 25px; margin-bottom: 16px; }
.vm-card.vision h3 { color: var(--white); }
.vm-card.vision p { color: rgba(255,255,255,.76); line-height: 1.78; font-size: 15px; }
.vm-list li { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 15px; padding-left: 26px; position: relative; }
.vm-list li::before { content:''; position: absolute; left: 0; top: 6px; width: 14px; height: 14px; border-radius: 4px;
  background: var(--gold-pale); border: 1px solid var(--gold); }
.vm-list li strong { color: var(--text); }

/* ============================================================
   CREDENTIALS
   ============================================================ */
.creds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cred-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 24px 22px; transition: border-color .25s, background .25s; }
.cred-item:hover { border-color: rgba(201,168,76,.4); background: rgba(255,255,255,.09); }
.cred-item .cred-ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(201,168,76,.14); color: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.cred-item .cred-ic svg { width: 20px; height: 20px; }
.cred-item h4 { font-size: 14.5px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.cred-item p { font-size: 13px; color: rgba(255,255,255,.55); }

/* ============================================================
   SERVICE DETAIL BLOCKS (services + sub pages)
   ============================================================ */
.svc-block { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start;
  margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.svc-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.svc-block.reverse .svc-block-aside { order: 2; }
.svc-icon-lg { width: 76px; height: 76px; border-radius: var(--radius); background: var(--green-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--green-light); margin-bottom: 20px; }
.svc-icon-lg svg { width: 38px; height: 38px; }
.svc-block-aside h3 { font-family: var(--font-head); font-size: 24px; margin-bottom: 12px; }
.svc-block-aside p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }

.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feat-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feat-card { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.feat-card::after { content:''; position:absolute; inset:auto 0 0 0; height:3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.feat-card:hover::after { transform: scaleX(1); }
.feat-num { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 10px; }
.feat-card h4 { font-size: 15.5px; font-weight: 600; margin-bottom: 9px; }
.feat-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* highlight panel (solar O&M / accommodation / talent) */
.panel-dark { background: var(--green-dark); color: var(--white); border-radius: var(--radius-xl); padding: 52px 48px; }
.panel-split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.panel-dark h3 { font-family: var(--font-head); font-size: 28px; margin-bottom: 14px; }
.panel-dark > p, .panel-split p { color: rgba(255,255,255,.72); line-height: 1.75; font-size: 15px; }
.check-list li { font-size: 14px; color: rgba(255,255,255,.78); padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; gap: 12px; }
.check-list li:last-child { border-bottom: none; }
.check-list li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   PROCESS STEPS (civil)
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process::before { content:''; position:absolute; top:36px; left:12%; right:12%; height:2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.proc-step { text-align: center; position: relative; }
.proc-num { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); color: var(--green-dark); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 24px; font-weight: 700;
  border: 4px solid var(--green-pale); box-shadow: 0 0 0 2px var(--gold); }
.proc-step h4 { font-size: 15.5px; font-weight: 600; margin-bottom: 8px; }
.proc-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 56px; align-items: start; }
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; }
.field input, .field select, .field textarea {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px; color: var(--text); background: var(--white); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 13px; color: var(--muted); }
.form-status { font-size: 14px; font-weight: 600; color: var(--green-light); display: none; }
.form-status.show { display: block; }

.info-card { background: var(--green-dark); color: var(--white); border-radius: var(--radius-lg); padding: 38px; margin-bottom: 22px; }
.info-card h3 { font-family: var(--font-head); font-size: 22px; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(201,168,76,.14); border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.5); margin-bottom: 5px; }
.info-row p, .info-row a { font-size: 15px; color: var(--white); line-height: 1.5; display: block; }
.info-row a:hover { color: var(--gold); }
.gstin-card { background: var(--gold-pale); border: 1px solid rgba(201,168,76,.3); border-radius: var(--radius); padding: 22px 24px; display: flex; gap: 16px; align-items: center; }
.gstin-card .ic { color: var(--gold); }
.gstin-card .ic svg { width: 30px; height: 30px; }
.gstin-card h4 { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.gstin-card p { font-size: 16px; font-weight: 700; letter-spacing: .5px; }

.map-frame { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta { background: linear-gradient(100deg, var(--gold) 0%, var(--gold-light) 100%); text-align: center; padding: 72px 0; position: relative; overflow: hidden; }
.cta::before { content:''; position:absolute; top:-60px; right:-40px; width:300px; height:300px; border-radius:50%; background: rgba(255,255,255,.18); }
.cta-inner { position: relative; z-index: 1; }
.cta h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 38px); color: var(--green-dark); margin-bottom: 12px; }
.cta p { font-size: 16.5px; color: rgba(11,30,71,.78); margin-bottom: 30px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-dark); color: rgba(255,255,255,.6); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-about p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: background .2s, color .2s, border-color .2s; }
.footer-social a:hover { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 18px; }
.footer-col a { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col a svg { width: 15px; height: 15px; opacity: .7; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.42); }
.footer-bottom .gstin { color: rgba(255,255,255,.55); }
.footer-bottom .gstin b { color: var(--gold); font-weight: 600; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }

@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-26px) } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding-inline: 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-cards { max-width: 520px; }
  .page-hero.split .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .svc-block { grid-template-columns: 1fr; gap: 32px; }
  .svc-block.reverse .svc-block-aside { order: 0; }
  .panel-split { grid-template-columns: 1fr; gap: 36px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process::before { display: none; }
}

@media (max-width: 760px) {
  .container { padding-inline: 22px; }
  .section { padding: 64px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11,30,71,.98); backdrop-filter: blur(14px); padding: 12px 22px 24px;
    border-bottom: 1px solid rgba(201,168,76,.25); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s var(--ease); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  body.menu-open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 15px; }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta { text-align: center; margin-top: 14px; padding: 13px; }
  .split-2, .vm-grid, .leaders-grid, .why-grid, .cards-grid, .cards-grid.cols-2, .ind-grid, .feat-grid, .feat-grid.cols-3, .contact-grid, .form-row, .process { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-btns { width: 100%; }
  .hero-btns .btn { flex: 1; justify-content: center; }
  .panel-dark { padding: 36px 26px; }
  .info-card { padding: 30px 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .stats-grid { grid-template-columns: 1fr; }
  .brand-text b { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
