/* ============================================================
   Jallikattu GPS — Bootstrap 5 Theme
   ASP.NET MVC compatible: drop this into /wwwroot/css/
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --jgps-primary:   #2E7D32;   /* bright green */
  --jgps-primary-dark: #1B5E20;
  --jgps-primary-light: #E8F5E9;
  --jgps-secondary: #F59E0B;   /* golden amber */
  --jgps-secondary-dark: #D97706;
  --jgps-secondary-light: #FFFBEB;
  --jgps-bg:        #FFFFFF;
  --jgps-surface:   #F9FAFB;
  --jgps-border:    #E5E7EB;
  --jgps-text:      #111827;
  --jgps-muted:     #6B7280;
  --jgps-radius:    0.75rem;
  --jgps-radius-sm: 0.5rem;
  --jgps-shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --jgps-shadow:    0 4px 16px rgba(0,0,0,.10);
  --jgps-transition: all .2s ease;
}

/* ---------- Bootstrap Color Overrides ---------- */
.btn-primary {
  background-color: var(--jgps-primary) !important;
  border-color: var(--jgps-primary-dark) !important;
  color: #fff !important;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--jgps-primary-dark) !important;
}
.btn-secondary {
  background-color: var(--jgps-secondary) !important;
  border-color: var(--jgps-secondary-dark) !important;
  color: #fff !important;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--jgps-secondary-dark) !important;
}
.btn-outline-primary {
  color: var(--jgps-primary) !important;
  border-color: var(--jgps-primary) !important;
}
.btn-outline-primary:hover {
  background-color: var(--jgps-primary) !important;
  color: #fff !important;
}
.text-primary { color: var(--jgps-primary) !important; }
.text-secondary { color: var(--jgps-secondary) !important; }
.bg-primary { background-color: var(--jgps-primary) !important; }
.bg-secondary { background-color: var(--jgps-secondary) !important; }
.badge.bg-primary { background-color: var(--jgps-primary) !important; }
.badge.bg-secondary { background-color: var(--jgps-secondary) !important; }

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--jgps-bg);
  color: var(--jgps-text);
  line-height: 1.6;
}

a { color: var(--jgps-primary); text-decoration: none; }
a:hover { color: var(--jgps-primary-dark); }

img { max-width: 100%; }

/* ---------- Navbar ---------- */
.jgps-navbar {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--jgps-border);
  box-shadow: var(--jgps-shadow-sm);
  transition: var(--jgps-transition);
  padding: .75rem 0;
}
.jgps-navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--jgps-text);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.jgps-navbar .navbar-brand .brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.jgps-navbar .navbar-brand .brand-gps { color: var(--jgps-primary); }
.jgps-navbar .nav-link {
  color: var(--jgps-muted) !important;
  font-size: .9rem;
  font-weight: 500;
  padding: .4rem .75rem !important;
  border-radius: var(--jgps-radius-sm);
  transition: var(--jgps-transition);
}
.jgps-navbar .nav-link:hover,
.jgps-navbar .nav-link.active {
  color: var(--jgps-primary) !important;
  background-color: var(--jgps-primary-light);
}
.jgps-navbar .cart-btn {
  position: relative;
}
.jgps-navbar .cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--jgps-secondary);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-switcher .dropdown-toggle {
  font-size: .85rem;
  border: 1px solid var(--jgps-border);
  border-radius: var(--jgps-radius-sm);
  padding: .35rem .75rem;
  color: var(--jgps-text);
  background: transparent;
}
.lang-switcher .dropdown-menu {
  border: 1px solid var(--jgps-border);
  border-radius: var(--jgps-radius);
  box-shadow: var(--jgps-shadow);
  min-width: 160px;
}
.lang-switcher .dropdown-item.active,
.lang-switcher .dropdown-item:active {
  background-color: var(--jgps-primary-light);
  color: var(--jgps-primary);
}

/* ---------- Hero ---------- */
.jgps-hero {
  min-height: 88vh;
  background: linear-gradient(135deg, #fff 0%, #f0fdf4 50%, #fefce8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.jgps-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,125,50,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,125,50,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.jgps-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(46,125,50,.1);
  border: 1px solid rgba(46,125,50,.2);
  color: var(--jgps-primary);
  font-size: .85rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.jgps-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.jgps-hero h1 .highlight { color: var(--jgps-secondary); }
.jgps-hero p.lead {
  color: var(--jgps-muted);
  max-width: 600px;
  font-size: 1.1rem;
}
.jgps-hero .hero-circle-1,
.jgps-hero .hero-circle-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.jgps-hero .hero-circle-1 {
  width: 600px; height: 600px;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  background: rgba(46,125,50,.04);
  border: 1px solid rgba(46,125,50,.08);
}
.jgps-hero .hero-circle-2 {
  width: 400px; height: 400px;
  right: 0; top: 50%;
  transform: translateY(-50%);
  background: rgba(245,158,11,.04);
  border: 1px solid rgba(245,158,11,.08);
}
.btn-hero-primary {
  padding: .85rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  background-color: var(--jgps-secondary);
  border-color: var(--jgps-secondary-dark);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245,158,11,.3);
  transition: var(--jgps-transition);
}
.btn-hero-primary:hover {
  background-color: var(--jgps-secondary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245,158,11,.4);
  color: #fff;
}
.btn-hero-outline {
  padding: .85rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid rgba(46,125,50,.3);
  color: var(--jgps-primary);
  background: transparent;
  transition: var(--jgps-transition);
}
.btn-hero-outline:hover {
  background-color: var(--jgps-primary-light);
  border-color: var(--jgps-primary);
  color: var(--jgps-primary);
}

/* ---------- Stats Bar ---------- */
.jgps-stats {
  background: var(--jgps-surface);
  border-top: 1px solid var(--jgps-border);
  border-bottom: 1px solid var(--jgps-border);
  padding: 1.5rem 0;
}
.jgps-stats .stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--jgps-primary);
  line-height: 1;
}
.jgps-stats .stat-label {
  font-size: .8rem;
  color: var(--jgps-muted);
}

/* ---------- Section Headings ---------- */
.section-badge {
  display: inline-block;
  background: var(--jgps-primary-light);
  color: var(--jgps-primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--jgps-text);
}
.section-subtitle {
  color: var(--jgps-muted);
  max-width: 600px;
  font-size: 1rem;
}

/* ---------- Category Cards ---------- */
.cat-card {
  border: 1px solid var(--jgps-border);
  border-radius: var(--jgps-radius);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--jgps-transition);
  background: #fff;
  text-decoration: none;
  display: block;
  color: var(--jgps-text);
}
.cat-card:hover {
  border-color: var(--jgps-secondary);
  box-shadow: var(--jgps-shadow);
  transform: translateY(-2px);
  color: var(--jgps-text);
}
.cat-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--jgps-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--jgps-primary);
  font-size: 1.2rem;
}
.cat-name { font-weight: 600; font-size: .9rem; }

/* ---------- Product Cards ---------- */
.product-card {
  border: 1px solid var(--jgps-border);
  border-radius: var(--jgps-radius);
  overflow: hidden;
  background: #fff;
  transition: var(--jgps-transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--jgps-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.product-card:hover::after { transform: scaleX(1); }
.product-card:hover {
  border-color: rgba(245,158,11,.4);
  box-shadow: var(--jgps-shadow);
  transform: translateY(-2px);
}
.product-img-wrap {
  aspect-ratio: 1;
  background: var(--jgps-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge-sale {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--jgps-primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 4px;
}
.product-wishlist {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jgps-muted);
  font-size: .9rem;
  cursor: pointer;
  transition: var(--jgps-transition);
  box-shadow: var(--jgps-shadow-sm);
}
.product-wishlist:hover,
.product-wishlist.active { color: var(--jgps-secondary); }
.product-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--jgps-primary);
  margin-bottom: .4rem;
}
.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--jgps-text);
  margin-bottom: .6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-specs {
  font-size: .78rem;
  color: var(--jgps-muted);
  margin-bottom: 1rem;
}
.product-specs span { margin-right: .75rem; }
.product-specs i { margin-right: .25rem; }
.product-price-row {
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--jgps-border);
}
.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--jgps-text);
}
.product-price-orig {
  font-size: .85rem;
  color: var(--jgps-muted);
  text-decoration: line-through;
  margin-left: .35rem;
}

/* ---------- Feature Cards ---------- */
.feature-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--jgps-border);
  border-radius: var(--jgps-radius);
  background: #fff;
  transition: var(--jgps-transition);
}
.feature-card:hover {
  border-color: rgba(46,125,50,.4);
  box-shadow: var(--jgps-shadow-sm);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--jgps-primary-light);
  color: var(--jgps-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.feature-title { font-weight: 700; font-size: .95rem; margin-bottom: .25rem; }
.feature-desc { font-size: .85rem; color: var(--jgps-muted); }

/* ---------- Dealer CTA ---------- */
.jgps-dealer-cta {
  background: var(--jgps-primary-light);
  border-top: 1px solid rgba(46,125,50,.15);
  border-bottom: 1px solid rgba(46,125,50,.15);
}

/* ---------- Page Header ---------- */
.page-header {
  background: var(--jgps-surface);
  border-bottom: 1px solid var(--jgps-border);
  padding: 2.5rem 0;
}
.page-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: .25rem; }
.page-header p { color: var(--jgps-muted); margin: 0; }

/* ---------- Sidebar ---------- */
.sidebar-card {
  border: 1px solid var(--jgps-border);
  border-radius: var(--jgps-radius);
  padding: 1.25rem;
  background: #fff;
}
.sidebar-title {
  font-weight: 700;
  font-size: .9rem;
  color: var(--jgps-text);
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.sidebar-title i { color: var(--jgps-primary); }
.filter-radio { accent-color: var(--jgps-primary); }

/* ---------- Product Detail ---------- */
.pd-image-main {
  border: 1px solid var(--jgps-border);
  border-radius: var(--jgps-radius);
  background: var(--jgps-surface);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.pd-image-main img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pd-thumbs img {
  border: 1px solid var(--jgps-border);
  border-radius: var(--jgps-radius-sm);
  aspect-ratio: 1;
  object-fit: contain;
  padding: .4rem;
  cursor: pointer;
  transition: var(--jgps-transition);
  background: var(--jgps-surface);
}
.pd-thumbs img:hover,
.pd-thumbs img.active { border-color: var(--jgps-primary); }
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--jgps-border);
  border-radius: var(--jgps-radius-sm);
  overflow: hidden;
}
.qty-control button {
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--jgps-text);
  transition: var(--jgps-transition);
}
.qty-control button:hover { color: var(--jgps-primary); background: var(--jgps-primary-light); }
.qty-control input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--jgps-border);
  border-right: 1px solid var(--jgps-border);
  font-weight: 600;
  outline: none;
  font-size: .95rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: .65rem 0;
  border-bottom: 1px solid var(--jgps-border);
  font-size: .9rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--jgps-muted); }
.spec-value { font-weight: 600; color: var(--jgps-text); }
.btn-whatsapp {
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  color: #25D366;
  padding: .6rem 1rem;
  border-radius: var(--jgps-radius-sm);
  font-weight: 600;
  width: 100%;
  transition: var(--jgps-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: rgba(37,211,102,.18);
  color: #25D366;
}
.quick-feat {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .85rem;
  color: var(--jgps-text);
}
.quick-feat-icon {
  width: 32px; height: 32px;
  background: var(--jgps-primary-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jgps-primary);
  font-size: .85rem;
  flex-shrink: 0;
}

/* ---------- Cart ---------- */
.cart-item {
  border: 1px solid var(--jgps-border);
  border-radius: var(--jgps-radius);
  padding: 1.25rem;
  background: #fff;
  margin-bottom: 1rem;
}
.cart-item img {
  width: 80px; height: 80px;
  object-fit: contain;
  background: var(--jgps-surface);
  border-radius: var(--jgps-radius-sm);
  padding: .4rem;
  flex-shrink: 0;
}
.cart-item-name { font-weight: 600; }
.cart-item-cat { font-size: .8rem; color: var(--jgps-muted); }
.btn-remove {
  background: none;
  border: none;
  color: var(--jgps-muted);
  font-size: .83rem;
  cursor: pointer;
  transition: var(--jgps-transition);
  padding: 0;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.btn-remove:hover { color: #DC2626; }
.order-summary-card {
  border: 1px solid var(--jgps-border);
  border-radius: var(--jgps-radius);
  padding: 1.5rem;
  background: #fff;
  position: sticky;
  top: 90px;
}
.order-summary-card h5 { font-weight: 700; margin-bottom: 1.25rem; }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: .35rem 0;
}
.summary-row .label { color: var(--jgps-muted); }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: .75rem;
  border-top: 1px solid var(--jgps-border);
  margin-top: .5rem;
}
.summary-total .total-label { font-weight: 700; }
.summary-total .total-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--jgps-secondary);
}

/* ---------- Checkout ---------- */
.checkout-section {
  border: 1px solid var(--jgps-border);
  border-radius: var(--jgps-radius);
  padding: 1.5rem;
  background: #fff;
  margin-bottom: 1.25rem;
}
.checkout-section h5 {
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--jgps-text);
}
.checkout-section h5 i { color: var(--jgps-primary); }
.form-label { font-weight: 500; font-size: .88rem; color: var(--jgps-text); }
.form-control:focus, .form-select:focus {
  border-color: var(--jgps-primary);
  box-shadow: 0 0 0 .2rem rgba(46,125,50,.15);
}
.payment-option {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem;
  border: 1.5px solid var(--jgps-border);
  border-radius: var(--jgps-radius-sm);
  cursor: pointer;
  transition: var(--jgps-transition);
  margin-bottom: .75rem;
}
.payment-option.active,
.payment-option:has(input:checked) {
  border-color: var(--jgps-primary);
  background: var(--jgps-primary-light);
}
.payment-option input[type="radio"] { accent-color: var(--jgps-primary); }
.payment-option label { margin: 0; cursor: pointer; font-weight: 500; font-size: .9rem; }
.payment-option i { color: var(--jgps-muted); font-size: 1.1rem; }
.payment-option.active i { color: var(--jgps-primary); }

/* ---------- Footer ---------- */
.jgps-footer {
  background: var(--jgps-surface);
  border-top: 1px solid var(--jgps-border);
  padding: 4rem 0 1.5rem;
  color: var(--jgps-text);
}
.footer-brand { font-weight: 700; font-size: 1.15rem; }
.footer-brand img { width: 36px; height: 36px; object-fit: contain; }
.footer-tagline { font-size: .88rem; color: var(--jgps-muted); margin-top: .5rem; line-height: 1.6; }
.footer-heading { font-weight: 700; font-size: .9rem; margin-bottom: 1rem; color: var(--jgps-text); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .88rem; color: var(--jgps-muted); transition: color .15s; }
.footer-links a:hover { color: var(--jgps-primary); }
.footer-contact li { font-size: .85rem; color: var(--jgps-muted); display: flex; gap: .6rem; margin-bottom: .65rem; }
.footer-contact i { color: var(--jgps-primary); flex-shrink: 0; margin-top: .15rem; }
.newsletter-input {
  display: flex;
  gap: .5rem;
}
.newsletter-input input {
  flex: 1;
  padding: .5rem .85rem;
  border: 1px solid var(--jgps-border);
  border-radius: var(--jgps-radius-sm);
  font-size: .85rem;
  outline: none;
}
.newsletter-input input:focus { border-color: var(--jgps-primary); }
.newsletter-input button {
  padding: .5rem .9rem;
  background: var(--jgps-primary);
  color: #fff;
  border: none;
  border-radius: var(--jgps-radius-sm);
  font-size: .85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--jgps-transition);
}
.newsletter-input button:hover { background: var(--jgps-primary-dark); }
.footer-bottom {
  border-top: 1px solid var(--jgps-border);
  padding-top: 1.25rem;
  margin-top: 3rem;
  font-size: .82rem;
  color: var(--jgps-muted);
}

/* ---------- Breadcrumb ---------- */
.jgps-breadcrumb { background: var(--jgps-surface); border-bottom: 1px solid var(--jgps-border); padding: .75rem 0; }
.breadcrumb { margin: 0; font-size: .85rem; }
.breadcrumb-item a { color: var(--jgps-muted); }
.breadcrumb-item.active { color: var(--jgps-text); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--jgps-muted); }

/* ---------- Toast / Notifications ---------- */
.jgps-toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  text-decoration: none;
  transition: var(--jgps-transition);
  z-index: 1000;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
}

/* ---------- Utilities ---------- */
.divider { border-top: 1px solid var(--jgps-border); }
.text-muted-sm { color: var(--jgps-muted); font-size: .82rem; }
.stars { color: var(--jgps-secondary); }

/* ---------- Responsive Tweaks ---------- */
@media (max-width: 767.98px) {
  .jgps-hero { min-height: auto; padding: 5rem 0 3rem; }
  .jgps-hero h1 { font-size: 2.2rem; }
  .jgps-stats .col { border-right: none !important; }
  .order-summary-card { position: static; }
}

/* ============================================================
   ASP.NET MVC NOTE:
   Copy this file to /wwwroot/css/jallikattu-gps.css
   Reference in _Layout.cshtml with:
   <link rel="stylesheet" href="~/css/jallikattu-gps.css" asp-append-version="true" />
   ============================================================ */
