* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.center {
  text-align: center;
}

/* ================= NAVBAR ================= */

.navbar {
  background: #ffffff;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 42px;      /* control size here */
  width: auto;
  display: block;
  object-fit: contain;
}

/* ================= NAV LINKS ================= */

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #1e3a8a;
}

.nav-cta {
  background: #1e3a8a;
  color: white !important;
  padding: 8px 16px;
  border-radius: 6px;
}
/* HERO */

.hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
  padding: 100px 0;
}

.hero h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 20px;
  margin-bottom: 10px;
}

.hero-proof {
  font-size: 16px;
  margin-bottom: 30px;
  color: #cbd5e1;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* BUTTONS */

.btn-primary {
  background: #ffffff;
  color: #0f172a;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
}

.btn-secondary {
  background: #2563eb;
  color: #ffffff;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

/* TRUST */

.trust-strip {
  padding: 25px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 600;
}

/* SECTIONS */

.section {
  padding: 80px 0;
}

.section.light {
  background: #f1f5f9;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* MODULE */

.module {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.module ul {
  margin-top: 15px;
  padding-left: 20px;
}

/* PRICING */

.pricing {
  background: #0f172a;
  color: white;
  padding: 80px 0;
}

.price-box {
  background: #1e293b;
  padding: 50px;
  border-radius: 8px;
  max-width: 500px;
  margin: auto;
}

.price {
  font-size: 42px;
  font-weight: 800;
  margin: 20px 0;
}

/* FOOTER */
/* ================= FOOTER ================= */

footer {
  font-family: 'Inter', sans-serif;
}

/* SECTION SPACING */
footer {
  margin-top: 80px;
}

/* HEADINGS */
footer h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111827; /* dark slate */
}

/* TEXT */
footer p {
  font-size: 13px;
  line-height: 1.6;
  color: #4b5563;
}

/* LIST */
footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer ul li {
  font-size: 13px;
  margin-bottom: 6px;
  color: #4b5563;
}

/* LINKS */
footer a {
  text-decoration: none;
  transition: all 0.25s ease;
}

footer a:hover {
  color: #2563eb; /* blue-600 */
}

/* CTA BUTTON */
footer .cta-btn {
  display: block;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease;
}

/* PRIMARY CTA */
footer .cta-primary {
  background: #2563eb;
  color: white;
}

footer .cta-primary:hover {
  background: #1d4ed8;
}

/* SECONDARY CTA */
footer .cta-secondary {
  border: 1px solid #2563eb;
  color: #2563eb;
}

footer .cta-secondary:hover {
  background: #2563eb;
  color: white;
}

/* GLOBAL TEXT LINE */
footer .global-text {
  font-size: 11px;
  color: #6b7280;
  margin-top: 10px;
}

/* TRUST LINE */
footer .trust-line {
  font-size: 11px;
  font-weight: 600;
  color: #1d4ed8;
  margin-top: 6px;
}

/* BOTTOM COPYRIGHT */
footer .footer-bottom {
  margin-top: 30px;
  font-size: 11px;
  text-align: center;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  footer {
    text-align: center;
  }

  footer .grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  footer .cta-btn {
    width: 100%;
  }

}

/* GLOBAL CONTAINER FIX */
.container {
  max-width: 1200px;
  margin: 0 auto;   /* THIS CENTERS EVERYTHING */
  padding: 0 20px;
}

/* SECTION CENTERING */
.section {
  padding: 60px 0;
}

/* TEXT CENTER HELPERS */
.center {
  text-align: center;
}

/* FOOTER FIX */
footer {
  width: 100%;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= COURSE RESOURCES ================= */

.course-resources {
  padding: 80px 0;
  background: #f8fafc;
}

.course-resources h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 15px;
}

.course-resources p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
}

.downloads-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.download-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.download-item:hover {
  transform: translateY(-6px);
}

.download-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.download-item p {
  margin-bottom: 20px;
  font-weight: 600;
  color: #1e3a8a;
}

.download-item .btn {
  background: #1e3a8a;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.download-item .btn:hover {
  background: #15306b;
}

/* ================= TESTIMONIALS ================= */

.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonials h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}

.testimonial-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.testimonial-item {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  position: relative;
}

.testimonial-item p {
  font-style: italic;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1e3a8a;
}
/* ================= URGENCY SECTION ================= */

.urgency-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
  text-align: center;
}

.urgency-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.urgency-highlight {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.urgency-text {
  max-width: 700px;
  margin: 0 auto 30px auto;
  opacity: 0.9;
}

.countdown-box {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 10px;
  margin: 30px auto;
  max-width: 400px;
}

.scarcity-warning {
  margin-top: 20px;
  font-weight: 600;
  color: #facc15;
}
/* ================= LIVE OPPORTUNITY ================= */

.live-opportunity {
  padding: 90px 0;
  background: #f8fafc;
}

.opportunity-sub {
  margin-bottom: 50px;
  color: #555;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.op-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.op-card:hover {
  transform: translateY(-6px);
}

.op-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.price-warning {
  padding: 20px 0;
  background: #fee2e2;
  text-align: center;
}

.warning-text {
  color: #b91c1c;
  font-weight: 700;
}
.salary-growth {
  padding: 80px 0;
  background: #f1f5f9;
  text-align: center;
}

.salary-box {
  margin-top: 30px;
  font-weight: 600;
  font-size: 18px;
  color: #1e3a8a;
}
/* ================= CORPORATE BULK ================= */

.corporate-bulk {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
}

.bulk-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bulk-left h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.bulk-left p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.bulk-benefits {
  list-style: none;
  padding: 0;
}

.bulk-benefits li {
  margin-bottom: 12px;
}

.bulk-right {
  display: flex;
  justify-content: center;
}

.bulk-card {
  background: white;
  color: #1e3a8a;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.bulk-card h3 {
  margin-bottom: 20px;
}

.bulk-highlight {
  font-weight: 700;
  margin-bottom: 15px;
}

.bulk-note {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

/* Responsive */
@media(max-width: 900px){
  .bulk-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ================= CORPORATE BUTTON ================= */

.bulk-card .btn-corporate {
  display: inline-block;
  width: 100%;
  background: #1e3a8a;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.bulk-card .btn-corporate:hover {
  background: #0f172a;
  transform: translateY(-2px);
}
