/* =========================
   INDOVA PREMIUM THEME
========================= */

:root{

  /* Header */
  --header-bg: #2f2f2f;
  --header-text: #f3f1ec;
  --header-text-muted: #d7d0c7;

  /* Primary Typography */
  --heading-primary: #232220;
  --heading-secondary: #2f2d2a;

  /* Body Typography */
  --text-primary: #4f4a44;
  --text-secondary: #6a655f;

  /* Accent */
  --accent-premium: #5f7690;
  --accent-hover: #7b91aa;

  /* Surface */
  --surface-light: #f4f5f7;
  --surface-card: rgba(255,255,255,0.78);
  
  /* Container Width */
  --container-width: 1100px;

}

/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--surface-light);
  color: var(--text-primary);
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* =========================
   Structural Style
========================= */

.container {
   max-width: var(--container-width); 
   margin:auto;
   padding: 8px 20px;
}


/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #2f2f2f;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  height: 55px;
  display: block;
}

/* =========================
   DESKTOP NAVIGATION
========================= */

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  text-decoration: none;
  color: #f3f1ec;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
}

.nav a:hover {
  color: #8fa7bf;
}

.nav a .mobile {
    display:none;
}

.nav a svg {
    margin-right: 4px;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #f3f1ec;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  .flex {
    padding: 10px 0;
  }

  .logo {
    height: 40px;
  }

  /* SHOW HAMBURGER */
  .menu-toggle {
    display: block;
  }

  /* MOBILE NAV */
  .nav.home {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #2f2f2f;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 10px 8px;
    border-bottom:
      1px solid rgba(255,255,255,0.04);

    font-size: 15px;
  }

  .nav a:hover {
    background:
      rgba(255,255,255,0.03);
  }
  .nav a .desktop {
    display:none;
  }
  .nav a .mobile {
    display:inline-block;
}

}


.sub {
  opacity: 0.85;
}

.tagline {
  margin-top: 8px;
  font-weight: 600;
  color: var(--heading-secondary);
  letter-spacing: -0.01em;
}

/* =========================
   ABOUT
========================= */

.about {
  padding: 50px 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
}

/* =========================
   INTRO SECTION
========================= */

.intro {
  text-align: center;
  padding: 10px 20px;
}

.intro h1 {
  font-size: 22px;
  color: var(--heading-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.meta {
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.description {
  margin: 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  color: var(--text-primary);
  font-weight: 400;
}

/* =========================
   CARDS
========================= */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 50px;
}

/* =========================
   GLASS EFFECT
========================= */

.glass {
  background: var(--surface-card);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.45);
}

.glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.10);
}

/* =========================
   CARD IMAGE
========================= */

.card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 12px 12px 0 0;
}

.card-body {
  padding: 20px 10px 5px;
}

.card h2 {
  color: var(--heading-primary);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.card p {
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
}

.card span {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--heading-secondary);
}

.cta {
  margin-top: 18px;
  color: var(--accent-premium);
  font-weight: 600;
  transition: 0.25s ease;
}

.card:hover .cta {
  color: var(--accent-hover);
}

/* =========================
   TRUST SECTION
========================= */

.trust {
  background: #2f2f2f;
  color: var(--header-text);
  padding: 50px 20px;
  text-align: center;
}

.trust h2 {
  margin-bottom: 10px;
}

/* =========================
   FOOTER
========================= */

.footer {
  margin-top: auto;
  background: #262626;
  color: var(--header-text-muted);
  text-align: center;
  padding: 16px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.capabilities-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

.section-description {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .cards {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .intro h1 {
    font-size: 22px;
  }

  .flex {
    flex-direction: row;
    gap: 15px;
    padding: 5px 20px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin: 8px 12px;
  }

}