
  :root {
      --bg: #0f172a;
      --bg-alt: #020617;
      --accent: #22c55e;
      --accent-dark: #16a34a;
      --text: #e5e7eb;
      --muted: #9ca3af;
      --card: #111827;
      --border: #1f2937;
      --danger: #ef4444;
      --max-width: 1040px; 
	  --accent-soft: rgba(14,165,233,0.14);
      --max-width: 1120px;
    }
  

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top, #0b1120 0, #020617 52%),
        radial-gradient(circle at bottom, #020617 0, #020617 60%);
      color: var(--text);
      line-height: 1.6;
    }

    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }

    header {
      top: 0;
      z-index: 40;
      border-bottom: 1px solid var(--border);
      background: linear-gradient(to bottom, rgba(15,23,42,0.96), rgba(15,23,42,0.88));
      backdrop-filter: blur(14px);
    }

    .nav-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0.65rem 1.25rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.55rem;
    }

    .logo-mark {
      width: 11px;
      height: 11px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 22px rgba(56,189,248,0.9);
    }
	
	 .logo-mark-2 {
      width: 100px;
    }

    .logo-text-main {
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
	  color: var(--accent);
    }

    .logo-text-sub {
      font-size: 0.7rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .nav-actions {
      display: flex;
      gap: 0.75rem;
      align-items: center;
      font-size: 0.85rem;
    }

    .nav-phone {  
		font-size: 1.5rem;
		align-items: center;
		}

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.1rem;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.86rem;
      font-weight: 600;
      cursor: pointer;
      background: var(--accent);
      color: #0b1220;
      box-shadow: 0 0 18px rgba(56,189,248,0.6);
      transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
      white-space: nowrap;
      text-decoration: none;
    }

    .btn:hover {
      background: var(--accent-dark);
      box-shadow: 0 0 26px rgba(56,189,248,0.85);
      transform: translateY(-1px);
      text-decoration: none;
    }

    .btn-outline {
      background: transparent;
      color: var(--text);
      border-color: var(--border);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: rgba(15,23,42,0.92);
      box-shadow: 0 0 16px rgba(15,23,42,0.9);
    }

    main {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 1.6rem 1.25rem 3.1rem;
    }

    /* Hero */

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
      gap: 2.3rem;
      align-items: center;
      padding-top: 2.1rem;
      padding-bottom: 2.2rem;
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.68rem;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 0.55rem;
    }

    .hero h1 {
      font-size: clamp(2.1rem, 2.9vw + 1.3rem, 3rem);
      line-height: 1.08;
      margin: 0 0 0.75rem;
    }
	
    .hero h1 span { color: var(--accent); }
	
    .hero-card p span { color: var(--accent); }
	

    .hero-sub {
      font-size: 0.98rem;
      max-width: 36rem;
      margin-bottom: 1.1rem;
    }

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

    .hero-note {
      font-size: 0.8rem;
    }

    .hero-card {
      background: radial-gradient(circle at top left, #0f172a 0, #020617 65%);
      border-radius: 1.2rem;
      border: 1px solid rgba(148,163,184,0.28);
      padding: 1.35rem 1.45rem;
      box-shadow: 0 22px 65px rgba(15,23,42,0.92);
    }

    /* Shared image styles */

.hero-image {
  margin-top: 0.75rem;
  max-height: 250px;       /* limit height of the area */
  width: 30%;
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;         /* hide overflow if image is taller */
}

.hero-image img {
  max-width: 50%;
  height: auto;             /* preserve aspect ratio */
  display: block;
  float: none !important;
  position: static !important;
  object-fit: contain;      /* or remove this line entirely */
}


	

    .section-image {
      margin-top: 0.65rem;
      max-height: 400px;
	  width: 100%;
      border-radius: 0.8rem;
      border: 1px solid var(--border);
      object-fit: cover;
      display: block;

    }

    .hero-card h2 {
      font-size: 0.95rem;
      margin: 0 0 0.55rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
	  text-align: center;
      
    }
	.hero-card h3 {
	  text-align: center;
      font-size: 0.95rem;
      margin: 0 0 0.55rem;
     
      letter-spacing: 0.16em;
      
    }

    .hero-card p {
      font-size: 0.86rem;
      margin: 0 0 0.7rem;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-bottom: 0.75rem;
    }

    .badge {
      font-size: 1.00rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      color: var(--accent);
      background: rgba(15,23,42,0.98);
	  text-transform: uppercase;
    }

    .badge-strong {
      border-color: rgba(56,189,248,0.7);
      background: rgba(15,23,42,0.98);
      color: var(--accent);
	  font-size: 1.0rem;
    }

    .hero-mini {
      font-size: 0.8rem;
    }

    /* Sections */

    .section { margin-top: 2.4rem; }

    .section h2 {
      font-size: 1.15rem;
      margin-bottom: 0.45rem;
    }
	
    section p { font-size: 1.0rem; }
	
	section h1 span { color: var(--accent); }
	
	section h2 span { color: var(--accent); }
	
	section h3 span { color: var(--accent); }
	
	section p span { color: var(--accent); }

    .section-intro {
      font-size: 0.92rem;
      max-width: 44rem;
      margin-bottom: 0.8rem;
    }
	
	.section-intro span { color: var(--accent); }

    .two-col {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 1.7rem;
      align-items: flex-start;
    }
	
	.three-column {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
	
	}

/* Responsive breakpoints – tweak to match your existing two-row CSS */
@media (max-width: 900px) {
  .three-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .three-column {
    grid-template-columns: 1fr;
  }
}


    .card {
      background: rgba(15,23,42,0.94);
      border-radius: 1rem;
      border: 1px solid var(--border);
      padding: 1rem 1.15rem;
    }

    ul {
      padding-left: 1.1rem;
      margin: 0.3rem 0 0.5rem;
    }

    li {
      margin-bottom: 0.35rem;
      font-size: 1.0rem;
    }
	
	li span { color: var(--accent); }
	

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 0.6rem;
      margin-bottom: 0.4rem;
    }

    .pill {
      font-size: 0.78rem;
      padding: 0.25rem 0.65rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(15,23,42,0.85);
    }

    .pill-strong {
      border-color: rgba(56,189,248,0.7);
      color: var(--accent);
      background: rgba(15,23,42,0.96);
	  text-transform: uppercase;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 0.75rem;
      font-size: 0.86rem;
    }

    th, td {
      padding: 0.5rem 0.6rem;
      border: 1px solid var(--border);
      text-align: left;
    }

    th {
      background: rgba(15,23,42,0.95);
      font-weight: 600;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* Steps */

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
      font-size: 0.87rem;
    }

    .step-num {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.0rem;
      font-weight: 600;
      color: var(--accent);
      background: var(--accent-soft);
      margin-bottom: 0.25rem;
    }

    .step-title {
      font-weight: 600;
      margin-bottom: 0.1rem;
      font-size: 0.9rem;
    }

    .step-body {
      font-size: 0.82rem;
    }

    /* Categories grid */

    .grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.5rem;
      font-size: 1.00rem;
	  text-align: center;
      margin-top: 0.45rem;
    }

    .grid-pill {
      padding: 0.35rem 0.55rem;
      border-radius: 0.7rem;
      border: 1px dashed var(--border);
      background: rgba(15,23,42,0.9);
     
    }

    /* Form / contact */

    .form-wrapper {
      margin-top: 2.1rem;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
      gap: 1.7rem;
      align-items: flex-start;
    }

    form {
      background: rgba(15,23,42,0.97);
      border-radius: 1rem;
      padding: 1.25rem 1.25rem 1.35rem;
      border: 1px solid rgba(55,65,81,0.95);
      box-shadow: 0 22px 70px rgba(15,23,42,0.97);
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .field {
      margin-bottom: 0.8rem;
      flex: 1 1 140px;
    }

    .field-full { flex: 1 1 100%; }

    label {
      display: block;
      font-size: 1.0rem;
      margin-bottom: 0.25rem;
      color: #fff;
    }

    input[type="text"],
    input[type="email"],
    textarea,
    select {
      width: 100%;
      padding: 0.54rem 0.6rem;
      border-radius: 0.6rem;
      border: 1px solid #374151;
      background: #020617;
      color: var(--text);
      font-size: 0.86rem;
      font-family: inherit;
    }

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

    input::placeholder,
    textarea::placeholder {
    }

    .radio-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      font-size: 0.8rem;
      margin-top: 0.2rem;
    }

    .radio-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.24rem 0.65rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      cursor: pointer;
      background: rgba(15,23,42,0.9);
    }

    .radio-pill input { accent-color: var(--accent); }

    .helper {
      font-size: 0.75rem;
      margin-top: 0.2rem;
    }

    .form-footer {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem;
      margin-top: 0.75rem;
    }

    .form-note {
      font-size: 0.76rem;
    }

    .contact-side {
      font-size: 0.9rem;
    }

    .contact-side h3 {
      font-size: 1rem;
      margin-top: 0;
      margin-bottom: 0.45rem;
      color: var(--text);
    }

    .contact-highlight {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 1rem;
      margin-bottom: 0.6rem;
    }

    .contact-phone-main {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      margin: 0.15rem 0 0.15rem;
    }

    .contact-small {
      font-size: 0.8rem;
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 1.1rem 1.25rem 1.4rem;
      font-size: 0.78rem;
      color: var(--muted);
      text-align: center;
      background: #020617;
    }

    @media (max-width: 920px) {
      .hero { grid-template-columns: minmax(0, 1fr); }
      .hero-card { order: -1; }
      .two-col { grid-template-columns: minmax(0, 1fr); }
      .steps { grid-template-columns: minmax(0, 1fr); }
      .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .form-wrapper { grid-template-columns: minmax(0, 1fr); }
      .nav-phone { display: none; }
    }

    @media (max-width: 640px) {
      main { padding-inline: 1rem; }
      .nav-inner { padding-inline: 1rem; }
      .hero { padding-top: 1.6rem; }
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .btn,
      .btn-outline {
        width: 100%;
        justify-content: center;
      }
      .grid { grid-template-columns: minmax(0, 1fr); }
    }
	
	#scrollToTopBtn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: #4a90e2;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
  z-index: 999;
}

/* Show button when active */
#scrollToTopBtn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover state */
#scrollToTopBtn:hover {
  background-color: #357acb;
}
	
  </sty