:root {
      --navy: #07117c;
      --navy-dark: #040957;
      --pink: #f42abc;
      --pink-dark: #d8119f;
      --sky: #69b5f4;
      --sky-soft: #dff0ff;
      --white: #ffffff;
      --text: #17213a;
      --muted: #65708a;
      --line: rgba(7,17,124,.12);
      --shadow: 0 20px 50px rgba(7,17,124,.14);
      --radius: 28px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: #fbfdff;
      line-height: 1.7;
      overflow-x: hidden;
    }

    img {
      width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar {
      background: linear-gradient(90deg, var(--navy), var(--pink));
      color: white;
      padding: 9px 0;
      font-size: 13px;
    }

    .topbar .container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 99;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand img {
      width: 58px;
      height: 58px;
      object-fit: contain;
    }

    .brand-title {
      font-family: 'Montserrat', sans-serif;
      color: var(--navy);
      font-size: 16px;
      font-weight: 900;
      line-height: 1.15;
      text-transform: uppercase;
    }

    .brand-subtitle {
      color: var(--pink);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .7px;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 26px;
      color: var(--navy);
      font-size: 14px;
      font-weight: 700;
    }

    .menu a {
      position: relative;
    }

    .menu a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 3px;
      border-radius: 999px;
      background: var(--pink);
      transition: .25s ease;
    }

    .menu a:hover::after {
      width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 13px 24px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 800;
      transition: .25s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--pink), var(--navy));
      color: white;
      box-shadow: 0 18px 30px rgba(244,42,188,.25);
    }

    .btn-light {
      background: white;
      color: var(--navy);
      box-shadow: var(--shadow);
    }

    .hero {
      padding: 100px 0 80px;
      background:
        radial-gradient(circle at top left, rgba(105,181,244,.18), transparent 30%),
        radial-gradient(circle at top right, rgba(244,42,188,.15), transparent 30%),
        linear-gradient(180deg, #fff, #f4f9ff);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(244,42,188,.10);
      color: var(--pink-dark);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .eyebrow span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--sky);
    }

    h1, h2, h3, h4 {
      font-family: 'Montserrat', sans-serif;
      line-height: 1.12;
      color: var(--navy);
    }

    h1 {
      font-size: clamp(42px, 6vw, 72px);
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    h1 span {
      color: var(--pink);
    }

    .hero p {
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-image {
      position: relative;
      border-radius: 40px;
      overflow: hidden;
      min-height: 520px;
      box-shadow: var(--shadow);
    }

    .hero-image img {
      height: 100%;
      object-fit: cover;
    }

    .hero-badge {
      position: absolute;
      left: 24px;
      bottom: 24px;
      background: rgba(255,255,255,.94);
      border-radius: 24px;
      padding: 20px;
      max-width: 320px;
      border-left: 7px solid var(--pink);
    }

    .hero-badge b {
      display: block;
      font-size: 20px;
      margin-bottom: 6px;
    }

    .hero-badge span {
      color: var(--muted);
      font-size: 14px;
    }

    section {
      padding: 86px 0;
    }

    .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 50px;
    }

    .section-head h2 {
      font-size: clamp(34px, 5vw, 52px);
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .section-head h2 span {
      color: var(--pink);
    }

    .section-head p {
      color: var(--muted);
      font-size: 16px;
    }

    .details-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .detail-card {
      background: white;
      border-radius: 30px;
      padding: 34px;
      border: 1px solid var(--line);
      box-shadow: 0 14px 30px rgba(7,17,124,.06);
    }

    .detail-icon {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--pink), var(--sky));
      color: white;
      font-size: 26px;
      margin-bottom: 20px;
    }

    .detail-card h3 {
      font-size: 24px;
      margin-bottom: 16px;
    }

    .detail-card p {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 14px;
    }

    .detail-card ul {
      padding-left: 20px;
      color: var(--muted);
    }

    .detail-card ul li {
      margin-bottom: 10px;
    }

    .duration-box,
    .certificate-box {
      background: linear-gradient(135deg, var(--navy), var(--pink));
      color: white;
      border-radius: 24px;
      padding: 26px;
      text-align: center;
      margin-bottom: 18px;
    }

    .duration-box b {
      display: block;
      font-size: 34px;
      margin-bottom: 6px;
    }

    .certificate-box {
      font-size: 28px;
      font-weight: 900;
    }

    .competency-group {
      margin-bottom: 24px;
    }

    .competency-group h4 {
      color: var(--pink);
      font-size: 18px;
      margin-bottom: 12px;
    }

    .career-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .career-tags span {
      background: var(--sky-soft);
      color: var(--navy);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
    }

    .cta {
      background:
        radial-gradient(circle at top left, rgba(105,181,244,.25), transparent 26%),
        linear-gradient(135deg, var(--pink), var(--navy));
      color: white;
      text-align: center;
    }

    .cta h2 {
      color: white;
      font-size: clamp(34px, 5vw, 58px);
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .cta p {
      max-width: 700px;
      margin: 0 auto 28px;
      color: rgba(255,255,255,.86);
      font-size: 18px;
    }

    footer {
      background: #030735;
      color: rgba(255,255,255,.72);
      padding: 54px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 40px;
      margin-bottom: 30px;
    }

    footer h3 {
      color: white;
      margin-bottom: 14px;
      font-size: 16px;
      text-transform: uppercase;
    }

    footer a,
    footer p {
      display: block;
      margin-bottom: 10px;
      font-size: 14px;
    }

    .copyright {
      border-top: 1px solid rgba(255,255,255,.10);
      padding-top: 22px;
      text-align: center;
      font-size: 13px;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .details-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .menu {
        display: none;
      }
    }

    @media (max-width: 640px) {
      section {
        padding: 60px 0;
      }

      .hero {
        padding: 70px 0 50px;
      }

      .hero-image {
        min-height: 360px;
      }

      .detail-card {
        padding: 26px;
      }
    }