:root {
      --primary: #0b5ed7;
      --secondary: #0a9396;
      --bg: #f5f5f7;
      --text: #222222;
      --muted: #555555;
      --card: #ffffff;
      --accent: #ffb703;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Layout helpers */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: #ffffff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 1.25rem;
    }

    .logo {
      font-weight: 700;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

    .logo span.icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 0.9rem;
    }

    .nav-links {
      display: flex;
      gap: 1.25rem;
      font-size: 0.95rem;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 2px;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.2s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      background: var(--primary);
      color: #ffffff;
      font-size: 0.9rem;
      border: none;
      cursor: pointer;
    }

    /* Hero */
    #home {
      background: radial-gradient(circle at top left, #e0f2ff, #f5f5f7);
      padding: 3.5rem 0 3rem;
    }

    .hero {
      display: grid;
      grid-template-columns: 1.4fr 1.2fr;
      gap: 2.5rem;
      align-items: center;
    }

    .hero-kicker {
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      color: var(--secondary);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .hero h1 {
      font-size: 2.2rem;
      line-height: 1.2;
      margin-bottom: 0.75rem;
    }

    .hero h1 span.highlight {
      color: var(--primary);
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--muted);
      margin-bottom: 1.2rem;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .badge {
      font-size: 0.8rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      background: rgba(11, 94, 215, 0.08);
      color: var(--primary);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
      margin-bottom: 1rem;
    }

    .btn-primary {
      background: var(--primary);
      color: #ffffff;
      padding: 0.7rem 1.4rem;
      border-radius: 999px;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
    }

    .btn-secondary {
      background: #ffffff;
      color: var(--primary);
      padding: 0.7rem 1.2rem;
      border-radius: 999px;
      font-size: 0.95rem;
      border: 1px solid rgba(11, 94, 215, 0.25);
      cursor: pointer;
    }

    .hero-note {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .hero-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
    }

    .hero-card-title {
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      margin-top: 0.5rem;
    }

    .metric {
      padding: 0.75rem;
      border-radius: 12px;
      background: #f9fafb;
    }

    .metric-label {
      font-size: 0.75rem;
      color: var(--muted);
    }

    .metric-value {
      font-weight: 700;
      font-size: 1rem;
    }

    /* Sections */
    section {
      padding: 3rem 0;
    }

    section h2 {
      text-align: center;
      font-size: 1.6rem;
      margin-bottom: 0.75rem;
    }

    section .section-subtitle {
      text-align: center;
      font-size: 0.95rem;
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 2rem;
    }

    /* Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
    }

    .service-card {
      background: var(--card);
      padding: 1.25rem;
      border-radius: 14px;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-icon {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: rgba(11, 94, 215, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 0.9rem;
    }

    .service-card h3 {
      font-size: 1rem;
      margin-bottom: 0.35rem;
    }

    .service-card p {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }

    .service-tagline {
      font-size: 0.8rem;
      color: var(--secondary);
      margin-bottom: 0.75rem;
    }

    .service-link {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      gap: 0.2rem;
    }

    /* Why Us */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
      margin-top: 1rem;
    }

    .why-card {
      padding: 1.1rem;
      border-radius: 12px;
      background: #ffffff;
      border: 1px solid #ececec;
      font-size: 0.9rem;
    }

    .why-title {
      font-weight: 600;
      margin-bottom: 0.35rem;
      font-size: 0.95rem;
    }

    /* About */
    .about-layout {
      display: grid;
      grid-template-columns: 1.2fr 1.2fr;
      gap: 2rem;
      align-items: start;
    }

    .about-card {
      background: #ffffff;
      padding: 1.25rem;
      border-radius: 14px;
      box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
      font-size: 0.92rem;
      color: var(--muted);
      margin-bottom: 1.5rem;
    }

    .about-card h3 {
      font-size: 1rem;
      margin-bottom: 0.5rem;
      color: var(--text);
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.35rem;
    }

    .pill {
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      border: 1px solid #e0e7ff;
      font-size: 0.8rem;
      color: var(--muted);
      background: #f8fafc;
    }

    /* Client */
    .client-card {
      max-width: 640px;
      margin: 0 auto;
      background: #ffffff;
      padding: 1.5rem;
      border-radius: 16px;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
      text-align: left;
    }

    .client-name {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 0.4rem;
    }

    .client-meta {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 0.8rem;
    }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 1.1fr;
      gap: 2rem;
      margin-top: 1.5rem;
    }

    .contact-card {
      background: #ffffff;
      padding: 1.25rem;
      border-radius: 14px;
      box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
      font-size: 0.9rem;
    }

    .contact-card h3 {
      margin-bottom: 0.6rem;
      font-size: 1rem;
    }

    .contact-item {
      margin-bottom: 0.5rem;
    }

    .contact-label {
      font-size: 0.8rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .contact-value {
      font-size: 0.92rem;
    }

    .contact-note {
      font-size: 0.85rem;
      color: var(--muted);
      margin-top: 0.75rem;
    }

    .contact-form label {
      display: block;
      font-size: 0.8rem;
      margin-bottom: 0.15rem;
      color: var(--muted);
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      padding: 0.55rem 0.6rem;
      border-radius: 8px;
      border: 1px solid #d4d4d8;
      font-size: 0.85rem;
      margin-bottom: 0.7rem;
      font-family: inherit;
    }

    .contact-form textarea {
      min-height: 90px;
      resize: vertical;
    }

    /* Footer */
    footer {
      background: #050816;
      color: #e5e7eb;
      padding: 1.5rem 0;
      margin-top: 2rem;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.8rem;
      align-items: center;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-links a {
      color: #9ca3af;
    }

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

      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .about-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }
    }

    @media (max-width: 600px) {
      .services-grid,
      .why-grid {
        grid-template-columns: 1fr;
      }

      .hero h1 {
        font-size: 1.7rem;
      }
    }

---------------------
/* ================================
   ABOUT SECTION – RESPONSIVE GRID
   ================================ */

/* Default: Desktop & Laptop */
.about-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 cards */
  gap: 1.25rem;
}

/* Card styling */
.about-card1 {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.about-card1 h3 {
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.about-card1 p {
  margin: 0;
  line-height: 1.65;
  color: #333;
  word-break: normal;
  overflow-wrap: break-word;
}

/* ================================
   TABLET (optional – still 3 cards)
   ================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================
   MOBILE (STACKED)
   ================================ */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr; /* 1 card per row */
  }

  .about-card1 {
    padding: 1.1rem 1.25rem;
  }

  .about-card1 h3 {
    font-size: 1.05rem;
  }

  .about-card1 p {
    font-size: 0.95rem;
  }
}/* =========================================
   FORCE ABOUT GRID RESPONSIVENESS (FINAL FIX)
   ========================================= */

/* MOBILE FIRST: default = stacked */
.about-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.25rem !important;
}

/* DESKTOP & LAPTOP */
@media (min-width: 769px) {
  .about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* TEXT SAFETY */
.about-card1 p {
  word-break: normal !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
}

-----------------------
/* ================================
   CLIENT HIGHLIGHT – CENTER LOGO
   ================================ */

.client-highlight .client-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
  margin-bottom: 0.75rem;
}

.client-highlight .client-logo {
  height: 48px;
  width: auto;
  margin-bottom: 0.4rem;
}

.client-highlight .client-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.client-highlight .client-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Mobile polish */
@media (max-width: 768px) {
  .client-highlight .client-logo {
    height: 42px;
  }
}
/* ================================
   CLIENT HIGHLIGHT – CENTER TEXT
   ================================ */

.client-highlight {
  text-align: center; /* centers ALL text inside */
}

.client-highlight .client-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
}

.client-highlight .client-logo {
  height: 48px;
  width: auto;
  margin-bottom: 0.4rem;
}

.client-highlight .client-name {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}

.client-highlight .client-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

/* Paragraph text alignment */
.client-highlight p {
  text-align: center;
}

