*, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #0a0e27;
      color: #ffffff;
      overflow-x: hidden;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 16px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(10, 14, 39, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #f97316, #fb923c);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
      color: #fff;
    }

    .nav-logo-text {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.02em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #f97316;
    }

    .nav-cta {
      padding: 10px 24px;
      background: linear-gradient(135deg, #f97316, #ea580c);
      color: #fff !important;
      border-radius: 8px;
      font-weight: 600 !important;
      transition: transform 0.3s, box-shadow 0.3s !important;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
      color: #fff !important;
    }

    /* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 60px 60px;
      overflow: hidden;
      background: linear-gradient(160deg, #0a0e27 0%, #111640 40%, #0f1535 70%, #0a0e27 100%);
    }

    /* Background decorative elements */
    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
      width: 100%;
    }

    /* ===== LEFT CONTENT ===== */
    .hero-content {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: rgba(249, 115, 22, 0.1);
      border: 1px solid rgba(249, 115, 22, 0.25);
      border-radius: 50px;
      width: fit-content;
      font-size: 13px;
      font-weight: 500;
      color: #fb923c;
      animation: fadeInUp 0.8s ease forwards;
    }

    .hero-badge i {
      font-size: 12px;
    }

    .hero-title {
      font-size: 52px;
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.03em;
      color: #ffffff;
      animation: fadeInUp 0.8s 0.1s ease both;
    }

    .hero-title .highlight {
      background: linear-gradient(135deg, #f97316, #fbbf24);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: 16px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.55);
      font-weight: 400;
      max-width: 520px;
      animation: fadeInUp 0.8s 0.2s ease both;
    }

    .hero-subtitle strong {
      color: rgba(255, 255, 255, 0.85);
      font-weight: 600;
    }

    .hero-experience {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.7);
      animation: fadeInUp 0.8s 0.3s ease both;
    }

    .hero-experience .exp-line {
      width: 30px;
      height: 2px;
      background: linear-gradient(90deg, #f97316, transparent);
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 8px;
      animation: fadeInUp 0.8s 0.4s ease both;
    }

    .btn-explore {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 36px;
      background: linear-gradient(135deg, #f97316, #ea580c);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    }

    .btn-explore:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 35px rgba(249, 115, 22, 0.45);
    }

    .btn-explore i {
      transition: transform 0.3s;
    }

    .btn-explore:hover i {
      transform: translateX(4px);
    }

    .hero-phone {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 15px;
      font-weight: 500;
    }

    .hero-phone a {
      color: #ffffff;
      text-decoration: none;
      font-weight: 700;
      font-size: 20px;
      letter-spacing: 0.04em;
      transition: color 0.3s;
    }

    .hero-phone a:hover {
      color: #f97316;
    }

    .hero-phone i {
      color: #f97316;
      font-size: 20px;
      animation: ring 2s ease-in-out infinite;
    }

    /* ===== RIGHT CONTENT ===== */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeInRight 1s 0.3s ease both;
    }

    .hero-image-wrapper {
      position: relative;
      width: 100%;
      max-width: 520px;
    }

    .hero-image {
      width: 100%;
      border-radius: 24px;
      display: block;
      position: relative;
      z-index: 2;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    }

    .hero-image-glow {
      position: absolute;
      inset: 20px;
      background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(59, 130, 246, 0.1));
      border-radius: 30px;
      filter: blur(40px);
      z-index: 1;
    }

    /* Stat cards */
    .stat-card {
      position: absolute;
      z-index: 10;
      background: rgba(15, 20, 50, 0.9);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 18px 24px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
      animation: float 4s ease-in-out infinite;
    }

    .stat-card-placements {
      top: 30px;
      right: -30px;
      animation-delay: 0s;
    }

    .stat-card-tech {
      bottom: 40px;
      left: -30px;
      animation-delay: 1.5s;
    }

    .stat-card-label {
      font-size: 12px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 4px;
    }

    .stat-card-value {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .stat-card-value .stat-num {
      background: linear-gradient(135deg, #f97316, #fbbf24);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-card-value .stat-suffix {
      color: rgba(255, 255, 255, 0.6);
      font-size: 20px;
      font-weight: 600;
    }

    .stat-icon {
      position: absolute;
      top: -10px;
      right: -10px;
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, #f97316, #ea580c);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: #fff;
      box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(40px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes ring {
      0%, 100% {
        transform: rotate(0);
      }
      10% {
        transform: rotate(15deg);
      }
      20% {
        transform: rotate(-13deg);
      }
      30% {
        transform: rotate(10deg);
      }
      40% {
        transform: rotate(-8deg);
      }
      50% {
        transform: rotate(0);
      }
    }

    /* ===== PARTICLE DOTS ===== */
    .particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }

    .particle {
      position: absolute;
      width: 3px;
      height: 3px;
      background: rgba(249, 115, 22, 0.3);
      border-radius: 50%;
      animation: particleFloat 8s linear infinite;
    }

    @keyframes particleFloat {
      0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
      }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .navbar {
        padding: 14px 30px;
      }

      .nav-links {
        gap: 20px;
      }

      .hero {
        padding: 110px 30px 50px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
      }

      .hero-content {
        align-items: center;
      }

      .hero-subtitle {
        max-width: 600px;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-experience {
        justify-content: center;
      }

      .hero-visual {
        order: -1;
      }

      .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
      }

      .stat-card-placements {
        right: -10px;
        top: 20px;
      }

      .stat-card-tech {
        left: -10px;
        bottom: 20px;
      }
    }

    @media (max-width: 640px) {
      .navbar {
        padding: 12px 20px;
      }

      .nav-links {
        display: none;
      }

      .hero {
        padding: 100px 20px 40px;
        min-height: auto;
      }

      .hero-title {
        font-size: 32px;
      }

      .hero-subtitle {
        font-size: 14px;
      }

      .hero-actions {
        flex-direction: column;
        gap: 16px;
      }

      .btn-explore {
        width: 100%;
        justify-content: center;
      }

      .hero-image-wrapper {
        max-width: 320px;
      }

      .stat-card {
        padding: 12px 16px;
      }

      .stat-card-value {
        font-size: 24px;
      }

      .stat-card-placements {
        right: 0;
        top: 10px;
      }

      .stat-card-tech {
        left: 0;
        bottom: 10px;
      }
    }
    