/* ============================================================
   GLOBAL BASE STYLES
============================================================ */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f8f9fa;
  color: #222;
  line-height: 1.5;
}

/* Utility */
.reveal { opacity: 0; transform: translateY(35px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR (GLOBAL)
============================================================ */
.navbar {
  background: linear-gradient(90deg, #002b5c, #004080);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  position: relative;
  z-index: 3000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  gap: 10px;
}

.logo {
  height: 32px !important;
  width: auto !important;
  max-height: 32px !important;
  object-fit: contain !important;
  display: block;
}

/* NAV MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

/* Highlight active page */
.nav-menu a.active {
  text-decoration: underline;
  font-weight: 600;
}

/* DROPDOWNS */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 220px;
  border-radius: 6px;
  padding: 8px 0;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  z-index: 3500;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  color: #002b5c !important;
  padding: 10px 18px;
  display: block;
}

.dropdown-menu a:hover {
  background: #eef5ff;
}

/* ============================================================
   GLOBAL SECTION LAYOUTS
============================================================ */

section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
}

.solutions-grid,
.feature-grid,
.industry-grid,
.template-grid {
  display: grid;
  gap: 20px;
}

/* Card sizes restored to your original proportions */
.solution-card {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-top: 4px solid #004080;
}

.solution-card img {
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

.feature img {
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

.industry-card img {
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

/* Example image */
.example-img {
  width: 85%;
  max-width: 680px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* CTA FOOTER */
.cta-footer {
  background: #004080;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta {
  background: #fff;
  color: #004080;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: #f1f3f5;
  padding: 16px;
  text-align: center;
  color: #444;
}

html,
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Helvetica Neue", sans-serif;
}

textarea,
input,
button {
  font-family: inherit;
}

