@charset "UTF-8";
/* ================================================================================ */
/* ===================================================== assets/css/_variables.scss */
/* ================================================================================ */
:root {
  /* ── Royal Blue family — GoldenTemples */
  --burg-deep: #1a3a8a;
  --burg: #1e4299;
  --burg-mid: #2452aa;
  --burg-lite: #3464be;
  --burg-pale: #e8eef8;
  --burg-faint: #f2f5fc;
  /* ── Gold family */
  --gold: #c8922a;
  --gold-light: #dba94a;
  --gold-bright: #f0c060;
  --gold-pale: #fdf3e0;
  --gold-faint: #fffbf3;
  /* ── Body — pure white like GoldenTemples */
  --cream: #ffffff;
  --cream-dark: #f5f5f5;
  --parchment: #eeeeee;
  --stone: #e0e0e0;
  /* ── Text */
  --text-dark: #111320;
  --text-mid: #2a2d3e;
  --text-muted: #6a6e85;
  --white: #ffffff;
  --border: #d0d4e8;
  --border-lite: #e4e8f4;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --mega-shadow: 0 20px 56px rgba(17, 19, 32, 0.18);
}

/* ================================================================================ */
/* ========================================================== assets/css/_main.scss */
/* ================================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   IDENTITY BAR
════════════════════════════════════════ */
.identity-bar {
  background: #1a3a8a;
  border-bottom: 1px solid rgba(200, 146, 42, 0.3);
}

.identity-inner {
  display: flex;
  align-items: stretch;
  min-height: 50px;
}

/* Brand */
.brand-block {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 22px 0 0;
  border-right: 1px solid rgba(200, 146, 42, 0.2);
  margin-right: 18px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-khanda {
  width: 32px;
  height: 32px;
  opacity: 0.9;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-name span {
  color: var(--gold-bright);
  font-style: italic;
}

.brand-sub {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* Secondary links */
.identity-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.ilink {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 5px 11px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.ilink:hover {
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.06);
}

.isep {
  color: rgba(255, 255, 255, 0.18);
  font-size: 11px;
}

/* Right actions */
.identity-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding-left: 16px;
  border-left: 1px solid rgba(200, 146, 42, 0.2);
  flex-shrink: 0;
}

.identity-right a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
  padding: 4px 6px;
}

.identity-right a:hover {
  color: var(--gold-bright);
}

.btn-submit {
  background: var(--gold);
  /*color: #1a3a8a !important;*/
  color: white !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  padding: 5px 14px !important;
  border-radius: 4px;
  transition: background 0.15s !important;
  border: none;
}

.btn-submit:hover {
  background: var(--gold-light) !important;
  color: #1a3a8a !important;
}

/* ════════════════════════════════════════
   MEGA MENU NAVBAR
════════════════════════════════════════ */
.mega-nav {
  background: #2a2d3e;
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 9000;
  box-shadow: 0 4px 20px rgba(17, 19, 32, 0.3);
}

.mega-nav-inner {
  display: flex;
  align-items: stretch;
  min-height: 52px;
}

/* Nav items */
.mnav-list {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.mnav-item {
  position: static;
  display: flex;
  align-items: stretch;
}

.mnav-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.mnav-btn .bi-chevron-down {
  font-size: 10px;
  transition: transform 0.2s;
  opacity: 0.6;
}

.mnav-item:hover .mnav-btn,
.mnav-btn.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.mnav-item:hover .mnav-btn .bi-chevron-down {
  transform: rotate(180deg);
  opacity: 1;
}

/* MEGA PANEL */
.mpanel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--mega-shadow);
  z-index: 8999;
  padding: 28px 0 32px;
}

.mnav-item:hover .mpanel {
  display: block;
}

.mpanel-head {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a3a8a;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-lite);
  display: flex;
  align-items: center;
  gap: 7px;
}

.mpanel-head::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  flex-shrink: 0;
}

.mlink {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-mid);
  font-size: 13.5px;
  font-weight: 400;
  transition: background 0.13s, color 0.13s;
  margin-bottom: 1px;
}

.mlink:hover {
  background: var(--burg-faint);
  color: #1a3a8a;
}

.mlink i {
  font-size: 15px;
  color: #2452aa;
  flex-shrink: 0;
  margin-top: 3px;
  transition: color 0.13s;
}

.mlink:hover i {
  color: #1e4299;
}

.ml-wrap {
  line-height: 1.25;
}

.ml-sub {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Panel highlight card */
.mpanel-card {
  background: var(--burg-pale);
  border: 1px solid rgba(26, 58, 138, 0.14);
  border-radius: 10px;
  padding: 18px 18px 16px;
  height: 100%;
}

.mpanel-card-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: #1a3a8a;
  margin-bottom: 8px;
}

.mpanel-card-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

.mpanel-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1e4299;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.15s;
}

.mpanel-btn:hover {
  background: #1a3a8a;
  color: #fff;
}

/* gold card variant */
.mpanel-card.gold-card {
  background: var(--gold-faint);
  border-color: rgba(200, 146, 42, 0.2);
}

.mpanel-card.gold-card .mpanel-card-title {
  color: #7a4a08;
}

.mpanel-card.gold-card .mpanel-btn {
  background: var(--gold);
  color: #1a3a8a;
}

.mpanel-card.gold-card .mpanel-btn:hover {
  background: var(--gold-light);
  color: #1a3a8a;
}

/* Navbar search */
.nav-search-wrap {
  display: flex;
  align-items: center;
  padding: 8px 0 8px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.nav-search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search-field i {
  position: absolute;
  left: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  pointer-events: none;
}

.nav-search-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 7px 14px 7px 34px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  width: 200px;
  outline: none;
  transition: background 0.2s, border-color 0.2s, width 0.2s;
}

.nav-search-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.nav-search-input:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(200, 146, 42, 0.6);
  width: 240px;
}

/* Mobile */
.mobile-tog {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px 11px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  margin: 8px 0 8px 10px;
  align-items: center;
}

.mobile-drawer {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px 16px;
  background: #1a3a8a;
}

.mobile-drawer.open {
  display: block;
}

.mdrawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
}

.mdrawer-link:hover {
  color: var(--gold-bright);
}

@media (max-width: 1100px) {
  .mnav-list {
    display: none;
  }
  .mobile-tog {
    display: flex;
  }
  .nav-search-wrap {
    border-left: none;
  }
}
@media (max-width: 768px) {
  .identity-links {
    display: none;
  }
  .brand-sub {
    display: none;
  }
}
/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #1a3a8a 0%, #2a3a6a 50%, #1a2a50 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}

/* faint Ik Onkar watermark */
.hero::before {
  content: "ੴ";
  position: absolute;
  right: -20px;
  top: 46%;
  transform: translateY(-50%);
  font-size: 440px;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  font-family: serif;
}

/* gold top accent line */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-bright) 60%, transparent 100%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 16px;
}

.hero-h1 em {
  color: var(--gold-bright);
  font-style: italic;
}

.hero-h1 .accent-gold {
  color: var(--gold-bright);
  font-style: normal;
}

.hero-para {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 28px;
  font-weight: 300;
}

/* Search */
.hero-search {
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid rgba(200, 146, 42, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  max-width: 560px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s;
}

.hero-search:focus-within {
  border-color: var(--gold);
}

.hs-icon {
  padding: 0 0 0 16px;
  color: var(--text-muted);
  font-size: 16px;
  flex-shrink: 0;
}

.hero-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  padding: 13px 10px;
}

.hero-search input::placeholder {
  color: var(--text-muted);
}

.hs-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-search select {
  border: none;
  outline: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-mid);
  padding: 0 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.hs-btn {
  background: var(--gold);
  color: #1a3a8a;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
  flex-shrink: 0;
}

.hs-btn:hover {
  background: var(--gold-light);
  color: #1a3a8a;
}

/* Quick links */
.hero-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 32px;
  align-items: center;
}

.hero-quick-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.hql {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.15s;
}

.hql:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a3a8a;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hstat-num {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}

.hstat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}

/* Emblem column */
.hero-emblem-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-outer {
  text-align: center;
  max-width: 300px;
}

.emblem-ring {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(200, 146, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04), 0 8px 40px rgba(0, 0, 0, 0.3);
}

.emblem-ring::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(200, 146, 42, 0.25);
  border-radius: 50%;
}

.emblem-ring::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px dashed rgba(200, 146, 42, 0.12);
  border-radius: 50%;
}

.emblem-ik {
  font-family: serif;
  font-size: 94px;
  color: var(--gold-bright);
  opacity: 0.85;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.emblem-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 16px;
}

.emblem-name span {
  color: var(--gold-bright);
  font-style: italic;
}

.emblem-tag {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}

/* ════════════════════════════════════════
   STAT STRIP
════════════════════════════════════════ */
.stat-strip {
  background: #1a3a8a;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(200, 146, 42, 0.2);
  padding: 30px 0;
}

.ss-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}

.ss-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.ss-div {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}

/* ════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════ */
.sec-eye {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2452aa;
  margin-bottom: 7px;
}

.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.sec-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 34px;
}

.line-burg {
  width: 38px;
  height: 3px;
  background: #1a3a8a;
  border-radius: 2px;
  margin-bottom: 10px;
}

.line-gold {
  width: 38px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 10px;
}

/* ════════════════════════════════════════
   CONTINENT TILES
════════════════════════════════════════ */
.browse-sec {
  background: var(--white);
  padding: 58px 0;
}

.ctile {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 14px 18px;
  text-align: center;
  display: block;
  text-decoration: none;
  color: var(--text-dark);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}

.ctile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.ctile:hover {
  border-color: #3464be;
  box-shadow: 0 6px 24px rgba(26, 58, 138, 0.12);
  transform: translateY(-3px);
  color: var(--text-dark);
}

.ctile:hover::after {
  transform: scaleX(1);
}

.ctile-flag {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.ctile-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ctile-count {
  font-size: 13px;
  color: var(--text-muted);
}

.ctile-count strong {
  color: #1e4299;
}

/* ════════════════════════════════════════
   GURU FILTER
════════════════════════════════════════ */
.guru-sec {
  background: var(--cream-dark);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: 24px 0;
}

.gpill {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  margin: 4px 3px;
  transition: all 0.15s;
}

.gpill:hover {
  background: #1e4299;
  border-color: #1a3a8a;
  color: #fff;
}

.gpill.active {
  background: #1a3a8a;
  border-color: #1a3a8a;
  color: #fff;
  font-weight: 600;
}

/* ════════════════════════════════════════
   FEATURED CARDS
════════════════════════════════════════ */
.feat-sec {
  background: var(--cream-dark);
  padding: 58px 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.gcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: var(--text-dark);
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.gcard:hover {
  box-shadow: 0 12px 40px rgba(26, 58, 138, 0.12);
  transform: translateY(-4px);
  color: var(--text-dark);
}

.gcard-img {
  height: 170px;
  background: linear-gradient(140deg, #1a3a8a 0%, #1e4299 55%, #2452aa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: rgba(255, 255, 255, 0.12);
  position: relative;
}

.img_gta {
  background: url("../../images/asia/india/punjab/amritsar/darbar-sahib-the-golden-temple.webp") no-repeat center;
}

.img_kes {
  background: url("../../images/asia/india/punjab/anandpur-sahib/takht-sri-keshgarh-sahib.webp") no-repeat center;
}

.img_nankana {
  background: url("../../images/asia/pakistan/punjab/nankana-sahib/gurdwara-nankana-sahib.webp") no-repeat center;
}

.img_patna {
  background: url("../../images/asia/india/bihar/patna/takht-sri-patna-sahib.webp") no-repeat center;
}

.gcard-img.gold-grad {
  background: linear-gradient(140deg, #7a4a08 0%, var(--gold) 60%, var(--gold-light) 100%);
}

.gcard-badge {
  position: absolute;
  top: 11px;
  left: 11px;
  background: rgba(255, 255, 255, 0.92);
  color: #1a3a8a;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.gcard-body {
  padding: 15px 15px 13px;
}

.gcard-loc {
  font-size: 11.5px;
  color: #2452aa;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.gcard-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 7px;
  line-height: 1.3;
}

.gcard-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 11px;
  line-height: 1.65;
}

.gcard-foot {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.gcard-foot i {
  color: #3464be;
  margin-right: 3px;
}

/* ════════════════════════════════════════
   WHY SECTION
════════════════════════════════════════ */
.why-sec {
  background: var(--white);
  padding: 58px 0;
}

.why-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 18px;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  border-color: #3464be;
  box-shadow: 0 4px 16px rgba(26, 58, 138, 0.12);
}

.why-icon {
  width: 46px;
  height: 46px;
  background: var(--burg-pale);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.why-icon i {
  font-size: 20px;
  color: #1e4299;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.why-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   CTA
════════════════════════════════════════ */
.cta-sec {
  background: linear-gradient(135deg, #1a3a8a 0%, #2452aa 100%);
  border-top: 3px solid var(--gold);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: "ੴ";
  position: absolute;
  font-family: serif;
  font-size: 360px;
  color: rgba(255, 255, 255, 0.03);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}

.cta-sec h2 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 10px;
  position: relative;
}

.cta-sec p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 28px;
  position: relative;
}

.btn-gold-solid {
  background: var(--gold);
  color: #1a3a8a;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 28px;
  border-radius: 7px;
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: background 0.15s;
  position: relative;
}

.btn-gold-solid:hover {
  background: var(--gold-light);
  color: #1a3a8a;
}

.btn-outline-gold {
  border: 2px solid rgba(200, 146, 42, 0.6);
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 24px;
  border-radius: 7px;
  text-decoration: none;
  display: inline-block;
  background: transparent;
  transition: all 0.15s;
  position: relative;
}

.btn-outline-gold:hover {
  border-color: var(--gold);
  background: rgba(200, 146, 42, 0.1);
  color: var(--gold-bright);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #1a1c2e;
  color: rgba(255, 255, 255, 0.5);
  padding: 52px 0 0;
  font-size: 14px;
  border-top: 3px solid var(--gold);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 9px;
}

.footer-brand span {
  color: var(--gold-bright);
  font-style: italic;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-ek {
  font-family: serif;
  font-size: 20px;
  color: var(--gold-light);
  opacity: 0.8;
}

.footer-hd {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 13px;
}

.footer-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-ul li {
  margin-bottom: 8px;
}

.footer-ul a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-ul a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 38px;
  padding: 15px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.24);
}

.footer-bot a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.footer-bot a:hover {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .hero {
    padding: 42px 0 36px;
  }
  .hero::before {
    display: none;
  }
  .hero-emblem-col {
    margin-top: 32px;
  }
  .emblem-ring {
    width: 185px;
    height: 185px;
  }
  .emblem-ik {
    font-size: 68px;
  }
  .ss-div {
    display: none;
  }
}
.allRightsReserved {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.allRightsReserved p {
  text-align: center;
}
.allRightsReserved span {
  padding-left: 10px;
  padding-right: 10px;
}

.btn-outline {
  padding: 4px 18px;
  border: 0.01em solid #c9a227;
  color: #c9a227;
  background: transparent;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  clear: both;
}

.btn-outline:hover {
  background: #c9a227;
  color: #fff;
}

.text-golden {
  color: #A8892C !important;
}

/*# sourceMappingURL=master.css.map */
