/* Start custom CSS for html, class: .elementor-element-4e6c435 */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --primary: #1a237e;
    --primary-light: #283593;
    --primary-dark: #0d1457;
    --accent: #3f51b5;
    --accent2: #7986cb;
    --white: #ffffff;
    --off-white: #f0f2ff;
    --text-dark: #111827;
    --text-mid: #374151;
    --text-light: #6b7280;
    --h1: 45px;
    --h2: 22px;
    --body: 14px;
  }

  /* ── HERO-ind ── */
  .hero-ind {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    color: var(--white);
    padding: 80px 5% 100px;
    position: relative;
    overflow: hidden;
  }
  .hero-ind::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    top: -150px; right: -100px;
  }
  .hero-ind::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    bottom: -80px; left: 10%;
  }
  .hero-ind-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: var(--body);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-ind h1 {
    font-size: var(--h1);
    font-weight: 900;
    line-height: 1.15;
    max-width: 680px;
    margin-bottom: 20px;
    color:#fff;
  }
  .hero-ind h1 span { color: var(--accent2); }
  .hero-ind p {
    font-size: 16px;
    font-weight: 300;
    max-width: 560px;
    line-height: 1.7;
    opacity: 0.88;
    margin-bottom: 36px;
  }
  .hero-ind-meta {
    display: flex; gap: 40px; flex-wrap: wrap;
  }
  .hero-ind-meta-item strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
  }
  .hero-ind-meta-item span {
    font-size: var(--body);
    opacity: 0.7;
  }

  /* ── DIVIDER WAVE ── */
  .wave {
    display: block;
    background: var(--primary);
    line-height: 0;
  }
  .wave svg { display: block; }

  /* ── SECTION ── */
  .section {
    padding: 70px 5%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-label {
    font-size: var(--body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
  }
  .section h2 {
    font-size: var(--h2);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .section > p {
    font-size: var(--body);
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 760px;
    margin-bottom: 40px;
  }

  /* ── SERVICES GRID ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 10px;
  }
  .service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(26,35,126,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26,35,126,0.14);
  }
  .service-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--off-white);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
  }
  .service-card h3 {
    font-size: var(--h2);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
  }
  .service-card p {
    font-size: var(--body);
    color: var(--text-light);
    line-height: 1.65;
  }

  /* ── HIGHLIGHT BAND ── */
  .highlight-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 60px 5%;
    text-align: center;
  }
  .highlight-band h2 {
    font-size: var(--h1);
    font-weight: 900;
    margin-bottom: 14px;
    color:#fff;
  }
  .highlight-band p {
    font-size: var(--body);
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
  }
  .btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: var(--body);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
  }
  .btn-white {
    background: var(--white);
    color: var(--primary);
  }
  .btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }

  /* ── FOOTER ── */
  .page-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 24px;
    font-size: var(--body);
  }
  .page-footer a { color: var(--accent2); text-decoration: none; }

  /* ── BACK NAV ── */
  .topnav-ind {
    background: var(--primary-dark);
    padding: 14px 5%;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .topnav-ind a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: var(--body);
    font-weight: 500;
    display: flex; align-items: center; gap: 6px;
    transition: color 0.2s;
  }
  .topnav-ind a:hover { color: #fff; }
  .topnav-ind-sep { color: rgba(255,255,255,0.3); }

  @media (max-width: 768px) {
    :root { --h1: 32px; --h2: 19px; }
    .hero-ind { padding: 60px 5% 80px; }
    .hero-ind-meta { gap: 24px; }
  }/* End custom CSS */