:root {
  --blue: #14296f;
  --blue-light: #2948b8;
  --green: #55b85a;
  --accent: #1fa86b;
  --dark: #111a33;
  --muted: #000000;
  --light: #f5f7fb;
  --white: #ffffff;
  --border: #e5e9f2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* =========================
   NAVBAR
========================= */

.header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 100;
}

.navbar {
  width: min(1180px, 92%);
  height: 70px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 18px;

  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;

  box-shadow: 0 15px 45px rgba(20, 41, 111, 0.1);
}

.logo {
  width: 190px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;

  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  transition: 0.25s;
}

.nav-links a:hover {
  color: var(--blue-light);
}

.nav-button {
  padding: 12px 17px;
  border-radius: 12px;

  background: var(--accent);
  color: white !important;

  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-button {
  display: none;

  border: 0;
  background: transparent;

  font-size: 24px;
  color: var(--blue);

  cursor: pointer;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 900px;

  padding: 190px 0 110px;

  background:
    radial-gradient(circle at 75% 35%,
      rgba(85, 184, 90, 0.17),
      transparent 25%),
    linear-gradient(145deg, #f8faff, #eef2fb);
}

.hero {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45)),
    url("../image/background-image.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  gap: 70px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 9px 14px;

  background: white;

  border: 1px solid #dce2ef;
  border-radius: 999px;

  color: var(--blue);

  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;

  background: var(--green);
  border-radius: 50%;
}

.hero h1 {
  margin: 25px 0;

  font-size: clamp(50px, 5vw, 80px);
  line-height: 1.02;

  letter-spacing: -0.05em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  max-width: 650px;

  color: black;

  font-size: 17px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 12px;

  margin-top: 30px;

  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 15px 21px;

  border-radius: 13px;

  font-size: 14px;
  font-weight: 700;

  transition: 0.25s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: white;

  box-shadow: 0 15px 30px rgba(31, 168, 107, 0.22);
}

.button-secondary {
  background: white;

  color: var(--blue);

  border: 1px solid var(--border);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-top: 40px;

  color: black;

  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.trust-line {
  width: 50px;
  height: 1px;

  background: #ccd3e1;
}

/* =========================
   DASHBOARD
========================= */

.dashboard {
  background: #101b45;

  padding: 15px;

  border-radius: 30px;

  box-shadow: 0 35px 90px rgba(16, 27, 69, 0.25);

  transform: rotate(1.5deg);
}

.dashboard-bar {
  height: 40px;

  display: flex;
  align-items: center;

  gap: 7px;

  padding: 0 12px;
}

.dashboard-bar span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #6e7896;
}

.dashboard-content {
  min-height: 470px;

  padding: 22px;

  background: #f8faff;

  border-radius: 20px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;

  margin-bottom: 20px;
}

.online {
  padding: 6px 9px;

  border-radius: 999px;

  background: #e9f7ea;
  color: #3f9144;

  font-size: 10px;
  font-weight: 700;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric {
  padding: 14px;

  background: white;

  border: 1px solid var(--border);
  border-radius: 14px;
}

.metric small {
  color: #000;
  font-size: 10px;
}

.metric strong {
  display: block;

  margin-top: 5px;

  color: var(--blue);

  font-size: 19px;
}

.code-window {
  margin-top: 15px;

  padding: 20px;

  border-radius: 15px;

  background: #111b3c;

  color: #dce5ff;

  overflow-x: auto;
}

.code-window pre {
  font: 12px/1.8 monospace;
}

.code-green {
  color: #82d987;
}

.code-blue {
  color: #8da9ff;
}

/* =========================
   COMMON SECTIONS
========================= */

.section {
  padding: 105px 0;
}

.section-heading {
  max-width: 1000px;

  margin-bottom: 50px;
}

.eyebrow {
  color: var(--accent);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 12px 0;

  font-size: clamp(38px, 4.5vw, 58px);

  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-heading h2 span {
  color: var(--blue-light);
}

.section-heading p {
  color: black;

  line-height: 1.8;
}

/* =========================
   SERVICES
========================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 17px;
}

.service-card {
  position: relative;

  min-height: 245px;

  padding: 27px;

  background: white;

  border: 1px solid var(--border);
  border-radius: 22px;

  overflow: hidden;

  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 60px rgba(20, 41, 111, 0.1);
}

.service-number {
  font-size: 12px;
  font-weight: 700;
  color: #000;
}

.service-icon {
  width: 48px;
  height: 48px;

  margin: 18px 0;

  display: grid;
  place-items: center;

  background: #edf1ff;
  color: var(--blue-light);

  border-radius: 14px;

  font-size: 20px;
}

.service-card h3 {
  margin-bottom: 10px;

  font-size: 20px;
}

.service-card p {
  color: black;

  font-size: 13px;
  line-height: 1.7;
  text-align: justify;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-top: 15px;

  color: var(--blue-light);

  font-size: 12px;
  font-weight: 700;
}

/* =========================
   TECHNOLOGY
========================= */

.technology-section {
  background: #0d173d;
  color: white;
}

.technology-section .section-heading p {
  color: #aeb8d7;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 14px;
}

.technology-card {
  padding: 25px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.05);

  border-radius: 17px;

  transition: 0.25s;
}

.technology-card:hover {
  transform: translateY(-5px);

  background: rgba(255, 255, 255, 0.09);
}

.technology-card i {
  margin-bottom: 18px;

  color: #8bdb8e;

  font-size: 28px;
}

.technology-card strong,
.technology-card small {
  display: block;
}

.technology-card strong {
  font-size: 15px;
}

.technology-card small {
  margin-top: 4px;

  color: #8f9abd;

  font-size: 10px;
}

/* =========================
   PROCESS
========================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 16px;
}

.process-card {
  padding: 25px;

  background: white;

  border: 1px solid var(--border);
  border-radius: 20px;
}

.process-card>span {
  color: #dbe2f1;

  font-size: 35px;
  font-weight: 700;
}

.process-card i {
  display: block;

  margin: 25px 0 15px;

  color: var(--accent);

  font-size: 25px;
}

.process-card h3 {
  margin-bottom: 8px;

  font-size: 19px;
}

.process-card p {
  color: black;

  font-size: 13px;
  line-height: 1.7;
}

/* =========================
   COURSE
========================= */

.course-section {
  padding: 110px 0;

  background: linear-gradient(180deg, #f7faf8, #eef6f2);
}

.course-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;

  gap: 70px;

  align-items: start;
}

.course-content h2 {
  margin: 12px 0 18px;

  font-size: clamp(40px, 4.6vw, 60px);

  line-height: 1.05;
  letter-spacing: -0.05em;
}

.course-content h2 span {
  color: var(--blue-light);
}

.course-content>p {
  max-width: 650px;

  color: black;

  line-height: 1.8;
}

.course-points {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 10px;

  margin: 30px 0;
}

.course-points div {
  display: flex;
  align-items: center;

  gap: 10px;

  padding: 14px;

  background: white;

  border: 1px solid var(--border);
  border-radius: 13px;

  font-size: 12px;
  font-weight: 700;
}

.course-points i {
  color: var(--accent);
}

.curriculum {
  padding: 25px;

  background: #10205c;

  color: white;

  border-radius: 22px;
}

.curriculum h3 {
  margin-bottom: 17px;
}

.curriculum-list {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;
}

.curriculum-list span {
  padding: 8px 11px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 999px;

  color: #dce4ff;

  font-size: 10px;
}

/* =========================
   FORM
========================= */

.course-form-card {
  padding: 30px;

  background: white;

  border: 1px solid #dfe7e3;
  border-radius: 26px;

  box-shadow: 0 25px 70px rgba(16, 41, 111, 0.1);
}

.form-badge {
  display: inline-block;

  padding: 7px 10px;

  background: #eaf8f1;

  color: #16764b;

  border-radius: 999px;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.form-header h3 {
  margin: 13px 0 8px;

  font-size: 26px;
}

.form-header p {
  margin-bottom: 22px;

  color: black;

  font-size: 12px;
  line-height: 1.7;
  text-align: justify;
}

#courseForm {
  display: grid;
  gap: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 12px;
}

#courseForm label {
  display: grid;
  gap: 6px;

  color: #34405d;

  font-size: 10px;
  font-weight: 700;
}

#courseForm input,
#courseForm select,
#courseForm textarea {

  padding: 12px;

  border: 1px solid #dfe5ef;
  border-radius: 11px;

  background: #f8fafc;

  color: #17213c;

  font:
    500 12px "Poppins",
    sans-serif;

  outline: none;
}

#courseForm textarea {
  resize: vertical;
  text-align: justify;
}

#courseForm input:focus,
#courseForm select:focus,
#courseForm textarea:focus {
  border-color: var(--accent);

  background: white;

  box-shadow: 0 0 0 4px rgba(31, 168, 107, 0.09);
}

.consent {
  display: flex !important;

  grid-template-columns: none !important;

  align-items: flex-start;

  gap: 8px !important;

  color: var(--muted) !important;

  font-weight: 500 !important;
}

.consent input {
  margin-top: 3px;

  accent-color: var(--accent);
}

.consent span {
  font-size: 10px;
  line-height: 1.5;
}

.form-submit {
  width: 100%;

  border: 0;

  cursor: pointer;
}

.form-status {
  min-height: 18px;

  color: #16764b;

  font-size: 11px;

  text-align: center;
}

/* =========================
   CTA
========================= */

.cta {
  padding: 58px 0;

  background: linear-gradient(135deg, #11205c, #2948b8);

  color: white;
}

.cta-content {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.cta h2 {
  margin: 12px 0;

  max-width: 750px;

  font-size: clamp(40px, 5vw, 62px);

  line-height: 1.05;
}

.cta p {
  color: #c1cbed;
}

.button-light {
  background: white;
  color: var(--blue);

  white-space: nowrap;
}

/* =========================
   FOOTER
========================= */

footer {
  padding: 55px 0 20px;

  background: #090f2c;

  color: #8792b0;
}

/* ================================
   FOOTER
================================ */

.footer {
  background: #071225;
  color: #ffffff;
  padding-top: 40px;
  text-align: justify;
}

.footer h4 {
  color: #ffffff;
}

.footer p {
  color: #d2d8e3;
}

.footer a {
  color: #d2d8e3;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #3fab10;
}

.footer-logo {
  max-width: 250px;
  height: auto;
  display: block;
  margin-bottom: 20px;

  /* Gives the dark logo text a clean background */
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: #aeb7c5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;

  gap: 35px;
}

.footer-logo {
  width: 190px;

  /* filter: brightness(0) invert(1); */

  opacity: 0.95;
}

.footer-grid p {
  max-width: 310px;

  margin-top: 15px;

  font-size: 12px;
  line-height: 1.8;
}

.footer-grid h4 {
  margin-bottom: 14px;

  color: white;

  font-size: 13px;
}

.footer-grid a {
  display: block;

  margin: 9px 0;

  font-size: 12px;
}

.footer-grid a:hover {
  color: white;
}

.copyright {
  margin-top: 40px;
  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  font-size: 10px;

  text-align: center;
}





/* =====================================================
   CREATIVE TECHNOLOGY UNIVERSE
===================================================== */

.technology-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

/* Background glow */

.technology-section::before {
  content: "";
  position: absolute;

  width: 600px;
  height: 600px;

  left: 50%;
  top: 48%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.025) 35%,
      transparent 70%);

  pointer-events: none;
}

/* =====================================================
   TECHNOLOGY UNIVERSE
===================================================== */

.tech-universe {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr) 330px minmax(0, 1fr);

  gap: 45px;

  align-items: center;

  max-width: 1250px;

  margin: 85px auto 0;
}

/* =====================================================
   COLUMNS
===================================================== */

.tech-column {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.tech-column-left {
  align-items: flex-end;
}

.tech-column-right {
  align-items: flex-start;
}

/* =====================================================
   ORBIT CARDS
===================================================== */

.tech-orbit-card {
  position: relative;

  width: 100%;

  max-width: 410px;

  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding: 24px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 22px;

  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025));

  backdrop-filter: blur(15px);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;

  overflow: hidden;
}

/* card shine */

.tech-orbit-card::before {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  top: -70px;
  right: -50px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);

  filter: blur(5px);
}

.tech-orbit-card:hover {
  transform: translateY(-8px);

  border-color: rgba(255, 255, 255, 0.28);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* =====================================================
   LEFT CARD ANGLE
===================================================== */

.tech-column-left .tech-orbit-card:nth-child(1) {
  transform: translateX(-15px);
}

.tech-column-left .tech-orbit-card:nth-child(2) {
  transform: translateX(10px);
}

.tech-column-left .tech-orbit-card:nth-child(3) {
  transform: translateX(-5px);
}

.tech-column-left .tech-orbit-card:hover {
  transform: translateX(0) translateY(-8px);
}

/* RIGHT CARD ANGLE */

.tech-column-right .tech-orbit-card:nth-child(1) {
  transform: translateX(15px);
}

.tech-column-right .tech-orbit-card:nth-child(2) {
  transform: translateX(-10px);
}

.tech-column-right .tech-orbit-card:nth-child(3) {
  transform: translateX(5px);
}

.tech-column-right .tech-orbit-card:hover {
  transform: translateX(0) translateY(-8px);
}

/* =====================================================
   ICON
===================================================== */

.orbit-card-icon {
  width: 52px;

  height: 52px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);
}

.orbit-card-icon i {
  font-size: 23px;

  color: #ffffff;
}

/* =====================================================
   CARD CONTENT
===================================================== */

.orbit-card-content {
  flex: 1;
}

.orbit-card-content>span {
  display: block;

  margin-bottom: 5px;

  color: rgba(255, 255, 255, 0.4);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 1.5px;
}

.orbit-card-content h3 {
  margin: 0 0 8px;

  color: #ffffff;

  font-size: 18px;

  font-weight: 600;
}

.orbit-card-content p {
  margin: 0 0 15px;

  color: rgba(255, 255, 255, 0.6);

  font-size: 12px;

  line-height: 1.7;
}

/* =====================================================
   MINI TAGS
===================================================== */

.tech-mini-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 6px;
}

.tech-mini-tags b {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  padding: 5px 8px;

  border-radius: 6px;

  background: rgba(255, 255, 255, 0.055);

  border: 1px solid rgba(255, 255, 255, 0.07);

  color: rgba(255, 255, 255, 0.65);

  font-size: 9px;

  font-weight: 500;
}

/* =====================================================
   CENTER CORE
===================================================== */

.tech-core {
  position: relative;

  width: 300px;

  height: 300px;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: center;
}

/* =====================================================
   OUTER RINGS
===================================================== */

.tech-ring {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.1);

  animation: techRotate 18s linear infinite;
}

.tech-ring-one {
  width: 280px;

  height: 280px;
}

.tech-ring-two {
  width: 230px;

  height: 230px;

  border-style: dashed;

  animation-direction: reverse;

  animation-duration: 12s;
}

@keyframes techRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* =====================================================
   CORE PARTICLES
===================================================== */

.tech-particle {
  position: absolute;

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: #ffffff;

  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.particle-one {
  top: 20px;

  left: 50%;
}

.particle-two {
  right: 18px;

  top: 50%;
}

.particle-three {
  bottom: 20px;

  left: 50%;
}

.particle-four {
  left: 18px;

  top: 50%;
}

/* =====================================================
   CORE CIRCLE
===================================================== */

.tech-core-circle {
  position: relative;

  z-index: 5;

  width: 170px;

  height: 170px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  border-radius: 50%;

  background: radial-gradient(circle at 35% 30%,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.035) 60%,
      rgba(255, 255, 255, 0.015));

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow:
    0 0 50px rgba(255, 255, 255, 0.06),
    inset 0 0 35px rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(20px);
}

/* core icon */

.core-code-icon {
  width: 34px;

  height: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 5px;

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.1);
}

.core-code-icon i {
  font-size: 15px;

  color: #ffffff;
}

.tech-core-circle small {
  color: rgba(255, 255, 255, 0.45);

  font-size: 8px;

  letter-spacing: 2px;
}

.tech-core-circle strong {
  margin: 3px 0;

  color: #ffffff;

  font-size: 22px;

  line-height: 0.95;

  letter-spacing: 1px;
}

.tech-core-circle>span {
  color: rgba(255, 255, 255, 0.5);

  font-size: 8px;

  letter-spacing: 2px;
}







/* =========================================================
   PREMIUM CANDIDATE JOURNEY
   i2i SPECIALIST TECHNOLOGIES
========================================================= */

.candidate-journey {

  position: relative;

  padding: 110px 0 100px;

  background:
    linear-gradient(180deg,
      #071226 0%,
      #0b1830 30%,
      #f5f8ff 30.1%,
      #f5f8ff 100%),
    url(../image/background-image.webp);


  overflow: hidden;
}


.candidate-journey::before {

  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  top: -350px;
  left: -250px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(18, 62, 171, 0.30) 0%,
      rgba(18, 62, 171, 0) 70%);

  pointer-events: none;
}


.candidate-journey::after {

  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  top: 0;
  right: -250px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(57, 181, 74, 0.12) 0%,
      rgba(57, 181, 74, 0) 70%);

  pointer-events: none;
}


.candidate-journey-container {

  position: relative;

  z-index: 2;

  width: min(1180px, calc(100% - 40px));

  margin: 0 auto;
}



/* =========================================================
   HEADER
========================================================= */

.journey-header {

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 50px;

  margin-bottom: 55px;
}


.journey-header-content {

  max-width: 760px;
}


.journey-eyebrow {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 18px;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 2px;

  color: #66d875;
}


.journey-eyebrow-dot {

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #39b54a;

  box-shadow:
    0 0 0 5px rgba(57, 181, 74, 0.10);
}


.journey-header h2 {

  margin: 0;

  font-size: clamp(36px, 4.5vw, 58px);

  line-height: 1.08;

  letter-spacing: -1.5px;

  font-weight: 800;

  color: #ffffff;
}


.journey-header h2 span {

  display: block;

  color: #4b83ff;
}


.journey-header-content>p {

  max-width: 680px;

  margin: 23px 0 0;

  font-size: 15px;

  line-height: 1.8;

  color: #aebbd0;
}



/* =========================================================
   HEADER BADGE
========================================================= */

.journey-header-badge {

  flex-shrink: 0;

  min-width: 250px;

  padding: 18px;

  display: flex;

  align-items: center;

  gap: 14px;

  border: 1px solid rgba(255, 255, 255, 0.10);

  border-radius: 15px;

  background: rgba(255, 255, 255, 0.045);

  backdrop-filter: blur(10px);
}


.journey-badge-icon {

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: rgba(57, 181, 74, 0.12);

  color: #54d968;

  font-size: 18px;
}


.journey-header-badge strong {

  display: block;

  margin-bottom: 4px;

  font-size: 13px;

  color: #ffffff;
}


.journey-header-badge small {

  display: block;

  font-size: 11px;

  color: #8998af;
}



/* =========================================================
   INTRO STRIP
========================================================= */

.journey-intro {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 20px 25px;

  margin-bottom: 75px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.035);

  backdrop-filter: blur(10px);
}


.journey-intro-item {

  display: flex;

  align-items: center;

  gap: 12px;
}


.journey-intro-number {

  width: 35px;
  height: 35px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: rgba(18, 62, 171, 0.35);

  color: #78a0ff;

  font-size: 10px;

  font-weight: 800;
}


.journey-intro-item strong {

  display: block;

  margin-bottom: 2px;

  font-size: 12px;

  color: #ffffff;
}


.journey-intro-item small {

  display: block;

  font-size: 10px;

  color: #8291a9;
}


.journey-intro-line {

  width: 55px;
  height: 1px;

  background:
    linear-gradient(90deg,
      rgba(18, 62, 171, 0),
      rgba(75, 131, 255, 0.5),
      rgba(18, 62, 171, 0));
}



/* =========================================================
   TIMELINE
========================================================= */

.candidate-journey-timeline {

  position: relative;

  max-width: 900px;

  margin: 0 auto;
}


.candidate-journey-timeline::before {

  content: "";

  position: absolute;

  left: 29px;

  top: 35px;

  bottom: 35px;

  width: 2px;

  background:
    linear-gradient(180deg,
      #123eab 0%,
      #123eab 35%,
      #f20d0d 45%,
      #39b54a 75%,
      #39b54a 100%);

  opacity: 0.22;
}



/* =========================================================
   JOURNEY STAGE
========================================================= */

.journey-stage {

  position: relative;

  display: grid;

  grid-template-columns: 60px 1fr;

  gap: 30px;

  margin-bottom: 28px;
}



/* =========================================================
   MARKER
========================================================= */

.journey-stage-marker {

  position: relative;

  z-index: 3;

  width: 60px;
  height: 60px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f5f8ff;

  border: 2px solid #d7e0f0;

  box-shadow:
    0 0 0 7px #f5f8ff;
}


.journey-stage-marker span {

  font-size: 11px;

  font-weight: 800;

  color: #123eab;
}



/* =========================================================
   STAGE CARD
========================================================= */

.journey-stage-card {

  position: relative;

  padding: 27px 30px;

  background: #ffffff;

  border: 1px solid rgba(18, 62, 171, 0.09);

  border-radius: 18px;

  box-shadow:
    0 12px 35px rgba(8, 15, 33, 0.07);

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}


.journey-stage-card:hover {

  transform: translateX(5px);

  border-color: rgba(18, 62, 171, 0.22);

  box-shadow:
    0 18px 45px rgba(18, 62, 171, 0.11);
}



/* =========================================================
   STAGE TOP
========================================================= */

.journey-stage-top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 17px;
}


.journey-stage-icon {

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 13px;

  font-size: 18px;
}


.journey-stage-icon.blue {

  background: rgba(18, 62, 171, 0.09);

  color: #123eab;
}


.journey-stage-icon.red {

  background: rgba(242, 13, 13, 0.08);

  color: #f20d0d;
}


.journey-stage-icon.green {

  background: rgba(57, 181, 74, 0.10);

  color: #259b38;
}


.journey-stage-label {

  padding: 6px 10px;

  border-radius: 30px;

  background: #eef3ff;

  color: #123eab;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.1px;
}


.journey-stage-label.red-label {

  background: #fff0f0;

  color: #d00b0b;
}


.journey-stage-label.green-label {

  background: #edf9ef;

  color: #258c34;
}



/* =========================================================
   STAGE CONTENT
========================================================= */

.journey-stage-content h3 {

  margin: 0 0 9px;

  font-size: 21px;

  line-height: 1.3;

  color: #080f21;
}


.journey-stage-content p {

  max-width: 700px;

  margin: 0;

  font-size: 13px;

  line-height: 1.75;

  color: #667085;
}



/* =========================================================
   DETAILS
========================================================= */

.journey-details {

  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 18px;
}


.journey-details span {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  padding: 7px 10px;

  border-radius: 7px;

  background: #f6f8fc;

  color: #596579;

  font-size: 10px;

  font-weight: 600;
}


.journey-details i {

  color: #123eab;

  font-size: 10px;
}



/* =========================================================
   STAGE RESULT
========================================================= */

.journey-stage-result {

  display: flex;

  align-items: center;

  gap: 9px;

  margin-top: 20px;

  padding-top: 16px;

  border-top: 1px solid #edf0f5;

  font-size: 11px;

  font-weight: 600;

  color: #123eab;
}


.journey-stage-result>i {

  width: 24px;
  height: 24px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #eef3ff;

  font-size: 10px;
}


.journey-stage-result.problem {

  color: #d00b0b;
}


.journey-stage-result.problem>i {

  background: #fff0f0;

  color: #f20d0d;
}


.journey-stage-result.success {

  color: #218a32;
}


.journey-stage-result.success>i {

  background: #edf9ef;

  color: #39b54a;
}



/* =========================================================
   FEATURED CARD
========================================================= */

.journey-stage-card.featured {

  border-color: rgba(57, 181, 74, 0.28);

  box-shadow:
    0 15px 45px rgba(57, 181, 74, 0.09);
}


.journey-stage-card.featured::before {

  content: "";

  position: absolute;

  left: 0;
  top: 20px;
  bottom: 20px;

  width: 3px;

  border-radius: 0 5px 5px 0;

  background: #39b54a;
}



/* =========================================================
   FINAL RESULT
========================================================= */

.journey-final {

  position: relative;

  max-width: 900px;

  margin: 65px auto 0;

  padding: 38px 40px;

  display: grid;

  grid-template-columns: 75px 1fr auto;

  align-items: center;

  gap: 25px;

  overflow: hidden;

  border-radius: 22px;

  background:
    linear-gradient(120deg,
      #071226,
      #0d2752);

  border: 1px solid rgba(57, 181, 74, 0.25);

  box-shadow:
    0 25px 65px rgba(8, 15, 33, 0.22);
}


.journey-final-glow {

  position: absolute;

  width: 300px;
  height: 300px;

  top: -160px;
  right: -100px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(57, 181, 74, 0.18),
      transparent 70%);
}


.journey-final-icon {

  position: relative;

  width: 68px;
  height: 68px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: rgba(57, 181, 74, 0.13);

  border: 1px solid rgba(57, 181, 74, 0.25);

  color: #55d867;

  font-size: 28px;
}


.journey-final-content {

  position: relative;
}


.journey-final-content>span {

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;

  color: #55d867;
}


.journey-final-content h3 {

  margin: 5px 0 7px;

  font-size: 29px;

  color: #ffffff;
}


.journey-final-content p {

  max-width: 550px;

  margin: 0;

  font-size: 12px;

  line-height: 1.7;

  color: #aebbd0;

  text-align: justify;
}


.journey-final-points {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 9px;

  min-width: 145px;
}


.journey-final-points span {

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 10px;

  color: #d9e1ed;
}


.journey-final-points i {

  color: #55d867;

  font-size: 10px;
}



/* =========================================================
   BOTTOM CTA
========================================================= */

.journey-bottom {

  max-width: 900px;

  margin: 45px auto 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;
}


.journey-bottom p {

  margin: 0;

  font-size: 14px;

  color: #596579;
}


.journey-bottom p strong {

  color: #080f21;
}


.journey-cta {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 14px 20px;

  border-radius: 9px;

  background: #123eab;

  color: #ffffff;

  text-decoration: none;

  font-size: 12px;

  font-weight: 700;

  box-shadow:
    0 10px 25px rgba(18, 62, 171, 0.20);

  transition:
    background .25s ease,
    transform .25s ease;
}


.journey-cta:hover {

  background: #0d328e;

  transform: translateY(-2px);
}


.journey-cta i {

  font-size: 11px;
}













/* =====================================================
   BACKGROUND DECORATION
===================================================== */

.course-info::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  top: -300px;
  right: -250px;

  border-radius: 50%;

  border: 1px solid rgba(18, 63, 166, 0.08);

  box-shadow:
    0 0 0 70px rgba(18, 63, 166, 0.025),
    0 0 0 140px rgba(18, 63, 166, 0.015);

  pointer-events: none;
}


.course-info::after {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  bottom: -200px;
  left: -180px;

  border-radius: 50%;

  background: rgba(57, 181, 74, 0.035);

  pointer-events: none;
}


.course-info .container {
  position: relative;

  z-index: 2;
}


/* =====================================================
   TOP INTRO
===================================================== */

.course-top {

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 50px;

  margin-bottom: 55px;
}


.course-heading {
  max-width: 780px;
}


.course-heading .eyebrow {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 18px;

  padding: 8px 13px;

  border-radius: 5px;

  border-left: 3px solid #39b54a;

  background: rgba(18, 63, 166, 0.06);

  color: #123fa6;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.7px;

  text-transform: uppercase;
}


.course-heading .eyebrow::before {

  content: "";

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #39b54a;
}


.course-heading h2 {

  margin: 0 0 20px;

  color: #182230;

  font-size: clamp(42px, 5vw, 64px);

  line-height: 1.04;

  letter-spacing: -2.5px;

  font-weight: 800;
}


.course-heading h2 span {

  display: block;

  color: #123fa6;
}


.course-heading p {

  max-width: 700px;

  margin: 0;

  color: #000;

  font-size: 14px;

  line-height: 1.85;
}


/* =====================================================
   INTRO BADGE
===================================================== */

.course-intro-badge {

  flex-shrink: 0;

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 17px 20px;

  min-width: 245px;

  background: #ffffff;

  border: 1px solid #e3e9f0;

  border-radius: 16px;

  box-shadow:
    0 15px 35px rgba(15, 23, 42, 0.06);
}


.intro-icon {

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: #123fa6;

  color: #ffffff;

  font-size: 17px;
}


.course-intro-badge strong {

  display: block;

  color: #172033;

  font-size: 13px;

  line-height: 1.4;
}


.course-intro-badge strong span {

  color: #39b54a;
}


.course-intro-badge small {

  display: block;

  margin-top: 4px;

  color: #000;

  font-size: 10px;
}


/* =====================================================
   TWO MAIN PANELS
===================================================== */

.course-journey {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 22px;
}


.journey-panel {

  position: relative;

  padding: 34px;

  border-radius: 22px;

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


.journey-panel:hover {

  transform: translateY(-6px);
}


/* =====================================================
   DEVELOPMENT PANEL
===================================================== */

.development-panel {

  background: #101d35;

  box-shadow:
    0 25px 55px rgba(16, 29, 53, 0.14);
}


.development-panel::before {

  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -120px;
  top: -120px;

  border-radius: 50%;

  background: rgba(18, 63, 166, 0.35);
}


.development-panel::after {

  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  left: -80px;
  bottom: -90px;

  border-radius: 50%;

  background: rgba(57, 181, 74, 0.12);
}


/* =====================================================
   PLACEMENT PANEL
===================================================== */

.placement-panel {

  background: #ffffff;

  border: 1px solid #e2e8f0;

  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.07);
}


.placement-panel::before {

  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -100px;
  bottom: -100px;

  border-radius: 50%;

  background: rgba(57, 181, 74, 0.06);
}


/* =====================================================
   PANEL TOP
===================================================== */

.panel-top {

  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 30px;
}


.panel-icon {

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: #123fa6;

  color: #ffffff;

  font-size: 17px;
}


.placement-panel .panel-icon {

  background: #39b54a;
}


.panel-top>span {

  color: #94a3b8;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1px;
}


/* =====================================================
   PANEL CONTENT
===================================================== */

.panel-label {

  position: relative;

  z-index: 2;

  display: block;

  margin-bottom: 12px;

  color: #39b54a;

  font-size: 15px;

  font-weight: 800;

  letter-spacing: 1.8px;
}


.placement-panel .panel-label {

  color: #123fa6;
}


.journey-panel h3 {

  position: relative;

  z-index: 2;

  max-width: 400px;

  margin: 0 0 13px;

  color: #ffffff;

  font-size: 29px;

  line-height: 1.15;

  letter-spacing: -1px;
}


.journey-panel h3 strong {

  display: block;

  color: #ffffff;
}


.placement-panel h3 {

  color: #182230;
}


.placement-panel h3 strong {

  color: #123fa6;
}


.journey-panel>p {

  position: relative;

  z-index: 2;

  max-width: 480px;

  margin: 0 0 28px;

  color: #94a3b8;

  font-size: 12px;

  line-height: 1.8;

  text-align: justify;
}


.placement-panel>p {

  color: #000;
}


/* =====================================================
   DEVELOPMENT FLOW
===================================================== */

.development-flow {

  position: relative;

  z-index: 2;

  margin-bottom: 28px;
}


.flow-item {

  display: flex;

  align-items: center;

  gap: 13px;

  padding: 11px 0;
}


.flow-item>i {

  width: 35px;
  height: 35px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: rgba(255, 255, 255, 0.07);

  color: #39b54a;

  font-size: 11px;
}


.flow-item strong {

  display: block;

  color: #ffffff;

  font-size: 14px;
}


.flow-item small {

  display: block;

  margin-top: 3px;

  color: #98a7c1;

  font-size: 14px;
}


.flow-line {

  width: 1px;

  height: 15px;

  margin-left: 17px;

  background: rgba(57, 181, 74, 0.30);
}


/* =====================================================
   PLACEMENT FEATURES
===================================================== */

.placement-features {

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;

  margin-bottom: 28px;
}


.placement-features>div {

  display: flex;

  align-items: center;

  gap: 10px;

  min-height: 65px;

  padding: 10px;

  border: 1px solid #e7edf3;

  border-radius: 10px;

  background: #f8fafc;
}


.placement-features i {

  width: 31px;
  height: 31px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: rgba(18, 63, 166, 0.08);

  color: #123fa6;

  font-size: 10px;
}


.placement-features strong {

  display: block;

  color: #273449;

  font-size: 14px;
}


.placement-features small {

  display: block;

  margin-top: 3px;

  color: #6c737d;

  font-size: 11px;

  line-height: 1.4;
}


/* =====================================================
   PANEL BUTTON
===================================================== */

.panel-button {

  position: relative;

  z-index: 3;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 17px;

  border-radius: 8px;

  background: #39b54a;

  color: #ffffff;

  font-size: 10px;

  font-weight: 800;

  text-decoration: none;

  transition: 0.3s ease;
}


.panel-button:hover {

  gap: 14px;

  background: #2fa23e;

}


.placement-panel .panel-button {

  background: #123fa6;
}


.placement-panel .panel-button:hover {

  background: #0d3288;
}


/* =====================================================
   BOTTOM JOURNEY STRIP
===================================================== */

.course-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-top: 22px;

  padding: 23px 28px;

  border-radius: 16px;

  background: #ffffff;

  border: 1px solid #e3e9f0;

  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.04);
}


.bottom-title span {

  display: block;

  margin-bottom: 5px;

  color: #94a3b8;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.bottom-title strong {

  color: #182230;

  font-size: 13px;
}


/* =====================================================
   MINI JOURNEY
===================================================== */

.journey-mini {

  display: flex;

  align-items: center;

  gap: 14px;
}


.journey-mini>div {

  display: flex;

  align-items: center;

  gap: 7px;

  color: #334155;

  font-size: 10px;

  font-weight: 700;
}


.journey-mini>div i {

  color: #123fa6;

  font-size: 11px;
}


.journey-mini>i {

  color: #39b54a;

  font-size: 9px;
}







/* Reduce unnecessary bottom space in placement panel */

.placement-panel {
  padding-bottom: 22px;
  height: auto;
  min-height: 0;
}

.placement-panel>p {
  margin-bottom: 18px;
}

.placement-features {
  margin-bottom: 18px;
}

.placement-panel .panel-button {
  margin-bottom: 0;
}

/* MOBILE MENU BUTTON */
.menu-button {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* =========================================================
   FINAL RESPONSIVE SYSTEM
   All mobile/tablet responsive rules are kept here.
   Desktop styles above remain unchanged.
========================================================= */

@media (max-width: 1100px) {

  .container,
  .candidate-journey-container {
    width: 92%;
  }

  .hero-grid,
  .course-grid {
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(46px, 6vw, 68px);
  }

  .course-top {
    align-items: flex-start;
    gap: 30px;
  }

  .tech-universe {
    grid-template-columns: minmax(0, 1fr) 230px minmax(0, 1fr);
    gap: 20px;
  }

  .tech-core {
    width: 230px;
    height: 230px;
  }

  .tech-ring-one {
    width: 220px;
    height: 220px;
  }

  .tech-ring-two {
    width: 185px;
    height: 185px;
  }

  .tech-core-circle {
    width: 135px;
    height: 135px;
  }
}


@media (max-width: 900px) {

  /* =========================
     GLOBAL
  ========================= */

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .candidate-journey-container {
    width: calc(100% - 32px);
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }


  /* =========================
     NAVBAR
  ========================= */

  .header {
    top: 10px;
  }

  .navbar {
    position: relative;
    width: calc(100% - 20px);
    min-height: 62px;
    height: auto;
    padding: 9px 13px;
    border-radius: 16px;
  }

  .logo {
    width: 155px;
    max-width: 70%;
    height: auto;
  }

  .menu-button {
    display: block;
    flex-shrink: 0;
    padding: 5px;
    z-index: 1001;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open,
  .nav-links.active {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;

    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(20, 41, 111, 0.15);
    z-index: 1000;
  }

  .nav-links.open a,
  .nav-links.active a {
    width: 100%;
    padding: 12px 11px;
    border-radius: 9px;
    text-align: center;
  }

  .nav-links.open a:hover,
  .nav-links.active a:hover {
    background: #f4f7fc;
  }

  .nav-button {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }


  /* =========================
     HERO
  ========================= */

  .hero {
    min-height: auto;
    padding: 125px 0 75px;
    background-position: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    align-items: start;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
  }

  .hero h1 {
    margin: 20px 0;
    font-size: clamp(40px, 8vw, 58px);
    line-height: 1.06;
  }

  .hero-text {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-buttons {
    width: 100%;
    gap: 10px;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 28px;
  }

  .hero-visual {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }

  .dashboard {
    width: 100%;
    max-width: 100%;
    transform: none;
    padding: 12px;
    border-radius: 24px;
  }

  .dashboard-content {
    min-height: auto;
    padding: 17px;
  }

  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .code-window {
    max-width: 100%;
    overflow-x: auto;
  }


  /* =========================
     COMMON SECTIONS
  ========================= */

  .section,
  .course-section {
    padding: 75px 0;
  }

  .section-heading {
    max-width: 100%;
    margin-bottom: 35px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 7vw, 48px);
  }


  /* =========================
     SERVICES
  ========================= */

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-width: 0;
    min-height: 220px;
    padding: 23px;
  }


  /* =========================
     TECHNOLOGY
  ========================= */

  .technology-section {
    padding: 75px 0;
  }

  .technology-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-universe {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 45px;
  }

  .tech-column,
  .tech-column-left,
  .tech-column-right {
    width: 100%;
    align-items: stretch;
    gap: 15px;
  }

  .tech-orbit-card,
  .tech-column-left .tech-orbit-card,
  .tech-column-right .tech-orbit-card {
    width: 100%;
    max-width: none;
    transform: none;
  }

  .tech-orbit-card:hover,
  .tech-column-left .tech-orbit-card:hover,
  .tech-column-right .tech-orbit-card:hover {
    transform: translateY(-4px);
  }

  .tech-core {
    order: -1;
    width: 235px;
    height: 235px;
    margin: 5px auto 20px;
  }

  .tech-ring-one {
    width: 225px;
    height: 225px;
  }

  .tech-ring-two {
    width: 190px;
    height: 190px;
  }

  .tech-core-circle {
    width: 140px;
    height: 140px;
  }


  /* =========================
     PROCESS
  ========================= */

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-card {
    min-width: 0;
    padding: 22px;
  }


  /* =========================
     COURSE
  ========================= */

  .course-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .course-content,
  .course-form-card {
    width: 100%;
    min-width: 0;
  }

  .course-content h2 {
    font-size: clamp(36px, 7vw, 52px);
  }

  .course-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-form-card {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  /* =========================
     COURSE INFO / PLACEMENT
  ========================= */

  .course-info {
    padding: 85px 0;
  }

  .course-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
  }

  .course-heading {
    width: 100%;
    max-width: 100%;
  }

  .course-heading h2 {
    font-size: clamp(38px, 7vw, 54px);
    letter-spacing: -1.5px;
  }

  .course-heading p {
    max-width: 100%;
    text-align: justify;
  }

  .course-intro-badge {
    width: 100%;
    min-width: 0;
    max-width: 420px;
  }

  .course-journey {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .journey-panel,
  .placement-panel {
    width: 100%;
    min-width: 0;
  }

  .placement-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }


  /* =========================
     CANDIDATE JOURNEY
  ========================= */

  .candidate-journey {
    padding: 75px 0 70px;
  }

  .journey-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
  }

  .journey-header-content {
    width: 100%;
    max-width: 100%;
  }

  .journey-header h2 {
    font-size: clamp(34px, 7vw, 48px);
  }

  .journey-header-content>p {
    max-width: 100%;
  }

  .journey-header-badge {
    width: 100%;
    max-width: 360px;
  }

  .journey-intro {
    flex-wrap: wrap;
    gap: 18px;
    padding: 18px;
    margin-bottom: 45px;
  }

  .journey-intro-line {
    display: none;
  }

  .candidate-journey-timeline {
    width: 100%;
    max-width: 100%;
  }

  .candidate-journey-timeline::before {
    left: 23px;
    top: 25px;
    bottom: 25px;
  }

  .journey-stage {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 22px;
  }

  .journey-stage-marker {
    width: 48px;
    height: 48px;
    box-shadow: 0 0 0 5px #f5f8ff;
  }

  .journey-stage-card {
    min-width: 0;
    padding: 21px 18px;
    border-radius: 15px;
  }

  .journey-stage-top {
    align-items: flex-start;
    gap: 10px;
  }

  .journey-stage-content {
    min-width: 0;
    text-align: justify;
  }

  .journey-stage-content h3 {
    font-size: 18px;
  }

  .journey-stage-content p {
    font-size: 12px;
    line-height: 1.7;
  }

  .journey-details {
    flex-wrap: wrap;
    gap: 6px;
  }

  .journey-final {
    grid-template-columns: 60px minmax(0, 1fr);
    width: 100%;
    min-width: 0;
  }

  .journey-final-points {
    grid-column: 2;
    flex-wrap: wrap;
  }


  /* =========================
     CTA
  ========================= */

  .cta {
    padding: 52px 0;
  }

  .cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .cta h2 {
    max-width: 100%;
    font-size: clamp(34px, 7vw, 52px);
  }

  .button-light {
    white-space: normal;
  }


  /* =========================
     FOOTER
  ========================= */

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .footer-logo {
    max-width: 190px;
  }
}


@media (max-width: 650px) {

  /* =========================
     GLOBAL MOBILE
  ========================= */

  .container,
  .candidate-journey-container {
    width: calc(100% - 28px);
  }


  /* =========================
     NAVBAR
  ========================= */

  .navbar {
    width: calc(100% - 20px);
  }

  .logo {
    width: 145px;
  }


  /* =========================
     HERO
  ========================= */

  .hero {
    padding: 120px 0 65px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.75;
    text-align: justify;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .trust-line {
    width: 35px;
  }

  .dashboard {
    padding: 9px;
    border-radius: 20px;
  }

  .dashboard-content {
    padding: 13px;
    border-radius: 14px;
  }

  .dashboard-header {
    flex-wrap: wrap;
    gap: 8px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }


  /* =========================
     COMMON
  ========================= */

  .section,
  .course-section,
  .technology-section {
    padding: 65px 0;
  }

  .section-heading h2,
  .course-content h2,
  .cta h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .section-heading p,
  .course-content>p,
  .cta p {
    font-size: 13px;
    line-height: 1.75;
    text-align: justify;
  }


  /* =========================
     CARDS
  ========================= */

  .service-grid,
  .technology-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card,
  .technology-card,
  .process-card {
    width: 100%;
    min-height: auto;
    padding: 20px;
  }


  /* =========================
     TECHNOLOGY UNIVERSE
  ========================= */

  .tech-universe {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 35px;
  }

  .tech-core {
    width: 210px;
    height: 210px;
    margin: 0 auto 15px;
  }

  .tech-ring-one {
    width: 200px;
    height: 200px;
  }

  .tech-ring-two {
    width: 170px;
    height: 170px;
  }

  .tech-core-circle {
    width: 120px;
    height: 120px;
  }

  .tech-core-circle strong {
    font-size: 16px;
  }

  .tech-orbit-card {
    padding: 17px;
    gap: 12px;
  }

  .orbit-card-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
  }

  .orbit-card-content {
    min-width: 0;
  }

  .orbit-card-content h3 {
    font-size: 16px;
  }

  .orbit-card-content p {
    font-size: 11px;
    line-height: 1.6;
    text-align: justify;
  }


  /* =========================
     COURSE
  ========================= */

  .course-info {
    padding: 70px 0;
  }

  .course-heading h2 {
    font-size: clamp(34px, 10vw, 42px);
    letter-spacing: -1.5px;
  }

  .course-heading p {
    font-size: 13px;
  }

  .course-intro-badge {
    max-width: none;
  }

  .course-points,
  .placement-features {
    grid-template-columns: 1fr;
  }

  .course-form-card {
    padding: 19px;
    border-radius: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .curriculum {
    padding: 20px;
  }


  /* =========================
     COURSE JOURNEY
  ========================= */

  .journey-panel,
  .placement-panel {
    padding: 22px 18px;
    border-radius: 17px;
  }

  .journey-panel h3,
  .placement-panel h3 {
    font-size: 24px;
  }

  .course-bottom {
    padding: 18px;
  }

  .journey-mini {
    width: 100%;
    justify-content: space-between;
    gap: 7px;
  }

  .journey-mini>div span {
    display: none;
  }


  /* =========================
     CANDIDATE JOURNEY
  ========================= */

  .candidate-journey {
    padding: 70px 0 65px;
    background:
      linear-gradient(180deg,
        #071226 0%,
        #0b1830 28%,
        #f5f8ff 28.1%,
        #f5f8ff 100%);
  }

  .journey-header {
    margin-bottom: 32px;
  }

  .journey-header h2 {
    font-size: clamp(30px, 9vw, 38px);
    letter-spacing: -0.8px;
  }

  .journey-header-content>p {
    font-size: 12px;
    line-height: 1.7;
  }

  .journey-header-badge {
    max-width: none;
  }

  .journey-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 16px;
    margin-bottom: 42px;
  }

  .journey-intro-item {
    min-width: 0;
    gap: 8px;
  }

  .journey-intro-number {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }

  .candidate-journey-timeline::before {
    left: 21px;
    top: 22px;
    bottom: 22px;
  }

  .journey-stage {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .journey-stage-marker {
    width: 44px;
    height: 44px;
    box-shadow: 0 0 0 4px #f5f8ff;
  }

  .journey-stage-card {
    padding: 18px 15px;
    border-radius: 14px;
  }

  .journey-stage-content h3 {
    font-size: 17px;
  }

  .journey-stage-content p {
    font-size: 11px;
  }

  .journey-details span {
    font-size: 8px;
    padding: 5px 7px;
  }

  .journey-stage-result {
    font-size: 9px;
  }

  .journey-final {
    display: block;
    margin-top: 40px;
    padding: 24px 18px;
    border-radius: 17px;
  }

  .journey-final-icon {
    margin-bottom: 18px;
  }

  .journey-final-content h3 {
    font-size: 24px;
  }

  .journey-final-points {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .journey-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 28px;
  }

  .journey-cta {
    width: 100%;
    justify-content: center;
  }


  /* =========================
     FOOTER
  ========================= */

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .footer {
    text-align: left;
  }

  .footer-grid p {
    max-width: 100%;
    text-align: justify;
  }
}


@media (max-width: 400px) {

  .container,
  .candidate-journey-container {
    width: calc(100% - 24px);
  }

  .navbar {
    width: calc(100% - 14px);
    padding: 8px 11px;
  }

  .logo {
    width: 135px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-text {
    font-size: 13px;
  }

  .button {
    width: 100%;
    padding: 12px 14px;
    font-size: 12px;
  }

  .section,
  .course-section,
  .technology-section {
    padding: 58px 0;
  }

  .section-heading h2,
  .course-content h2,
  .cta h2 {
    font-size: 31px;
  }

  .tech-core {
    width: 190px;
    height: 190px;
  }

  .tech-ring-one {
    width: 180px;
    height: 180px;
  }

  .tech-ring-two {
    width: 150px;
    height: 150px;
  }

  .tech-core-circle {
    width: 108px;
    height: 108px;
  }

  .journey-intro {
    grid-template-columns: 1fr;
  }

  .journey-stage {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .journey-stage-marker {
    width: 38px;
    height: 38px;
  }

  .candidate-journey-timeline::before {
    left: 18px;
  }

  .journey-stage-card {
    padding: 17px 13px;
  }
}