    :root {
      --heading-font: 'Orbitron', sans-serif;
      --body-font: 'Poppins', sans-serif;
      --gradient-primary: linear-gradient(135deg, #00c6ff, #0072ff);
      --text-color: #ffffff;
      --bg-color: #0b0c10;
    }

    body {
      margin: 0;
      padding: 0;
      background: var(--bg-color);
      color: var(--text-color);
      font-family: var(--body-font);
      overflow-x: hidden;
    }

    h1, h2, h3 {
      font-family: var(--heading-font);
      letter-spacing: 1px;
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient-primary);
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-left h1 {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .hero-left p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .cta-btn {
      background: linear-gradient(135deg, #8e2de2, #4a00e0);
      border: none;
      color: white;
      font-size: 1rem;
      font-weight: 600;
      padding: 0.9rem 2rem;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .cta-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(142, 45, 226, 0.5);
    }

    /* Circles */
    .circle {
      position: relative;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .outer { width: 12rem; height: 12rem; border: 2px solid rgba(255,255,255,0.4); }
    .middle { width: 9rem; height: 9rem; border: 2px solid rgba(255,255,255,0.6); }
    .inner { width: 6rem; height: 6rem; border: 2px solid rgba(255,255,255,0.8); }

    .employee {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      position: absolute;
      border: 3px solid white;
      box-shadow: 0 0 15px rgba(255,255,255,0.3);
    }

    @media (min-width: 768px) {
      .hero-left h1 { font-size: 3rem; }
      .hero-left p { font-size: 1.2rem; }
      .outer { width: 15rem; height: 15rem; }
      .middle { width: 11rem; height: 11rem; }
      .inner { width: 7rem; height: 7rem; }
      .employee { width: 60px; height: 60px; }
    }

    @media (min-width: 1200px) {
      .hero-left h1 { font-size: 3.5rem; }
      .hero-left p { font-size: 1.3rem; }
      .outer { width: 20rem; height: 20rem; }
      .middle { width: 14rem; height: 14rem; }
      .inner { width: 9rem; height: 9rem; }
      .employee { width: 70px; height: 70px; }
    }

