.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.banner-text {
  font-size: 18px;
  fill: #C41E3A;
}
.nav-menu .portal-btn {
  background: #C41E3A;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 6px 14px;
  margin: 0;
  box-shadow: 0 2px 8px rgba(196,30,58,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  height: 36px;
}
}
.nav-menu .portal-btn:hover {
  background: #a01830;
  color: #fff;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #eaeaea 100%);
  color: #333;
  margin: 0;
  padding: 0;
}
.nav-bar {
  width: 100vw;
  background: linear-gradient(135deg, #C41E3A 0%, #a01830 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-brand {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.nav-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 5px;
  transition: background 0.2s;
}
.nav-link.active, .nav-link:hover {
  background: rgba(255,255,255,0.18);
}
.hero {
  background: linear-gradient(135deg, #C41E3A 0%, #a01830 100%);
  color: white;
  padding: 70px 0 50px 0;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.hero-graphic {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 30px auto;
  display: block;
  animation: popIn 1s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.hero-glass {
  background: rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 32px 24px;
  margin: 0 auto;
  max-width: 600px;
  box-shadow: 0 4px 32px rgba(196,30,58,0.12);
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 2.7rem;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(196,30,58,0.12);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 24px;
  font-weight: 500;
  color: #ffe6ea;
  text-shadow: 0 2px 8px rgba(196,30,58,0.12);
}
.cta-btn {
  background: white;
  color: #C41E3A;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 18px 44px;
  font-size: 1.3rem;
  margin-top: 18px;
  animation: bounceIn 1.2s infinite alternate;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(196,30,58,0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cta-btn:hover {
  background: #a01830;
  color: white;
  transform: scale(1.04);
}
.feature-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
}
.feature-card {
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(196,30,58,0.08);
  padding: 36px 24px;
  width: 320px;
  text-align: center;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1.5px solid #f0e0e0;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.18s;
  position: relative;
  z-index: 2;
}
.feature-icon {
  font-size: 2.7rem;
  color: #C41E3A;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px rgba(196,30,58,0.12));
}
.feature-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #a01830;
}
.feature-desc {
  color: #666;
  font-size: 1.05rem;
  font-weight: 500;
}
@media (max-width: 900px) {
  .feature-section { flex-direction: column; gap: 18px; }
  .feature-card { width: 100%; }
  .hero-glass { padding: 24px 8px; }
}
.analytics-section {
  max-width:900px;
  margin:40px auto 0 auto;
  background:rgba(255,255,255,0.92);
  border-radius:18px;
  box-shadow:0 2px 16px rgba(0,0,0,0.08);
  padding:36px 18px;
  text-align:center;
  position:relative;
  z-index:2;
}
.analytics-section h2 {
  color:#C41E3A;
  margin-bottom:18px;
  font-size:2rem;
  font-weight:900;
}
.analytics-cards {
  display:flex;
  gap:40px;
  justify-content:center;
  flex-wrap:wrap;
}
.analytics-card {
  flex:1;
  min-width:180px;
  background:rgba(255,255,255,0.85);
  border-radius:12px;
  box-shadow:0 2px 8px rgba(196,30,58,0.08);
  padding:24px 12px;
  margin:8px;
  color:#a01830;
  font-size:1.2rem;
  font-weight:700;
  display:flex;
  flex-direction:column;
  align-items:center;
  border:1px solid #f0e0e0;
}
.analytics-card .label {
  color:#666;
  font-size:1rem;
  font-weight:500;
  margin-top:8px;
}
.live-chat-widget {
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:9999;
}
.live-chat-btn {
  background:#C41E3A;
  color:white;
  border:none;
  border-radius:50%;
  width:56px;
  height:56px;
  font-size:2rem;
  box-shadow:0 2px 8px rgba(196,30,58,0.15);
  cursor:pointer;
  transition:background 0.2s,transform 0.2s;
}
.live-chat-btn:hover {
  background:#a01830;
  transform:scale(1.08);
}
.glass-banner {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  margin-bottom:24px;
}
.glass-banner img {
  width:180px;
  max-width:100%;
  border-radius:12px;
  box-shadow:0 2px 8px rgba(196,30,58,0.12);
}
.hero-tagline {
  margin-top:18px;
  font-size:1.1rem;
  background:rgba(255,255,255,0.18);
  padding:8px 18px;
  border-radius:6px;
  color:#fff;
  display:inline-block;
  font-weight:600;
}
/* Dark mode overrides */
body.dark-mode {
  background: #181a1b;
  color: #f5f7fa;
}
.nav-bar.dark-mode, body.dark-mode .nav-bar {
  background: linear-gradient(135deg, #222 0%, #333 100%);
  color: #f5f7fa;
}
.feature-card.dark-mode, body.dark-mode .feature-card {
  background: #232323;
  color: #f5f7fa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.cta-btn.dark-mode, body.dark-mode .cta-btn {
  background: #333;
  color: #C41E3A;
}
.analytics-section.dark-mode, body.dark-mode .analytics-section {
  background: #232323;
  color: #f5f7fa;
}
.analytics-card.dark-mode, body.dark-mode .analytics-card {
  background: #181a1b;
  color: #C41E3A;
  border-color: #333;
}
/* Header and layout styles */
.portal-header {
  width: 100vw;
  background: linear-gradient(135deg, #fff 0%, #fbeaec 100%);
  box-shadow: 0 2px 12px rgba(196,30,58,0.08);
  padding: 0;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 18px 32px;
  border-radius: 0 0 24px 24px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 16px rgba(196,30,58,0.08);
}
.header-logo {
  width: 64px;
  height: 64px;
  margin-right: 24px;
}
.header-title-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.header-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #C41E3A;
  margin-bottom: 6px;
}
.header-subtitle {
  font-size: 1.1rem;
  color: #a01830;
  font-weight: 500;
}
.header-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.header-link {
  color: #C41E3A;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.header-link:hover {
  background: #fbeaec;
  color: #a01830;
}
.header-darkmode {
  font-size: 1.2rem;
  color: #a01830;
  background: none;
  border: none;
  padding: 8px 16px;
}
@media (max-width: 900px) {
  .header-card { flex-direction: column; align-items: flex-start; padding: 18px 8px; }
  .header-nav { flex-wrap: wrap; gap: 8px; }
  .header-logo { margin-bottom: 12px; }
}
/* index.css - Modern portal styles, moved from inline */
.hero-svg {
  margin-bottom: 18px;
}
.hero-desc {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: #ffe6ea;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(196,30,58,0.12);
}
.banner-svg {
  margin: 0 12px;
}
.cta-btn {
  font-size: 1.3rem;
  padding: 18px 44px;
  margin-top: 18px;
  animation: bounceIn 1.2s infinite alternate;
}
@keyframes bounceIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-glass {
  background: rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 32px 24px;
  margin: 0 auto;
  max-width: 600px;
  box-shadow: 0 4px 32px rgba(196,30,58,0.12);
  position: relative;
  z-index: 2;
}
.glass-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.hero-tagline {
  margin-top: 18px;
  font-size: 1.1rem;
  background: rgba(255,255,255,0.18);
  padding: 8px 18px;
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
}
