/* Base Theme */
:root {
  --bg-1: #00375a;
  --bg-2: #001c2d;
  --ink: #ffffff;
  --ink-dim: rgba(255,255,255,0.7);
  --muted: rgba(255,255,255,0.6);
  --border: rgba(255,255,255,0.1);
  --brand: #7cb342;
  --brand-700: #689f38;
  --accent: #4a9fd8;
  --yellow-400: #f4d03f;
  --shadow: rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--ink);
  background: #000;
}

/* Layout */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.bg-radial {
  background: radial-gradient(ellipse at center, var(--bg-1) 0%, var(--bg-2) 100%);
}

.text-white { color: var(--ink); }
.text-accent { color: var(--yellow-400); font-weight: 700; }
.text-accent-blue { color: var(--accent); font-weight: 700; }
.brand-emph { color: var(--brand); font-weight: 700; }

/* Header */
.site-header { position: relative; z-index: 50; background: transparent; }
.header-bar { height: 64px; display: flex; align-items: center; justify-content: center; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-chip { display: flex; align-items: center; gap: 8px; padding: 8px; border-radius: 8px; background: rgba(255,255,255,0.1); }
.brand-name { margin: 0; font-weight: 600; font-size: 12px; }
.brand-sep { width: 2px; height: 36px; background: rgba(255,255,255,0.2); }
.brand-backing { display: flex; flex-direction: column; align-items: center; }
.backed-text { margin: 0; font-size: 10px; color: rgba(255,255,255,0.5); }
.backed-logos { display: flex; gap: 6px; align-items: center; }

/* Hero */
.hero { 
  padding-top: 24px; 
  padding-bottom: 24px;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: flex-start;
  padding-top: 48px;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; width: 100%; }
.hero-title { font-size: 28px; line-height: 1.25; font-weight: 400; margin: 0; text-align: center; }
.logo-row { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: nowrap; margin: 16px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
.logo-row::-webkit-scrollbar { display: none; }
.logo-row img { height: 20px; width: auto; opacity: 0.95; flex-shrink: 0; }
.hero-visual { display: none; justify-content: flex-end; }
.hero-image { width: 100%; max-width: 560px; height: auto; object-fit: contain; }
.cta-desktop { display: none; margin-top: 16px; text-align: center; }
.stat-note { color: var(--ink-dim); font-size: 14px; margin-top: 12px; }
.stat-strong { font-weight: 600; }

/* Buttons */
.btn { border: none; display: inline-flex; align-items: center; justify-content: center; padding: 16px 24px; border-radius: 10px; font-weight: 700; font-size: 18px; cursor: pointer; transition: background-color .2s ease, box-shadow .2s ease, transform .02s ease; position: relative; overflow: hidden; }
.btn > * { position: relative; z-index: 1; }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .6; cursor: not-allowed; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-brand { background: var(--brand); color: #000; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.btn-brand:hover { background: var(--brand-700); box-shadow: 0 4px 20px rgba(124, 179, 66, 0.4); }

/* CTA buttons (results page) */
.cta { position: relative; overflow: hidden; }
.cta > * { position: relative; z-index: 1; }

/* Shine effect */
.btn-shine::before { content: ""; position: absolute; inset: 0; top: -50%; left: -120%; width: 50%; height: 220%; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 40%, rgba(255,255,255,.7) 50%, rgba(255,255,255,.5) 60%, rgba(255,255,255,0) 100%); transform: rotate(12deg); animation: shine 2.5s ease-in-out infinite; border-radius: inherit; pointer-events: none; z-index: 2; }
@keyframes shine { 0% { left: -120%; } 40% { left: -120%; } 100% { left: 140%; } }

/* Mobile sticky */
.mobile-sticky { position: fixed; left: 0; right: 0; bottom: 0; background: var(--bg-2); border-top: 1px solid var(--border); padding: 12px 24px; z-index: 50; }
.mobile-sticky .btn { width: 100%; margin-bottom: 8px; }
.mobile-sticky .stat-note { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 12px; margin: 0; }

/* Visibility helpers */
.mobile-only { display: block; }

/* Course Selection Page */
.page { padding-top: 24px; padding-bottom: 96px; }
.title { text-align: center; font-weight: 400; font-size: 28px; line-height: 1.2; margin: 0 0 8px;}
.subtitle { text-align: center; color: rgba(255,255,255,0.8); margin: 0 0 20px; font-size: 16px; }
.grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.card { background: rgba(26,66,90,0.9); border: 1.5px solid rgba(124,179,66,0); border-radius: 14px; padding: 16px; cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.2); text-align: left; }
.card:hover { border-color: var(--brand); background: rgba(42, 90, 122, 0.95); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.35); }
.card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.card-title { margin: 0; font-weight: 500; font-size: 20px; letter-spacing: 0.2px; color: #fff; }
.chip { display: inline-block; padding: 8px 10px; margin-top: 12px; border-radius: 999px; background: rgba(124,179,66,0.18); color: var(--brand); font-weight: 700; font-size: 12px; }
.desc { margin: 8px 0 0; color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.4; }
.center { text-align: center; }

/* Bottom brand bar (anchored) */
.bottom-brand-bar { position: fixed; left: 0; right: 0; bottom: 0; background: rgba(0, 28, 45, 0.9); border-top: 1px solid var(--border); backdrop-filter: blur(6px); z-index: 40; }
.bottom-brand-inner { max-width: 1120px; margin: 0 auto; padding: 20px 16px; display: flex; flex-direction: column; gap: 8px; align-items: center; justify-content: center; }
.bottom-brand-text { margin: 10px; color: var(--ink-dim); font-size: 12px; text-align: center; white-space: nowrap; }
.brand-logos-row { display: flex; align-items: center; justify-content: center; gap: 16px; white-space: nowrap; overflow: hidden; }
.brand-logos-row img { height: 20px; width: auto; opacity: 0.85; }

/* Loader */
.loader-ring { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.2); border-top-color: var(--brand); border-radius: 50%; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (min-width: 720px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .brand-logos-row img { height: 24px; }
  .bottom-brand-text { font-size: 14px; }
  .bottom-brand-inner { padding: 10px 24px; }
}

/* How Our Certificates Help Section */
.benefits-help { margin-top: 36px; }
.section-title { font-size: 24px; font-weight: 500; text-align: center; margin: 0 0 16px; color: var(--ink); }
.benefits-cards { display: flex; gap: 8px; margin-bottom: 8px; }
.benefit-card { flex: 1; display: flex; flex-direction: column; gap: 0px; padding: 12px 8px; text-align: center; border-radius: 12px; background: linear-gradient(to bottom, rgba(66, 133, 244, 0.12) 0%, rgba(71, 130, 239, 0.3) 100%); }
.benefit-icon { display: flex; justify-content: center; align-items: center; height: 32px; }
.benefit-icon img { height: 32px; width: auto; margin: 0 auto; }
.benefit-title { font-size: 16px; font-weight: 700; color: var(--accent); margin: 0; text-wrap: nowrap; margin-top: 12px; margin-bottom: 4px;}
.benefit-subtitle { font-size: 12px; color: rgba(255, 255, 255, 0.7); }
.benefit-subtitle p { margin: 0; line-height: 1.3; }

/* Expandable Sections */
.expandable-section { margin-top: 8px; }
.expandable-header { padding: 12px; border-radius: 8px; background: rgba(26, 66, 90, 0.5); display: flex; align-items: center; justify-content: space-between; gap: 8px; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.expandable-title { margin: 0; font-size: 14px; font-weight: 500; color: var(--ink); flex: 1; }
.expandable-header .chevron { width: 20px; height: 20px; color: var(--ink); transition: transform 0.3s ease; flex-shrink: 0; }
.expandable-header.active .chevron { transform: rotate(180deg); }
.expandable-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.expandable-content.show { max-height: 1000px; margin-top: 8px; }

/* Slider for Get Hired Faster */
.slider-container { position: relative; overflow: hidden; }
.slider-wrapper { display: flex; transition: transform 0.5s ease; }
.slide-card { min-width: 100%; max-width: 100%; flex-shrink: 0; display: flex; gap: 12px; padding: 10px; border-radius: 12px; background: rgba(26, 66, 90, 0.15); align-items: center; box-sizing: border-box; }
.slide-img { width: 100px; height: 70px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.slide-text { flex: 1; min-width: 0; overflow: hidden; }
.slide-title { margin: 0; font-size: 13px; font-weight: 500; color: var(--ink); display: flex; align-items: center; gap: 4px; flex-wrap: wrap; word-wrap: break-word; }
.check-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.slide-subtitle { margin: 6px 0 0; font-size: 11px; color: rgba(255, 255, 255, 0.7); line-height: 1.4; word-wrap: break-word; overflow-wrap: break-word; }
.slide-subtitle .text-white { color: var(--ink); font-weight: 600; }
.slider-dots { display: flex; justify-content: center; gap: 6px; margin-top: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); cursor: pointer; transition: background 0.3s ease; }
.slider-dot.active { background: var(--accent); }

/* Check List */
.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-item { display: flex; gap: 12px; align-items: center; padding: 8px 12px; background: rgba(26, 66, 90, 0.15); border-radius: 8px; }
.check-item p { margin: 0; font-size: 14px; color: var(--ink); }
.green-check { width: 16px; height: 16px; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Credibility Cards */
.credibility-cards { display: flex; flex-direction: column; gap: 8px; }
.credibility-card { background: rgba(26, 66, 90, 0.15); padding: 8px 12px; border-radius: 8px; }
.credibility-inner { display: flex; gap: 8px; }
.credibility-title { margin: 0; font-size: 14px; color: var(--ink); }
.credibility-text { margin: 0; font-size: 14px; color: var(--ink); }
.verify-images { display: flex; align-items: center; gap: 6px; margin-top: 12px; }
.verify-cert { height: 48px; width: auto; }
.verify-arrow { width: 20px; height: 12px; }
.verify-badge { height: 48px; width: auto; }
.brand-logos-small { display: flex; align-items: center; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.brand-logos-small img { height: auto; max-height: 18px; }

/* Recognition Section - 1100+ Top Companies */
.recog { position: relative; background: #0D2436; padding: 40px 0 24px; margin: 36px -24px 0; }
.recog-badge { position: absolute; left: 50%; transform: translateX(-50%); top: -12px; width: 40px; height: 40px; }
.recog-badge img { width: 40px; height: 40px; display: block; }
.recog-title { font-size: 24px; font-weight: 500; color: white; margin: 0 0 24px; line-height: 1.3; padding: 0 12px; text-align: center; }
.recog-title .num { color: #00C1FF; font-weight: 700; }
.recog-slider-container { position: relative; overflow: hidden; padding: 0 12px; }
.recog-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr); gap: 16px; transition: transform 2s ease; }
.recog-card-wrapper { padding: 0.5px; border-radius: 12px; background: conic-gradient(from 180deg, rgba(253, 253, 253, 0) 36%, rgba(255, 255, 255, 0.6) 40%, rgba(251, 251, 251, 0.576) 61%, rgba(253, 253, 253, 0.042) 65%); }
.recog-card { padding: 16px 8px; border-radius: 12px; background: #102941; transition: all 0.3s ease; background-image: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0.43) 40%, rgba(255, 255, 255, 0.36) 49%, rgba(255, 255, 255, 0.3) 59%, rgba(255, 255, 255, 0.18) 88%, rgba(255, 255, 255, 0.13) 100%); }
.recog-card.glow { box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
.recog-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.recog-logo { width: auto; max-width: 100%; height: 40px; object-fit: contain; filter: drop-shadow(0px 0.5px 0px #424447) drop-shadow(0px 1px 0px #424447) drop-shadow(0px 1.5px 0px #424447) drop-shadow(0px 2px 0px #424447); }
.recog-name { font-size: 12px; color: white; margin: 8px 0 0; font-weight: 600; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; }
.recog-avatar { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; border: 1px solid white; margin-top: 6px; }

/* LinkedIn Trusted Professionals Section */
.trusted-professionals { margin-top: 36px; }
.linkedin-slider-container { position: relative; overflow: hidden; }
.linkedin-slider { display: flex; transition: transform 0.5s ease; width: 300%; }
.linkedin-slide { min-width: 33.333%; max-width: 33.333%; flex-shrink: 0; padding: 0 4px; box-sizing: border-box; }
.linkedin-card { border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; width: 100%; }
.linkedin-company-header { position: relative; padding: 10px 0; min-height: 60px; display: flex; align-items: center; justify-content: center; }
.linkedin-company-logo { height: 60px; width: auto; max-width: 100%; object-fit: contain; }
.linkedin-caption { position: absolute; top: 0; right: 0; background: rgba(0, 0, 0, 0.6); color: #fff; padding: 6px 16px 6px 8px; border-radius: 0 16px 0 16px; font-size: 12px; display: flex; align-items: center; gap: 4px; }
.linkedin-content { padding: 8px 16px 8px; width: 100%; box-sizing: border-box; }
.linkedin-profile { display: flex; align-items: flex-end; gap: 8px; width: 100%; }
.linkedin-avatar-wrapper { position: relative; width: 48px; height: 48px; flex-shrink: 0; }
.linkedin-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.linkedin-badge { position: absolute; bottom: 0; right: 0; width: 19px; height: 19px; }
.linkedin-info { flex: 1; min-width: 0; color: #0D2436; }
.linkedin-name { margin: 0; font-size: 14px; font-weight: 700; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.linkedin-dot { color: rgba(13, 36, 54, 0.5); }
.linkedin-exp { font-size: 12px; font-weight: 400; }
.linkedin-role { margin: 2px 0 0; font-size: 12px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.linkedin-post { margin-top: 12px; padding-bottom: 8px; width: 100%; box-sizing: border-box; }
.linkedin-text { margin: 0; font-size: 14px; color: #0D2436; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.linkedin-cert-img { width: 100%; max-width: 100%; height: auto; border-radius: 8px; margin-top: 12px; display: block; }
.linkedin-stats { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; font-size: 14px; color: rgba(13, 36, 54, 0.7); }
.linkedin-reactions { display: flex; align-items: center; gap: 4px; }
.reaction-icon { width: 16px; height: 16px; margin-left: -4px; border-radius: 50%; }
.reaction-icon:first-child { margin-left: 0; z-index: 2; }
.reaction-icon:nth-child(2) { z-index: 1; }

/* Award Winning Platform Section */
.award-platform-section { margin: 36px 0 0; padding: 40px 22px; background: #0D2436; background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%); position: relative; }
.award-header { text-align: center; }
.award-title { font-size: 24px; text-align: center; background: linear-gradient(180deg, #FFF 0%, #83BEFF 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.3; margin: 0; font-weight: 400; }
.award-bold { font-weight: 700; }
.award-recognized { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; }
.award-recognized p { font-size: 16px; font-weight: 500; color: #D5EDFF; margin: 0; }
.google-logo { width: 73px; height: auto; }
.award-caption { min-height: 48px; margin-top: 24px; font-size: 13px; color: #D5EDFF; font-weight: 500; text-align: center; display: flex; align-items: center; justify-content: center; line-height: 1.5; padding: 0 16px; }
.award-slider-container { position: relative; width: 100%; overflow: hidden; margin-top: 24px; }
.award-slider { display: flex; gap: 0; transition: transform 0.5s ease; }
.award-slide { flex-shrink: 0; width: 100%; padding: 0; }
.award-slide img { width: 100%; height: auto; border-radius: 16px; display: block; }
.award-dots { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
.award-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); cursor: pointer; transition: background 0.3s ease; }
.award-dot.active { background: #4a9fd8; }

/* Featured By Section */
.featured-section { padding: 40px 22px; background: #001c2d; }
.featured-title { font-size: 20px; text-align: center; color: #fff; margin: 0 0 24px; font-weight: 400; }
.featured-bold { font-weight: 700; }
.featured-slider-container { position: relative; overflow: hidden; margin-top: 16px; max-width: 280px; margin-left: auto; margin-right: auto; }
.featured-logos { display: flex; transition: transform 0.5s ease; align-items: center; }
.featured-logo { flex-shrink: 0; width: 100%; display: flex; align-items: center; justify-content: center; padding: 20px 0; }
.featured-logo img { width: 100%; max-width: 100%; height: auto; object-fit: contain; max-height: 60px; }
.featured-dots { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
.featured-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); cursor: pointer; transition: background 0.3s ease; }
.featured-dot.active { background: #4a9fd8; }

/* Desktop styles */
@media (min-width: 768px) {
  .award-title { font-size: 32px; }
  .award-slider { gap: 20px; }
  .award-slide { width: calc(33.333% - 13.33px); }
  .featured-slider-container { max-width: 350px; }
  .slide-card { gap: 20px; padding: 12px; }
  .slide-img { width: 140px; height: 96px; }
  .slide-title { font-size: 14px; }
  .slide-subtitle { margin: 10px 0 0; font-size: 12px; }
}

/* FAQ Section */
.faq-section { margin-top: 36px; }
.faq-item { background: rgba(66, 133, 244, 0.15); cursor: pointer; }
.faq-item:first-child { border-radius: 8px 8px 0 0; }
.faq-item:last-child { border-radius: 0 0 8px 8px; }
.faq-item:not(:last-child) { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.faq-item.only-one { border-radius: 8px; }
.faq-header { padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.faq-question { flex: 1; font-size: 16px; font-weight: 500; color: var(--ink); margin: 0; }
.faq-chevron { width: 20px; height: 20px; color: var(--accent); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-chevron.open { transform: rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer.show { max-height: 500px; }
.faq-answer-content { padding: 0 20px 16px 20px; font-size: 14px; font-weight: 300; color: #d1d5db; line-height: 1.6; }
.faq-answer-content a { color: var(--accent); text-decoration: underline; }

/* Responsive */
@media (min-width: 1024px) {
  .hero { 
    padding-top: 24px;
    padding-bottom: 48px;
    min-height: calc(100vh - 64px);
    align-items: center;
  }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .hero-title { font-size: 48px; text-align: left; }
  .logo-row { justify-content: flex-start; gap: 16px; }
  .logo-row img { height: 24px; }
  .hero-visual { display: flex; }
  .cta-desktop { display: block; text-align: left; }
  .mobile-sticky { display: none; }
  .mobile-only { display: none; }
}
