 :root {
      --blue-bg: #0b1b3a;
      --blue-accent: #1f3c88;
      --text-light: #ffffff;
      --text-muted: #d0d7f2;
      --accent: #ffb347;
    }

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

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

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

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    header {
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0)
      );
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
    }

    .nav {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo {
      font-weight: 700;
      letter-spacing: 0.06em;
      font-size: 0.95rem;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-mark {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #ffffff, #ffb347);
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
      display: inline-block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      font-size: 0.9rem;
    }

    .nav-links a {
      opacity: 0.85;
    }

    .nav-links a:hover {
      opacity: 1;
    }

    .nav-cta {
      padding: 0.55rem 1rem;
      border-radius: 999px;
      background: var(--accent);
      color: #1a1205;
      font-weight: 600;
      font-size: 0.9rem;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }

    main {
      flex: 1;
    }

    .section {
      padding: 3rem 1.5rem;
    }

    .section-inner {
      max-width: 1120px;
      margin: 0 auto;
    }

    /* Hero */

    .hero {
      padding-top: 3rem;
      padding-bottom: 3.5rem;
      background: radial-gradient(circle at top, #1f3c88 0, #0b1b3a 48%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 3rem;
      align-items: center;
    }

    .eyebrow {
      font-size: 0.8rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      font-weight: 600;
      margin-bottom: 0.85rem;
    }

    .hero-title {
      font-size: clamp(2.2rem, 4vw, 3rem);
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .hero-highlight {
      color: var(--accent);
    }

    .hero-subtitle {
      color: var(--text-muted);
      max-width: 34rem;
      font-size: 0.98rem;
      margin-bottom: 1.75rem;
    }
    .main-subtitle {
      font-size: 1.4rem;
      margin-bottom: 1.75rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      margin-bottom: 2rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .hero-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.8rem;
      border-radius: 999px;
      background: rgba(6, 15, 37, 0.85);
      border: 1px solid rgba(112, 141, 255, 0.35);
    }

    .hero-meta-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #12d18e;
      box-shadow: 0 0 0 3px rgba(18, 209, 142, 0.25);
    }

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

    .btn-primary {
      padding: 0.9rem 1.5rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      background: var(--accent);
      color: #1a1205;
      font-weight: 600;
      font-size: 0.95rem;
      box-shadow: 0 18px 32px rgba(0, 0, 0, 0.55);
    }

    .btn-outline {
      padding: 0.9rem 1.4rem;
      border-radius: 999px;
      border: 1px solid rgba(200, 210, 255, 0.6);
      background: transparent;
      color: var(--text-light);
      font-weight: 500;
      font-size: 0.9rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .btn-outline span {
      font-size: 1.1rem;
      line-height: 1;
    }

    .hero-right {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .hero-card {
      border-radius: 1.5rem;
      border: 1px solid rgba(158, 179, 255, 0.35);
      background: radial-gradient(
          circle at top left,
          rgba(255, 255, 255, 0.08),
          transparent 70%
        ),
        rgba(2, 10, 29, 0.96);
      padding: 1.5rem 1.4rem;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
    }

    .hero-card-title {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.75rem;
      color: var(--text-muted);
    }

    .hero-card-main {
      font-size: 1.05rem;
      margin-bottom: 1rem;
    }

    .hero-card-list {
      list-style: none;
      display: grid;
      gap: 0.4rem;
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }

    .hero-card-list li::before {
      content: "•";
      color: var(--accent);
      margin-right: 0.4rem;
    }

    .hero-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .hero-badge {
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(102, 134, 255, 0.5);
      background: rgba(8, 22, 69, 0.9);
    }

    /* Services */

    .section-header{
      text-align: center;
      max-width: 640px;
      margin: 0 auto 2.75rem;
      color: white;
      margin-bottom: 0.6rem;
    }

    .section-kicker {
      font-size: 0.78rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }

    .section-title {
      font-size: 2rem;
      margin-bottom: 0.6rem;
      color: white;
    }

    .section-subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
    }

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

    .service-card {
      padding: 1.4rem 1.25rem;
      border-radius: 1.25rem;
      border: 1px solid rgba(121, 148, 255, 0.4);
      background: rgba(5, 16, 46, 0.96);
      box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6);
    }

    .service-label {
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
      color: var(--text-muted);
    }

    .service-name {
      font-size: 1.05rem;
      margin-bottom: 0.5rem;
    }

    .service-body {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 0.9rem;
    }

    .service-meta {
      font-size: 0.85rem;
      color: rgba(225, 232, 255, 0.95);
    }

    /* Why us */

    .why {
      background: radial-gradient(circle at center, #172856, #050c20 55%);
    }

    .why-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: center;
    }

    .why-list {
      list-style: none;
      display: grid;
      gap: 1rem;
      font-size: 0.95rem;
    }

    .why-item {
      display: flex;
      gap: 0.75rem;
    }

    .why-icon {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      border: 1px solid rgba(120, 195, 255, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      color: var(--accent);
      margin-top: 0.1rem;
    }

    .why-text-strong {
      display: block;
      font-weight: 600;
    }

    .stat-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .stat-card {
      padding: 1rem;
      border-radius: 1rem;
      border: 1px solid rgba(134, 172, 255, 0.5);
      background: rgba(3, 13, 40, 0.95);
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .stat-number {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 0.25rem;
    }

    /* CTA */

    .cta {
      padding-bottom: 3.5rem;
    }

    .cta-inner {
      border-radius: 1.5rem;
      padding: 1.8rem 1.6rem;
      border: 1px solid rgba(156, 182, 255, 0.6);
      background: radial-gradient(circle at top left, #1f3c88, #050c20 60%);
      box-shadow: 0 22px 55px rgba(0, 0, 0, 0.8);
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 1.75rem;
      align-items: center;
    }

    .cta-title {
      font-size: 1.4rem;
      margin-bottom: 0.4rem;
      color: #ffffff;
      font-color: #ffffff;
    }

    .cta-subtitle {
      font-size: 0.98rem;
      color: var(--text-muted);
    }

    .cta-meta {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 0.6rem;
    }

    .cta-form {
      display: grid;
      gap: 0.65rem;
    }

    .field-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.6rem;
    }

    label {
      font-size: 0.8rem;
      margin-bottom: 0.15rem;
      display: block;
    }

    input,
    textarea {
      width: 100%;
      padding: 0.6rem 0.7rem;
      border-radius: 0.7rem;
      border: 1px solid rgba(180, 199, 255, 0.65);
      background: rgba(4, 12, 35, 0.96);
      color: var(--text-light);
      font-size: 0.9rem;
      outline: none;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(186, 199, 244, 0.7);
    }

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

    .cta-note {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    footer {
      padding: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }

    .footer-contact {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
    }

    /* Responsive */

    @media (max-width: 900px) {
      .hero-grid,
      .why-grid,
      .cta-inner {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        padding-top: 2rem;
      }

      .hero-right {
        order: -1;
      }

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

    @media (max-width: 640px) {
      header {
        padding-inline: 1.1rem;
      }

      .section {
        padding-inline: 1.1rem;
      }

      .hero {
        padding-inline: 1.1rem;
      }

      .nav-links {
        display: none;
      }

      .hero-grid {
        gap: 2.25rem;
      }
      
      .my-Article {
            display: flex;
      flex-wrap: wrap;
      gap: 1.6rem;
      margin-bottom: 2rem;
      font-size: 0.85rem;
      line-height: 1.6;
      }
      
      
      .myh2 {
          color:white;
          font-size: 70px;
          margin-bottom:20px;
          margin-top:50px;
      }
      
      .myh3 {
          color:white;
          font-size: 50px;
          margin-bottom:50px;
          margin-top:50px;
      }

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

      .cta-inner {
        padding: 1.4rem 1.2rem;
      }

      .field-row {
        grid-template-columns: minmax(0, 1fr);
      }
    }