﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:    #050e1f;
      --deep:    #091428;
      --mid:     #0d2040;
      --accent:  #00c8ff;
      --gold:    #f0a500;
      --white:   #eef4ff;
      --muted:   #8fa8c8;
      --card:    rgba(13,32,64,0.75);
      --border:  rgba(0,200,255,0.15);
      --radius:  14px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── NOISE GRAIN OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999; opacity: 0.35;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

    /* ══════════════════════════════
       NAV
    ══════════════════════════════ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.1rem 5%;
      background: rgba(5,14,31,0.82);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      display: flex; align-items: center; gap: 0.65rem;
      font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.35rem;
      letter-spacing: -0.02em; color: var(--white); text-decoration: none;
    }
    .logo svg { filter: drop-shadow(0 0 8px rgba(0,200,255,0.5)); transition: filter 0.3s; }
    .logo:hover svg { filter: drop-shadow(0 0 14px rgba(0,200,255,0.8)); }
    .logo span { color: var(--accent); }

    nav ul { list-style: none; display: flex; gap: 2.2rem; }
    nav ul a {
      text-decoration: none; color: var(--muted); font-size: 0.88rem;
      font-weight: 500; letter-spacing: 0.03em; transition: color 0.2s;
    }
    nav ul a:hover { color: var(--accent); }

    .nav-cta {
      background: linear-gradient(135deg, var(--accent), #006fff);
      color: #fff !important; padding: 0.52rem 1.3rem; border-radius: 8px;
      font-weight: 600 !important; transition: opacity 0.2s !important;
    }
    .nav-cta:hover { opacity: 0.85; color: #fff !important; }

    /* ══════════════════════════════
       HERO
    ══════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 9rem 5% 5rem;
      position: relative; overflow: hidden;
    }

    /* animated grid lines */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridDrift 20s linear infinite;
    }
    @keyframes gridDrift {
      from { background-position: 0 0; }
      to   { background-position: 60px 60px; }
    }

    /* glowing orbs */
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(80px); pointer-events: none;
    }
    .orb1 { width: 520px; height: 520px; top: -120px; right: -80px;
             background: rgba(0,100,255,0.18); animation: pulse1 8s ease-in-out infinite; }
    .orb2 { width: 360px; height: 360px; bottom: 0; left: -60px;
             background: rgba(0,200,255,0.12); animation: pulse2 10s ease-in-out infinite; }
    .orb3 { width: 240px; height: 240px; top: 40%; left: 38%;
             background: rgba(240,165,0,0.08); animation: pulse1 12s ease-in-out infinite; }

    @keyframes pulse1 { 0%,100%{transform:scale(1);opacity:0.9} 50%{transform:scale(1.15);opacity:1} }
    @keyframes pulse2 { 0%,100%{transform:scale(1);opacity:0.7} 50%{transform:scale(1.2);opacity:1} }

    .hero-content { position: relative; z-index: 2; max-width: 680px; }

    .badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(0,200,255,0.1); border: 1px solid var(--border);
      border-radius: 999px; padding: 0.35rem 1rem;
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
      color: var(--accent); margin-bottom: 1.6rem;
      animation: fadeUp 0.6s ease both;
    }
    .badge-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
                 animation: blink 1.4s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

    h1 {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      line-height: 1.08; letter-spacing: -0.03em;
      animation: fadeUp 0.7s 0.1s ease both;
    }
    h1 .accent { color: var(--accent); }
    h1 .gold   { color: var(--gold); }

    .hero-sub {
      margin-top: 1.4rem; font-size: 1.08rem; line-height: 1.7;
      color: var(--muted); max-width: 540px;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .hero-btns {
      display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap;
      animation: fadeUp 0.7s 0.3s ease both;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--accent) 0%, #0064ff 100%);
      color: #fff; text-decoration: none;
      padding: 0.85rem 2rem; border-radius: 10px; font-weight: 600;
      font-size: 0.95rem; transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 0 28px rgba(0,200,255,0.3);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,200,255,0.45); }

    .btn-secondary {
      border: 1px solid var(--border); color: var(--white);
      text-decoration: none; padding: 0.85rem 2rem; border-radius: 10px;
      font-weight: 500; font-size: 0.95rem; transition: border-color 0.2s, background 0.2s;
      background: rgba(255,255,255,0.04);
    }
    .btn-secondary:hover { border-color: var(--accent); background: rgba(0,200,255,0.08); }

    .hero-stats {
      display: flex; gap: 2.5rem; margin-top: 3.2rem; flex-wrap: wrap;
      animation: fadeUp 0.7s 0.4s ease both;
    }
    .stat-num {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: 2rem; color: var(--accent); line-height: 1;
    }
    .stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; letter-spacing: 0.04em; }

    @keyframes fadeUp {
      from { opacity:0; transform: translateY(22px); }
      to   { opacity:1; transform: translateY(0); }
    }

    /* ══════════════════════════════
       SECTION COMMONS
    ══════════════════════════════ */
    section { padding: 5.5rem 5%; }

    .section-label {
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
      color: var(--accent); text-transform: uppercase; margin-bottom: 0.8rem;
    }
    .section-title {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: clamp(1.8rem, 3.5vw, 2.7rem);
      line-height: 1.12; letter-spacing: -0.025em;
    }
    .section-sub {
      color: var(--muted); font-size: 1rem; line-height: 1.7;
      max-width: 560px; margin-top: 0.8rem;
    }
    .section-head { margin-bottom: 3.2rem; }

    /* ══════════════════════════════
       SERVICES
    ══════════════════════════════ */
    #services { background: var(--deep); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.4rem;
    }

    .svc-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius); padding: 2rem;
      position: relative; overflow: hidden;
      transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    }
    .svc-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(0,200,255,0.05) 0%, transparent 60%);
      opacity: 0; transition: opacity 0.3s;
    }
    .svc-card:hover { transform: translateY(-5px); border-color: rgba(0,200,255,0.4);
                      box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
    .svc-card:hover::before { opacity: 1; }

    .svc-icon {
      width: 52px; height: 52px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 1.2rem;
    }
    .icon-blue   { background: rgba(0,100,255,0.18); }
    .icon-cyan   { background: rgba(0,200,255,0.15); }
    .icon-gold   { background: rgba(240,165,0,0.15); }
    .icon-teal   { background: rgba(0,220,180,0.15); }
    .icon-purple { background: rgba(140,80,255,0.18); }
    .icon-green  { background: rgba(0,220,100,0.15); }

    .svc-card h3 {
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 1.1rem; margin-bottom: 0.7rem;
    }
    .svc-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

    .svc-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.1rem; }
    .tag {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
      background: rgba(0,200,255,0.08); border: 1px solid rgba(0,200,255,0.18);
      color: var(--accent); border-radius: 99px; padding: 0.2rem 0.7rem;
    }

    /* featured card spans 2 cols */
    .svc-card.featured {
      grid-column: span 2;
      background: linear-gradient(135deg, rgba(0,50,120,0.6) 0%, rgba(13,32,64,0.9) 100%);
      border-color: rgba(0,200,255,0.3);
      display: flex; gap: 2rem; align-items: flex-start;
    }
    @media(max-width:700px) { .svc-card.featured { grid-column: span 1; flex-direction: column; } }
    .featured-badge {
      display: inline-block; background: var(--gold); color: var(--navy);
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
      border-radius: 6px; padding: 0.15rem 0.55rem; margin-bottom: 0.6rem;
    }

    /* ══════════════════════════════
       AWS SECTION
    ══════════════════════════════ */
    #aws {
      background: var(--navy);
      position: relative; overflow: hidden;
    }
    #aws::before {
      content: 'AWS';
      position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
      font-family: 'Syne', sans-serif; font-size: 22rem; font-weight: 800;
      color: rgba(240,165,0,0.04); line-height: 1; pointer-events: none;
      letter-spacing: -0.06em;
    }

    .aws-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }
    @media(max-width:820px) { .aws-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

    .cert-badge {
      background: linear-gradient(135deg, rgba(240,165,0,0.12) 0%, rgba(240,100,0,0.08) 100%);
      border: 1px solid rgba(240,165,0,0.3);
      border-radius: 16px; padding: 2.2rem;
      display: flex; align-items: center; gap: 1.4rem;
      margin-bottom: 1.5rem;
    }
    .cert-icon {
      flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    }
    .cert-text h4 {
      font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem;
      color: var(--gold); margin-bottom: 0.3rem;
    }
    .cert-text p { color: var(--muted); font-size: 0.85rem; line-height: 1.55; }

    .aws-features { display: flex; flex-direction: column; gap: 0.9rem; }
    .aws-feat {
      display: flex; align-items: flex-start; gap: 0.9rem;
      background: var(--card); border: 1px solid var(--border);
      border-radius: 10px; padding: 1rem 1.2rem;
      transition: border-color 0.2s;
    }
    .aws-feat:hover { border-color: rgba(240,165,0,0.3); }
    .feat-check { color: var(--gold); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
    .feat-body h5 { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.2rem; }
    .feat-body p  { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

    /* ══════════════════════════════
       WHY US
    ══════════════════════════════ */
    #why { background: var(--deep); }

    .why-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem;
    }
    .why-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 1.8rem 1.5rem;
      text-align: center;
      transition: transform 0.22s, box-shadow 0.22s;
    }
    .why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.35); }
    .why-num {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: 2.4rem; color: var(--accent); line-height: 1; margin-bottom: 0.5rem;
    }
    .why-card h4 { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.4rem; }
    .why-card p { color: var(--muted); font-size: 0.83rem; line-height: 1.6; }

    /* ══════════════════════════════
       PROCESS
    ══════════════════════════════ */
    #process { background: var(--navy); }

    .process-steps {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 0;
      position: relative;
    }
    .process-steps::before {
      content: ''; position: absolute; top: 32px; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
    }
    @media(max-width:600px) { .process-steps::before { display: none; } }

    .step {
      padding: 0 1.5rem 0 0; position: relative;
    }
    .step-num {
      width: 64px; height: 64px; border-radius: 50%;
      background: var(--mid); border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem;
      color: var(--accent); margin-bottom: 1.2rem; position: relative; z-index: 1;
      transition: background 0.2s, border-color 0.2s;
    }
    .step:hover .step-num { background: rgba(0,200,255,0.15); border-color: var(--accent); }
    .step h4 { font-weight: 700; font-size: 0.97rem; margin-bottom: 0.4rem; }
    .step p  { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

    /* ══════════════════════════════
       CONTACT
    ══════════════════════════════ */
    #contact { background: var(--deep); }

    .contact-wrap {
      display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
    }
    @media(max-width:820px) { .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; } }

    .contact-info p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.8rem; }
    .contact-item {
      display: flex; align-items: center; gap: 0.9rem;
      margin-bottom: 1rem; color: var(--muted); font-size: 0.9rem;
    }
    .contact-item span:first-child { font-size: 1.2rem; }
    .contact-item a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .contact-item a:hover { color: var(--accent); }

    form { display: flex; flex-direction: column; gap: 1rem; }
    label { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 0.3rem; display: block; }

    input, textarea, select {
      width: 100%;
      background: rgba(13,32,64,0.8);
      border: 1px solid var(--border);
      border-radius: 8px; padding: 0.8rem 1rem;
      color: var(--white); font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem; outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    input:focus, textarea:focus, select:focus {
      border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,200,255,0.12);
    }
    textarea { resize: vertical; min-height: 130px; }
    select option { background: var(--deep); }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    @media(max-width:500px) { .form-row { grid-template-columns: 1fr; } }

    .submit-btn {
      background: linear-gradient(135deg, var(--accent), #006fff);
      border: none; color: #fff; padding: 0.9rem 2rem;
      border-radius: 10px; font-weight: 600; font-size: 1rem;
      cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 0 24px rgba(0,200,255,0.25);
      font-family: 'DM Sans', sans-serif;
    }
    .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 0 38px rgba(0,200,255,0.4); }

    /* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
    footer {
      background: var(--navy);
      border-top: 1px solid var(--border);
      padding: 2.5rem 5%;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    }
    .footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; }
    .footer-logo span { color: var(--accent); }
    footer p { font-size: 0.8rem; color: var(--muted); }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--accent); }

    @media(max-width:820px) {
      #about > div > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
    }

    /* ══════════════════════════════
       MOBILE NAV TOGGLE
    ══════════════════════════════ */
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .nav-toggle span {
      display: block; width: 22px; height: 2px; background: var(--white);
      margin: 5px 0; border-radius: 2px; transition: 0.3s;
    }
    @media(max-width:750px) {
      .nav-toggle { display: block; }
      nav ul {
        position: fixed; top: 62px; left: 0; right: 0;
        background: rgba(5,14,31,0.97); backdrop-filter: blur(20px);
        flex-direction: column; align-items: center; padding: 2rem;
        gap: 1.5rem; display: none;
      }
      nav ul.open { display: flex; }
    }

.email-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.email-link:hover {
  color: var(--accent);
}

.aws-cert-logo {
  display: block;
  width: 100px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(255, 153, 0, 0.35));
}

.cert-icon {
  flex-shrink: 0;
  width: 100px;
  min-height: 110px;
}
/* Moved from former inline style attributes. */
.u-style-1 {
  gap:0.5rem;
}

.u-style-2 {
  object-fit:contain;
  filter:drop-shadow(0 0 8px rgba(0,200,255,0.5));
  flex-shrink:0;
}

.u-style-3 {
  margin-bottom:1.6rem;
  animation:fadeUp 0.55s 0.05s ease both;
}

.u-style-4 {
  object-fit:contain;
  filter:drop-shadow(0 0 24px rgba(0,180,255,0.55));
  display:block;
}

.u-style-5 {
  background:var(--navy);
  padding:5.5rem 5%;
  position:relative;
  overflow:hidden;
}

.u-style-6 {
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(0,200,255,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(0,200,255,0.03) 1px,transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}

.u-style-7 {
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:5rem;
  align-items:center;
  position:relative;
  z-index:1;
}

.u-style-8 {
  margin-bottom:1.4rem;
}

.u-style-9 {
  display:flex;
  gap:2rem;
  flex-wrap:wrap;
  margin-bottom:2rem;
}

.u-style-10 {
  border-left:3px solid var(--accent);
  padding-left:1rem;
}

.u-style-11 {
  font-family:'Syne',sans-serif;
  font-weight:800;
  font-size:2rem;
  color:var(--accent);
  line-height:1;
}

.u-style-12 {
  font-size:0.78rem;
  color:var(--muted);
  margin-top:0.25rem;
  letter-spacing:0.04em;
}

.u-style-13 {
  border-left:3px solid var(--gold);
  padding-left:1rem;
}

.u-style-14 {
  font-family:'Syne',sans-serif;
  font-weight:800;
  font-size:2rem;
  color:var(--gold);
  line-height:1;
}

.u-style-15 {
  border-left:3px solid rgba(0,220,180,0.8);
  padding-left:1rem;
}

.u-style-16 {
  font-family:'Syne',sans-serif;
  font-weight:800;
  font-size:2rem;
  color:rgba(0,220,180,0.9);
  line-height:1;
}

.u-style-17 {
  border-left:3px solid var(--border);
  padding-left:1.4rem;
  margin:0;
}

.u-style-18 {
  font-size:1.1rem;
  font-style:italic;
  color:var(--muted);
  line-height:1.7;
}

.u-style-19 {
  display:flex;
  flex-direction:column;
  gap:1.2rem;
}

.u-style-20 {
  color:var(--muted);
  font-size:0.97rem;
  line-height:1.8;
}

.u-style-21 {
  color:var(--white);
}

.u-style-22 {
  color:var(--accent);
}

.u-style-23 {
  margin-top:0.6rem;
}

.u-style-24 {
  display:inline-block;
  text-decoration:none;
}

.u-style-25 {
  flex-shrink:0;
}

.u-style-26 {
  width:60px;
  height:60px;
  font-size:1.8rem;
}

.u-style-27 {
  margin-bottom:2rem;
}

.u-style-28 {
  margin-bottom:1rem;
}

.u-style-29 {
  display:flex;
  align-items:center;
  gap:0.6rem;
}

.u-style-30 {
  object-fit:contain;
  filter:drop-shadow(0 0 6px rgba(0,180,255,0.4));
}

.u-style-31 {
  margin-top:0.3rem;
}


.cert-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cert-grid .cert-badge {
  margin-bottom: 0;
}