:root {
  --primary-blue: #3a82ee;
  --dark-blue: #1d66d5;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-gradient: linear-gradient(135deg, #ffffff 0%, #cbdcf7 100%);
  --card-bg: rgba(255, 255, 255, 0.88);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}
body {
  background: var(--bg-gradient);
  min-height: 100vh;
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
}

/* GLOBAL NAVIGATION DESIGN BLOCK */
.global-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58, 130, 238, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
}
.nav-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 10px;
}
.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
  background: rgba(58, 130, 238, 0.08);
}

/* LAYOUT ASSETS */
.circle-bg {
  position: absolute;
  width: 800px;
  height: 800px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  z-index: 0;
  filter: blur(40px);
}
.plus-icon {
  position: absolute;
  color: rgba(58, 130, 238, 0.12);
  font-size: 6rem;
  font-weight: 300;
  z-index: 0;
  user-select: none;
}
.p1 {
  top: 15%;
  right: 10%;
}
.p2 {
  bottom: 20%;
  left: 5%;
}
.app-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.brand-box {
  flex: 1;
}
.main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.2;
  margin-bottom: 20px;
}
.main-title .abbr {
  font-size: 2rem;
  font-weight: 600;
}
.project-tag {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 24px;
  border-radius: 12px;
}
.divider {
  width: 2px;
  height: 200px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(58, 130, 238, 0.4),
    transparent
  );
}
.benefits-box {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-weight: 600;
  color: #475569;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #334155;
  opacity: 0;
  transform: translateX(30px);
  animation: slideIn 0.5s ease forwards;
  animation-delay: calc(var(--delay) * 0.12s);
}
.feature-item .icon {
  color: var(--primary-blue);
  font-size: 1.25rem;
}
.cta-btn {
  align-self: flex-start;
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(58, 130, 238, 0.25);
  transition: all 0.2s ease;
}
.cta-btn:hover {
  background: var(--dark-blue);
}

.grid-layout {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 30px;
}
.card {
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(8px);
  padding: 30px;
}
.card h2 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid rgba(58, 130, 238, 0.1);
  padding-bottom: 12px;
}

.input-group {
  margin-bottom: 16px;
}
.input-row {
  display: flex;
  gap: 15px;
}
.input-row .input-group {
  flex: 1;
}
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-muted);
}
input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  background: white;
  outline: none;
}
input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(58, 130, 238, 0.15);
}

.scheme-info {
  background: rgba(58, 130, 238, 0.06);
  border-left: 4px solid var(--primary-blue);
  padding: 15px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}
.scheme-info h3 {
  font-size: 0.95rem;
  color: var(--dark-blue);
  margin-bottom: 6px;
}
.scheme-info p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #475569;
}
.summary-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.badge {
  background: white;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.badge .label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}
.badge .val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-blue);
}
.badge.secure .val {
  color: #0f172a;
}

.table-wrapper {
  overflow-x: auto;
  max-height: 620px;
  overflow-y: auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
  background: white;
}
th {
  background: #f8fafc;
  color: var(--text-main);
  font-weight: 700;
  padding: 14px;
  position: sticky;
  top: 0;
  z-index: 2;
  border-bottom: 2px solid #e2e8f0;
}
td {
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 600;
  color: #475569;
}
tr:hover td {
  background-color: #f8fafc;
}
tr td:nth-child(6) {
  color: #b45309;
}
tr td:nth-child(7) {
  color: #15803d;
}

/* INFORMATION MATRIX EXTRA RULES */
.info-matrix-wrapper {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}
.info-matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.85rem;
}
.info-matrix-table th {
  background: #f8fafc;
  color: var(--text-main);
  font-weight: 700;
  padding: 14px;
  border-bottom: 2px solid #e2e8f0;
}
.info-matrix-table td {
  padding: 14px;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 600;
  color: #475569;
  height: 45px;
}
.info-matrix-table tr:hover td {
  background-color: #fafafa;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .divider {
    width: 80%;
    height: 2px;
    margin: 10px 0;
  }
  .feature-item {
    justify-content: center;
    transform: translateY(20px);
  }
  .grid-layout {
    grid-template-columns: 1fr;
  }
}
/* --- BRAND LOGO LAYOUT MANAGEMENT --- */
.logo-container {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.brand-logo {
  max-height: 65px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.05));
  border-radius: 4px;
}

/* Adjust title gap to accommodate the brand image frame */
.main-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.2;
  margin-bottom: 15px;
}
/* --- SITE FOOTER BRANDING AND LAYOUT --- */
.site-footer {
  background-color: #0d233a; /* Sophisticated corporate navy */
  color: #ffffff;
  padding: 40px 20px 20px 20px;
  margin-top: 50px;
  border-top: 4px solid #1e3d59;
  font-family: inherit;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 280px;
}

.footer-column h3 {
  color: #ffb703; /* Highlight accent gold for subtitles */
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e0e6ed;
  margin: 5px 0;
}

.footer-column.contact-info a {
  color: #4ea8de;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-column.contact-info a:hover {
  color: #ffb703;
  text-decoration: underline;
}

.contact-person {
  font-size: 1rem !important;
  color: #ffffff !important;
  margin-bottom: 8px !important;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0 auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: #a3b1c2;
}

/* Adaptive mobile adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: left;
  }
}
