/* ================================
   LINKAGE ANALYTICS WEBSITE STYLE
   ================================ */

:root {
  --navy: #002F6C;
  --green: #008A5B;
  --light: #F5F7FA;
  --text: #1F2933;
  --muted: #6B7280;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background-color: #ffffff;
}

.navbar {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar-brand img {
  max-height: 42px;
}

.hero-section {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 45%, rgba(255,255,255,0.25) 100%),
    url("images/back.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 70px 8%;
  border-bottom: 1px solid #e5e7eb;
}

.hero-content {
  max-width: 760px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.hero-content h2 {
  font-size: 1.35rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 1.3rem;
}

.hero-content p {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text);
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  margin-right: 12px;
  margin-top: 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: var(--navy);
  color: #ffffff !important;
}

.btn-primary:hover {
  background: #001f48;
}

.btn-secondary {
  border: 2px solid var(--navy);
  color: var(--navy) !important;
  background: #ffffff;
}

.btn-secondary:hover {
  background: var(--light);
}

.section {
  padding: 60px 8%;
}

.section h2,
.section-light h2 {
  color: var(--navy);
  font-weight: 800;
}

.section-light {
  padding: 60px 8%;
  background: var(--light);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 20px 8% 60px 8%;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-top: 4px solid var(--green);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.card h3 {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.page-columns {
  max-width: 100% !important;
}

.content {
  max-width: 100% !important;
}

h1, h2, h3 {
  color: var(--navy);
}

a {
  color: var(--green);
}

footer {
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-section {
    padding: 50px 6%;
  }
}
/* ================================
   SERVICES PAGE
   ================================ */

.page-header {
  padding: 70px 8% 40px 8%;
  background: linear-gradient(90deg, #ffffff 0%, #f5f7fa 100%);
  border-bottom: 1px solid #e5e7eb;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
}

.page-header h2 {
  font-size: 1.25rem;
  color: var(--green);
  font-weight: 600;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 20px 8% 70px 8%;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-top: 4px solid var(--navy);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.service-card h3 {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
}

.service-card strong {
  color: var(--green);
}

.service-card ul {
  padding-left: 18px;
}

.service-card li {
  margin-bottom: 6px;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================
   INSIGHTS PAGE
   ================================ */

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 20px 8% 70px 8%;
}

.insight-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 5px solid var(--green);
  border-radius: 10px;
  padding: 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.insight-card h3 {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
}

.insight-card strong {
  color: var(--green);
}

@media (max-width: 1000px) {
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .insight-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   REPORTS PAGE
   ================================ */

.report-feature {
  margin: 40px 8%;
  padding: 40px;
  background: linear-gradient(90deg, #ffffff 0%, #f5f7fa 100%);
  border: 1px solid #e5e7eb;
  border-left: 6px solid var(--navy);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.report-feature h2 {
  color: var(--navy);
  font-weight: 800;
}

.report-feature h3 {
  color: var(--green);
  font-weight: 800;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 20px 8% 70px 8%;
}

.report-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-top: 4px solid var(--green);
  border-radius: 10px;
  padding: 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.report-card h3 {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
}

.report-card strong {
  color: var(--green);
}

@media (max-width: 1000px) {
  .report-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .report-grid {
    grid-template-columns: 1fr;
  }

  .report-feature {
    margin: 25px 6%;
    padding: 28px;
  }
}
/* ================================
   DASHBOARDS PAGE
   ================================ */

.dashboard-feature {
  margin: 40px 8%;
  padding: 42px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(245,247,250,0.94) 100%),
    url("images/back.png");
  background-size: cover;
  background-position: center;
  border: 1px solid #e5e7eb;
  border-left: 6px solid var(--green);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.dashboard-feature h2 {
  color: var(--navy);
  font-weight: 800;
}

.dashboard-feature h3 {
  color: var(--green);
  font-weight: 800;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 20px 8% 70px 8%;
}

.dashboard-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-top: 4px solid var(--navy);
  border-radius: 10px;
  padding: 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.dashboard-card h3 {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
}

.dashboard-card strong {
  color: var(--green);
}

@media (max-width: 1000px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-feature {
    margin: 25px 6%;
    padding: 28px;
  }
}
/* ================================
   CONTACT PAGE
   ================================ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 20px 8% 70px 8%;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-top: 4px solid var(--navy);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.contact-card h3 {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-card strong {
  color: var(--green);
}

.contact-card ul {
  padding-left: 18px;
}

.contact-card li {
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   UPGRADED HOME PAGE
   ================================ */

.section-intro {
  padding: 70px 10% 50px 10%;
  text-align: center;
  background: #ffffff;
}

.section-intro h2 {
  max-width: 950px;
  margin: 0 auto 22px auto;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

.section-intro p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 8% 70px 8%;
}

.feature-item {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  padding: 34px;
}

.feature-item:first-child {
  border-left: 1px solid #e5e7eb;
}

.feature-item h3 {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-item p {
  color: var(--muted);
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 20px 8% 70px 8%;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-top: 4px solid var(--green);
  border-radius: 12px;
  padding: 28px;
  min-height: 260px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.055);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.product-card h3 {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 14px;
}

.product-card p {
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  text-decoration: none;
  color: var(--green) !important;
}

.text-link:hover {
  text-decoration: underline;
}

.cta-section {
  margin: 30px 8% 80px 8%;
  padding: 55px;
  background:
    linear-gradient(90deg, rgba(0,47,108,0.96), rgba(0,138,91,0.88)),
    url("images/back.png");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  color: #ffffff;
}

.cta-section h2 {
  color: #ffffff;
  font-weight: 800;
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.cta-section p {
  max-width: 850px;
  color: #f3f4f6;
  line-height: 1.75;
  font-size: 1.05rem;
}

.cta-section .btn-primary {
  background: #ffffff;
  color: var(--navy) !important;
}

.cta-section .btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff !important;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-left: 1px solid #e5e7eb;
  }
}

@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    margin: 25px 6% 60px 6%;
    padding: 35px;
  }
}

/* ================================
   LATEST REPORT SECTION
   ================================ */

.latest-section {
  padding: 70px 8%;
  background: #ffffff;
}

.latest-section h2 {
  color: var(--navy);
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
}

.latest-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(245,247,250,0.92) 100%),
    url("images/back.png");
  background-size: cover;
  background-position: center;
  border: 1px solid #e5e7eb;
  border-left: 6px solid var(--green);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}

.latest-card h3 {
  color: var(--navy);
  font-weight: 800;
}

.latest-card p {
  max-width: 780px;
  color: var(--text);
  line-height: 1.7;
}

/* ================================
   EMBEDDED SHINY DASHBOARD
   ================================ */

.dashboard-embed {
  margin: 40px 8%;
  padding: 18px;
  background: #
