/* Start custom CSS for html, class: .elementor-element-03562fa */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --primary: #6a1b9a;
    --primary-light: #7b1fa2;
    --primary-dark: #4a0072;
    --accent: #9c27b0;
    --accent2: #ce93d8;
    --white: #ffffff;
    --off-white: #faf0ff;
    --text-dark: #111827;
    --text-mid: #374151;
    --text-light: #6b7280;
    --h1: 45px;
    --h2: 22px;
    --body: 14px;
  }


  .topnav {
    background: var(--primary-dark);
    padding: 14px 5%;
    display: flex; align-items: center; gap: 12px;
  }
  .topnav 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 a:hover { color: #fff; }
  .topnav-sep { color: rgba(255,255,255,0.3); }

  .hero {
    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::before {
    content: '';
    position: absolute;
    width: 580px; height: 580px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    top: -140px; right: -100px;
  }
  .hero::after {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    bottom: -60px; left: 10%;
  }
  .hero-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 h1 {
    font-size: var(--h1);
    font-weight: 900;
    line-height: 1.15;
    max-width: 680px;
    margin-bottom: 20px;
    color:#fff;
  }
  .hero h1 span { color: var(--accent2); }
  .hero p {
    font-size: 16px;
    font-weight: 300;
    max-width: 560px;
    line-height: 1.7;
    opacity: 0.88;
    margin-bottom: 36px;
  }
  .hero-meta { display: flex; gap: 40px; flex-wrap: wrap; }
  .hero-meta-item strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
  }
  .hero-meta-item span { font-size: var(--body); opacity: 0.7; }

  .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(260px, 1fr));
    gap: 20px;
  }
  .svc-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(106,27,154,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(106,27,154,0.14);
  }
  .svc-step {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--off-white);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    border: 2px solid rgba(106,27,154,0.2);
  }
  .svc-card h3 {
    font-size: var(--h2);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
  }
  .svc-card p {
    font-size: var(--body);
    color: var(--text-light);
    line-height: 1.65;
  }

  /* SPECIALIZATIONS */
  .spec-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .spec-pill {
    background: var(--white);
    border: 1.5px solid rgba(106,27,154,0.25);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: var(--body);
    font-weight: 500;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .spec-pill span { font-size: 16px; }

  /* WHY US */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(106,27,154,0.08);
  }
  .why-item { text-align: center; }
  .why-icon { font-size: 32px; margin-bottom: 10px; }
  .why-item strong {
    display: block;
    font-size: var(--h2);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
  }
  .why-item p {
    font-size: var(--body);
    color: var(--text-light);
    line-height: 1.5;
  }

  .highlight-band {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, 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-cons {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: var(--body);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 2px solid transparent;
  }
  .btn-cons-white { background: var(--white); color: var(--primary); }
  .btn-cons-white:hover { background: transparent; color: var(--white); border-color: var(--white); }

  .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; }

  @media (max-width: 768px) {
    :root { --h1: 32px; --h2: 19px; }
    .hero { padding: 60px 5% 80px; }
    .why-grid { padding: 24px; }
  }/* End custom CSS */