/* ============================================================
   Vijayantra Consulting — Main Stylesheet
   Palette: Navy #0a1628, Navy-mid #1a3a6b, Gold #c9a84c, Gray tones
   ============================================================ */

:root {
  --navy: #0a1628;
  --navy-mid: #1a3a6b;
  --navy-light: #2d5694;
  --gold: #c9a84c;
  --gold-light: #e8c876;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f8fafc;
}

* { box-sizing: border-box; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-700);
  line-height: 1.7;
  background: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--navy);
  font-weight: 700;
}
a { color: var(--navy-mid); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

/* ============== TOPBAR STRIP ============== */
.topbar-strip {
  background: var(--navy);
  padding: 8px 0;
  color: rgba(255,255,255,0.7);
}
.topbar-strip a { color: rgba(255,255,255,0.75); font-size: 13px; }
.topbar-strip a:hover { color: var(--gold-light); }

/* ============== NAVBAR ============== */
.main-navbar {
  background: #fff;
  padding: 16px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  z-index: 1030;
}
.brand-text {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .5px;
}
.main-navbar .nav-link {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 16px !important;
  position: relative;
}
.main-navbar .nav-link.active,
.main-navbar .nav-link:hover {
  color: var(--navy);
}
.main-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold);
}
.btn-cta-nav {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 4px;
  font-size: 13.5px !important;
  font-weight: 600;
}
.btn-cta-nav:hover { background: var(--gold); color: #fff !important; }

/* ============== HERO ============== */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 110px 0 130px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-title {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
}
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 36px;
}
.btn-hero-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  font-weight: 700;
  border-radius: 4px;
  font-size: 15px;
}
.btn-hero-primary:hover { background: var(--gold-light); color: var(--navy); }
.btn-hero-secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 13px 30px;
  font-weight: 600;
  border-radius: 4px;
  font-size: 15px;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }

/* ============== SECTIONS ============== */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-gray { background: var(--gray-50); }
.section-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
}
.section-subtitle {
  color: var(--gray-500);
  font-size: 16px;
  max-width: 640px;
}

/* ============== SERVICE CARDS ============== */
.service-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 36px 28px;
  height: 100%;
  transition: all .25s;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(10,22,40,0.08);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 24px;
  margin-bottom: 22px;
}
.service-card h3 { font-size: 19px; margin-bottom: 12px; }
.service-card p { font-size: 14.5px; color: var(--gray-500); margin-bottom: 18px; }
.service-link { font-size: 13.5px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; }
.service-link i { transition: transform .2s; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ============== WHY CHOOSE / FEATURE GRID ============== */
.feature-item { padding: 24px 0; }
.feature-icon-sm {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.industry-grid, .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
@media (max-width: 768px) { .industry-grid, .why-grid { grid-template-columns: 1fr; } }
.industry-item, .why-grid > div {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 24px;
}
.industry-item h3, .why-grid h3 { font-size: 17px; margin-bottom: 8px; }
.industry-item p, .why-grid p { font-size: 14px; color: var(--gray-500); margin: 0; }

/* ============== STATS ============== */
.stat-block { text-align: center; padding: 20px; }
.stat-number { font-size: 42px; font-weight: 800; color: var(--gold); font-family: Georgia, serif; }
.stat-label { color: rgba(255,255,255,0.7); font-size: 13.5px; text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* ============== TESTIMONIALS ============== */
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  border: 1px solid var(--gray-100);
  height: 100%;
}
.testimonial-stars { color: #f59e0b; font-size: 15px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--gray-700); font-style: italic; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--navy-mid);
  object-fit: cover;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.testimonial-role { font-size: 12.5px; color: var(--gray-500); }

/* ============== CASE STUDY CARDS ============== */
.case-study-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  height: 100%;
  transition: all .25s;
}
.case-study-card:hover { box-shadow: 0 20px 40px rgba(10,22,40,0.08); transform: translateY(-4px); }
.case-study-img { height: 200px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.2); font-size: 48px; }
.case-study-body { padding: 26px; }
.case-study-tag { display: inline-block; background: rgba(201,168,76,0.12); color: var(--gold); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 4px 10px; border-radius: 20px; margin-bottom: 12px; }
.case-study-metric { font-size: 13px; color: var(--navy-mid); font-weight: 600; }

/* ============== BLOG ============== */
.blog-card { border-radius: 10px; overflow: hidden; border: 1px solid var(--gray-100); height: 100%; transition: all .25s; }
.blog-card:hover { box-shadow: 0 20px 40px rgba(10,22,40,0.08); transform: translateY(-4px); }
.blog-img { height: 190px; background: var(--gray-100); background-size: cover; background-position: center; }
.blog-body { padding: 24px; }
.blog-meta { font-size: 12px; color: var(--gray-500); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.blog-meta .cat-tag { color: var(--gold); font-weight: 700; }
.blog-card h3 { font-size: 17px; margin-bottom: 10px; }
.blog-excerpt { font-size: 14px; color: var(--gray-500); }

/* ============== TEAM ============== */
.team-card { text-align: center; padding: 10px; }
.team-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; border: 4px solid var(--gray-100); }
.team-photo-placeholder { width: 140px; height: 140px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--gray-300); margin: 0 auto 18px; }
.team-name { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 13.5px; color: var(--gray-500); }
.team-social { margin-top: 12px; }
.team-social a { color: var(--gray-500); margin: 0 6px; font-size: 16px; }
.team-social a:hover { color: var(--navy); }

/* ============== CTA SECTION ============== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { color: #fff; font-size: 30px; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 28px; }

/* ============== CONTACT ============== */
.contact-info-card { background: var(--navy); color: #fff; border-radius: 10px; padding: 36px; height: 100%; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.18); color: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-form-card { background: #fff; border: 1px solid var(--gray-100); border-radius: 10px; padding: 36px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }

/* ============== FOOTER ============== */
.site-footer { background: var(--navy); padding-top: 70px; }
.footer-brand { font-family: Georgia, serif; font-size: 22px; font-weight: 800; color: #fff; }
.footer-logo { filter: brightness(0) invert(1); }
.footer-text { color: rgba(255,255,255,0.55); font-size: 14px; }
.footer-heading { color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 13.5px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-social a { display: inline-flex; width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; align-items: center; justify-content: center; color: #fff; margin-right: 8px; font-size: 14px; }
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; margin-top: 20px; }
.btn-gold-sm { background: var(--gold); color: var(--navy) !important; padding: 9px 20px; border-radius: 4px; font-size: 13px; font-weight: 700; }
.btn-gold-sm:hover { background: var(--gold-light); }

/* ============== SERVICE DETAIL ============== */
.page-header { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 70px 0 90px; }
.page-header h1 { color: #fff; font-size: 38px; }
.page-header .breadcrumb { background: none; padding: 0; margin-bottom: 16px; }
.page-header .breadcrumb a { color: rgba(255,255,255,0.6); font-size: 13px; }
.page-header .breadcrumb-item.active { color: var(--gold-light); font-size: 13px; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

.content-block { font-size: 15.5px; color: var(--gray-700); }
.content-block h2 { font-size: 24px; margin: 32px 0 16px; }
.content-block h3 { font-size: 19px; margin: 24px 0 12px; }
.content-block p { margin-bottom: 16px; }
.content-block ul, .content-block ol { margin-bottom: 16px; padding-left: 22px; }
.content-block li { margin-bottom: 8px; }

.faq-item { border-bottom: 1px solid var(--gray-100); padding: 18px 0; }
.faq-item summary { font-weight: 700; color: var(--navy); cursor: pointer; font-size: 15px; }

/* ============== PAGINATION ============== */
.pagination .page-link { color: var(--navy-mid); border-color: var(--gray-100); }
.pagination .page-item.active .page-link { background: var(--navy); border-color: var(--navy); }

/* ============== FORMS ============== */
.form-control, .form-select { padding: 11px 14px; border-radius: 5px; border: 1px solid var(--gray-300); font-size: 14.5px; }
.form-control:focus, .form-select:focus { border-color: var(--navy-mid); box-shadow: 0 0 0 3px rgba(26,58,107,0.1); }
.form-label { font-weight: 600; font-size: 13.5px; color: var(--gray-700); }
.btn-submit { background: var(--navy); color: #fff; padding: 13px 32px; font-weight: 700; border-radius: 5px; border: none; }
.btn-submit:hover { background: var(--gold); color: var(--navy); }

/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
  .hero-title { font-size: 32px; }
  .hero-section { padding: 70px 0 90px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 26px; }
  .cta-section { padding: 40px 24px; }
}
