:root {
  --orange: #F47B20;
  --green:  #3AAA35;
  --navy:   #1A3A6B;
  --dark:   #0D0D0D;
  --light:  #F8F9FA;
  --white:  #FFFFFF;
  --text:   #2C2C2C;
  --muted:  #6C757D;
  --shadow: 0 8px 32px rgba(26,58,107,.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
#mainNav {
  background:#FFFFFF;
  padding: 0 0;
  transition: background .3s, box-shadow .3s;
  z-index: 1050;
}
#mainNav.scrolled {
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
#mainNav .navbar-brand img { height: 56px; }
#mainNav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .06em;
  color: black !important;
  text-transform: uppercase;
  padding: 1.4rem .9rem !important;
  transition: color .2s;
}
#mainNav .nav-link:hover { color: var(--orange) !important; }
.btn-nav-cta {
  background: var(--orange);
  color: #fff !important;
  border-radius: 4px;
  padding: .45rem 1.2rem !important;
  margin-left: .5rem;
  transition: background .2s, transform .15s;
}
.btn-nav-cta:hover { background: #d9660e; transform: translateY(-1px); }

/* ─── HERO ───────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fd7203 0%, #072c67 55%, #fd7508 100%);
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-network-bg.jpeg') center/cover no-repeat;
  opacity: .13;
}
.hero-badge {
  display: inline-block;
  background: rgba(244,123,32,.18);
  border: 1px solid rgba(244,123,32,.5);
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title .accent-orange { color: var(--orange); }
.hero-title .accent-green  { color: var(--green); }
.hero-title .accent-blue   { color: #6fa3e0; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);

  line-height: 1.75;
  margin-bottom: 2.4rem;
}
.btn-primary-cta {
  background: var(--orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary-cta:hover {
  background: #d9660e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,123,32,.45);
}
.btn-outline-cta {
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .82rem 2rem;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, color .2s, transform .15s;
  margin-left: 1rem;
}
.btn-outline-cta:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
}
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-right-img {
  position: relative;
  z-index: 1;
}
.hero-img-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.hero-img-frame img { width: 100%; display: block; }
.hero-flag-strip {
  height: 5px;
  background: linear-gradient(to right, var(--orange) 33.3%, #fff 33.3% 66.6%, var(--green) 66.6%);
  margin-bottom: .3rem;
  border-radius: 2px;
}

/* ─── SECTION COMMON ─────────────────────────────────── */
section { padding: 90px 0; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title span { color: var(--orange); }
.section-divider {
  width: 54px; height: 4px;
  background: linear-gradient(to right, var(--orange), var(--green));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.section-text { color: var(--muted); line-height: 1.85; font-size: 1rem; }

/* ─── WHY SAI ─────────────────────────────────────────── */
#why { background: var(--light); }
.why-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(26,58,107,.18); }
.why-card .icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.ic-orange { background: rgba(244,123,32,.12); color: var(--orange); }
.ic-green  { background: rgba(58,170,53,.12);  color: var(--green); }
.ic-navy   { background: rgba(26,58,107,.12);  color: var(--navy); }
.why-card h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.why-card p  { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.7; }

/* ─── OPPORTUNITY ────────────────────────────────────── */
#opportunity { background: var(--white); }
.opp-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.opp-img img { width: 100%; display: block; }
.opp-img-badge {
  position: absolute;
  bottom: -18px; left: 24px;
  background: var(--orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .06em;
  padding: .65rem 1.4rem;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(244,123,32,.4);
}
.opp-point {
  display: flex; align-items: flex-start; gap: .9rem;
  margin-bottom: 1.2rem;
}
.opp-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0; margin-top: .45rem;
}
.opp-point p { margin: 0; color: var(--text); line-height: 1.7; font-size: .97rem; }

/* ─── TIMING ─────────────────────────────────────────── */
#timing {
  background: linear-gradient(135deg, #0f1f3d 0%, #0a0a0a 100%);
  position: relative; overflow: hidden;
}
#timing::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/timing-pattern-bg.svg') center/cover;
  opacity: .07;
}
#timing .section-title { color: #fff; }
#timing .section-text  { color: rgba(255,255,255,.7); }
.timing-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: background .2s, border-color .2s;
}
.timing-card:hover {
  background: rgba(244,123,32,.12);
  border-color: rgba(244,123,32,.4);
}
.timing-card .t-icon {
  font-size: 2rem; margin-bottom: 1rem; color: var(--orange);
}
.timing-card h5 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.timing-card p  { color: rgba(255,255,255,.65); font-size: .87rem; margin: 0; line-height: 1.7; }

/* ─── MISSION ─────────────────────────────────────────── */
#mission { background: var(--light); }
.mission-quote {
  position: relative;
  background: var(--white);
  border-left: 6px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 2.2rem 2.5rem;
  box-shadow: var(--shadow);
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.65;
  margin-top: 2rem;
}
.mission-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--orange);
  line-height: 0;
  position: absolute;
  top: 1.8rem; left: 1rem;
  opacity: .25;
}
.mission-img {
  border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow);
}
.mission-img img { width: 100%; display: block; }
.mission-point { display: flex; gap: 1rem; margin-bottom: 1.1rem; align-items: flex-start; }
.mission-point .mp-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(58,170,53,.12); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .9rem;
}
.mission-point p { margin: 0; color: var(--text); font-size: .95rem; line-height: 1.7; }

/* ─── UNIFIED VISION ─────────────────────────────────── */
#vision { background: var(--white); }
.vision-platform {
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.vp-india {
  background: linear-gradient(145deg, #fff8f3, #fff);
  border: 2px solid rgba(244,123,32,.25);
}
.vp-usa {
  background: linear-gradient(145deg, #f3f8ff, #fff);
  border: 2px solid rgba(26,58,107,.2);
}
.vp-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.vp-india .vp-logo { color: var(--orange); }
.vp-usa  .vp-logo { color: var(--navy); }
.vision-platform p { color: var(--muted); font-size: .92rem; line-height: 1.75; }
.vision-connector {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .4rem;
}
.vc-line { width: 2px; height: 60px; background: linear-gradient(to bottom, var(--orange), var(--green)); }
.vc-mid {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--green));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .95rem;
}

/* ─── RECOGNITION ────────────────────────────────────── */
#recognition {
  background: linear-gradient(135deg, #1a3a6b 0%, #0d2244 100%);
}
#recognition .section-title { color: #fff; }
.rec-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 2.2rem 1.75rem;
  height: 100%;
  text-align: center;
}
.rec-card i { font-size: 2.2rem; color: var(--orange); margin-bottom: 1.1rem; display: block; }
.rec-card h5 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: .7rem; }
.rec-card p  { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.75; margin: 0; }

/* ─── WEALTH & LEGACY ────────────────────────────────── */
#wealth { background: var(--light); }
.wealth-img { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.wealth-img img { width: 100%; display: block; }
.stat-box {
  background: var(--white);
  border-radius: 8px;
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
  display: flex; gap: 1.2rem; align-items: center;
}
.sb-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.1rem;
  color: var(--orange);
  white-space: nowrap;
}
.sb-label { font-size: .85rem; color: var(--muted); line-height: 1.5; }

/* ─── CTA STRIP ──────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, #0f1f3d 0%, #1a3a6b 100%);
  text-align: center;
  padding: 80px 0;
}
#cta h2 { color: #fff; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; }
#cta p  { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 600px; margin: 1.2rem auto 2.5rem; }

/* ─── CONTACT ────────────────────────────────────────── */
#contact { background: var(--white); padding: 90px 0 70px; }
.contact-card {
  background: var(--light);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
}
.contact-card .form-control,
.contact-card .form-select {
  border-radius: 4px;
  border: 1.5px solid #dde2e8;
  padding: .75rem 1rem;
  font-size: .95rem;
  transition: border-color .2s;
}
.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,123,32,.12);
}
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.ci-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(244,123,32,.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
}
.ci-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.ci-val { font-weight: 600; color: var(--navy); font-size: .97rem; }

/* ─── FOOTER ─────────────────────────────────────────── */
#footer {
  background: var(--dark);
  padding: 24px 0 24px;
}
#footer .footer-brand img { height: 52px; margin-bottom: 1rem; }
#footer .footer-tagline { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.1rem;
}
#footer a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .9rem; }
#footer a:hover { color: var(--orange); }
#footer ul { list-style: none; padding: 0; margin: 0; }
#footer li { margin-bottom: .55rem; }
.footer-divider { border-top: 1px solid rgba(255,255,255,.08); margin: 2.5rem 0 1.4rem; }
.footer-bottom { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .9rem; margin-right: .4rem;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--orange); color: #fff; }

/* ─── SCROLL TOP ─────────────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: none; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; z-index: 999;
  box-shadow: 0 4px 16px rgba(244,123,32,.45);
  border: none; transition: background .2s, transform .15s;
}
#scrollTop:hover { background: #d9660e; transform: translateY(-2px); }

/* ─── ANIMATIONS ─────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 767px) {
  section { padding: 60px 0; }
  .hero-stats { gap: 1.5rem; }
  .btn-outline-cta { margin-left: 0; margin-top: .75rem; }
  .vision-connector { flex-direction: row; }
  .vc-line { width: 60px; height: 2px; }
}
