:root {
  --blue: #0174bb;
  --blue-dark: #155fad;
  --blue-light: #e8f1fb;
  --yellow: #f5a623;
  --text: #222;
  --muted: #555;
  --light: #f4f6f9;
  --border: #dde3ed;
  --white: #fff;
  --font: "Open Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 2rem;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumb-inner a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb-inner a:hover {
  text-decoration: underline;
}

.breadcrumb-inner .sep {
  opacity: 0.5;
  font-size: 0.7rem;
}

/* ===== HERO BANNER ===== */
.hero {
  background: linear-gradient(135deg, #0d1b2e 0%, #1a3a5c 50%, #0d2744 100%);
  position: relative;
  overflow: hidden;
  padding: 3.5rem 2rem 3rem;
}

.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px);
  background-size: 30px 30px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  max-width: 540px;
  margin-bottom: 1.75rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-stat-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
}

.hero-stat-val {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ===== SIDEBAR CARD ===== */
.sidebar-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.sidebar-card-header {
  background: var(--blue);
  padding: 1.1rem 1.4rem;
}

.sidebar-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.sidebar-card-header p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.course-meta {
  padding: 0.5rem 0;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.4rem;
  border-bottom: 1px solid #f0f3f8;
  font-size: 0.85rem;
}

.meta-row:last-child {
  border-bottom: none;
}

.meta-label {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}

.meta-label .ico {
  font-size: 15px;
  color: var(--yellow);
}

.meta-val {
  color: var(--text);
  font-weight: 600;
}

.sidebar-enquiry {
  padding: 1.1rem 1.4rem;
  border-top: 1px solid #f0f3f8;
  background: #fafbfd;
}

.sidebar-enquiry h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.form-field {
  margin-bottom: 0.65rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #cdd5e0;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.83rem;
  padding: 0.55rem 0.875rem;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aab;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
}

.form-field textarea {
  resize: vertical;
  min-height: 65px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.65rem;
}

.captcha-eq {
  background: #eef2f7;
  border: 1px solid #cdd5e0;
  border-radius: 5px;
  padding: 0.55rem 0.875rem;
  font-size: 0.83rem;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.captcha-row input {
  flex: 1;
  background: #fff;
  border: 1px solid #cdd5e0;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.83rem;
  padding: 0.55rem 0.875rem;
  border-radius: 5px;
  outline: none;
}

.captcha-row input:focus {
  border-color: var(--blue);
}

#training_error_msg2 {
  margin-bottom: 0.5rem;
}

.btn-submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}

.btn-submit:hover {
  background: var(--blue-dark);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ===== MAIN LAYOUT ===== */
.main-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

/* ===== SECTION HEADINGS ===== */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-title span {
  color: var(--blue);
}

/* ===== INTRO ===== */
.intro-section {
  margin-bottom: 2.5rem;
}

.intro-section p {
  color: var(--muted);
  margin-bottom: 0.9rem;
  font-size: 0.93rem;
  line-height: 1.8;
}

.intro-section p strong {
  color: var(--text);
}

/* ===== WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}

.why-card:hover {
  box-shadow: 0 4px 16px rgba(26, 115, 208, 0.1);
  border-color: #b3cfee;
}

.why-card-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 0.75rem;
}

.why-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== ENROLL ===== */
.enroll-section {
  margin-bottom: 2.5rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.tag {
  background: var(--blue-light);
  border: 1px solid #b3d0f0;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
}

/* ===== MODULES ===== */
.modules-section {
  margin-bottom: 2.5rem;
}

.module-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.module-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.module-item:hover {
  border-color: #b3cfee;
}

.module-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  user-select: none;
}

.module-num {
  width: 28px;
  height: 28px;
  background: var(--blue);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.module-title {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.module-toggle {
  width: 22px;
  height: 22px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  transition:
    transform 0.3s,
    background 0.2s;
  flex-shrink: 0;
}

.module-item.open .module-toggle {
  transform: rotate(45deg);
  background: var(--blue-light);
  color: var(--blue);
  border-color: #b3d0f0;
}

.module-body {
  display: none;
  padding: 0 1.2rem 1.2rem;
  border-top: 1px solid #f0f3f8;
}

.module-item.open .module-body {
  display: block;
}

.module-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1rem;
  padding-top: 1rem;
}

.topic-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.topic-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  opacity: 0.5;
}

/* ===== CAREERS ===== */
.careers-section {
  margin-bottom: 2.5rem;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1rem;
}

.career-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 0.7rem 0.9rem;
  font-size: 0.81rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}

.career-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}

.career-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===== HIGHLIGHTS ===== */
.highlights-section {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}

.highlights-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s;
}

.highlight-card:hover {
  box-shadow: 0 4px 16px rgba(26, 115, 208, 0.1);
}

.highlight-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.highlight-text p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-section {
  background: #fff;
  padding: 3rem 2rem;
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  gap: 1rem;
}

.faq-q:hover {
  color: var(--blue);
}

.faq-icon {
  width: 22px;
  height: 22px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  flex-shrink: 0;
  transition:
    transform 0.3s,
    border-color 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}

.faq-a {
  display: none;
  padding: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.open .faq-a {
  display: block;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--blue);
  padding: 2.75rem 2rem;
}

.cta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.cta-strip p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.25rem;
}

.btn-cta-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-cta-yellow:hover {
  opacity: 0.9;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cta-white:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ===== OTHER COURSES ===== */
.other-courses {
  background: var(--light);
  border-top: 1px solid var(--border);
  padding: 2.25rem 2rem;
}

.other-courses-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.course-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.course-link {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s;
}

.course-link:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .main-wrap {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .module-topics {
    grid-template-columns: 1fr;
  }

  .careers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.55rem;
  }

  .careers-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip-inner {
    flex-direction: column;
  }
}

.pricing-cards-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: Arial;
}

.pricing-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.card-header {
  background: #4a8fc9;
  color: #fff;
  padding: 18px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.card-header.aws {
  background: #ff9900;
}

.card-body {
  padding: 25px;
}

.card-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

.card-btn {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.card-btn:hover {
  background: #2563eb;
}

/* ===== STICKY SIDEBAR LAYOUT ===== */
.main-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
  /* CRITICAL: allows sticky to work */
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.sticky-sidebar {
  position: sticky;
  top: 105px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.sticky-sidebar::-webkit-scrollbar {
  width: 4px;
}

.sticky-sidebar::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* Responsive: stack on mobile */
@media (max-width: 900px) {
  .main-wrap {
    grid-template-columns: 1fr;
  }

  .sticky-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
}

.placement-section{
    margin:0 0 0 20px;
}

.placement-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.placement-header h2{
    font-size:12px;
    font-weight:700;
    color:#1f2937;
    margin:0;
}

.recent-tag{
    background:#28a745;
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    font-size:9px;
    font-weight:600;
}

.placement-grid{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.placement-card{
    position:relative;
}

.placement-card img{
    width:120px;
    border:2px solid #d4af37;
    padding:4px;
}

.placed-badge{
    position:absolute;
    top:-10px;
    right:-5px;
    background:#ff5722;
    color:#fff;
    font-size:11px;
    font-weight:600;
    padding:5px 10px;
    border-radius:20px;
    box-shadow:0 3px 10px rgba(0,0,0,.2);
}