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

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0b1d3a;
  background: #f7f9fc;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Header */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(11, 29, 58, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;                 /* real size (keeps header height same) */
    transform: scale(3.2);        /* visually enlarge more */
    transform-origin: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.main-nav a {
  padding: 0.3rem 0.5rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f8b400;
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.btn-nav {
  padding: 0.4rem 1.4rem;
  border-radius: 999px;
  border: 2px solid #f8b400;
  color: #f8b400;
}

.btn-nav:hover {
  background: #f8b400;
  color: #0b1d3a;
}

/* Mobile Nav */

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #0b1d3a;
  border-radius: 8px;
  padding: 0.2rem 0.5rem;
  font-size: 1.1rem;
}

/* Hero */

.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top left, #fef6dd 0, transparent 50%), #f7f9fc;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  max-width: 32rem;
}

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

.hero-highlight {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0b1d3a;
  background: #ffffff;
  display: inline-flex;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.hero-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 25px rgba(11, 29, 58, 0.12);
}

.hero-card h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section-alt {
  background: #ffffff;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  text-align: center;
  font-size: 0.98rem;
  color: #5b6a88;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

/* Grid & Cards */

.grid {
  display: grid;
  gap: 1.2rem;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 10px 22px rgba(11, 29, 58, 0.06);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: #4c5973;
}

.course-card ul {
  margin-top: 0.6rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #4c5973;
}

.course-card li {
  margin-bottom: 0.25rem;
}

/* Enroll */

.enroll-section {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2rem;
  align-items: flex-start;
}

.enroll-points {
  margin-top: 0.8rem;
  padding-left: 1.1rem;
}

.enroll-points li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.enroll-card {
  padding-top: 1.4rem;
}

/* Forms */

form {
  display: grid;
  gap: 0.7rem;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  display: grid;
  gap: 0.25rem;
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid #d2d9e8;
  padding: 0.5rem 0.6rem;
  font: inherit;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #f8b400;
  box-shadow: 0 0 0 2px rgba(248, 180, 0, 0.18);
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  font-size: 0.8rem;
  color: #6c7893;
  margin-top: -0.3rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn.primary {
  background: #f8b400;
  color: #0b1d3a;
  box-shadow: 0 10px 22px rgba(248, 180, 0, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(248, 180, 0, 0.42);
}

.btn.outline {
  background: transparent;
  border-color: #0b1d3a;
  color: #0b1d3a;
}

.btn.outline:hover {
  background: #0b1d3a;
  color: #ffffff;
}

.btn.full-width {
  width: 100%;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-details h3 {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
}

.contact-details p {
  font-size: 0.92rem;
  color: #4c5973;
}

.contact-details a {
  color: #0b1d3a;
  font-weight: 500;
}

/* Tables */

.table-card h2 {
  margin-bottom: 0.8rem;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 650px;
  font-size: 0.9rem;
}

th,
td {
  padding: 0.7rem 0.8rem;
  text-align: left;
}

thead {
  background: #0b1d3a;
  color: #ffffff;
}

tbody tr:nth-child(even) {
  background: #f4f6fb;
}

tbody tr:nth-child(odd) {
  background: #ffffff;
}

.table-note {
  font-size: 0.8rem;
  color: #6c7893;
  margin-top: 0.6rem;
}

/* Footer */

.site-footer {
  background: #0b1d3a;
  color: #b9c2da;
  padding: 1.2rem 0;
  margin-top: 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.footer-note {
  opacity: 0.8;
}

/* Utilities */

.mt-lg {
  margin-top: 2rem;
}

.alt-page .section-title {
  text-align: left;
}

.alt-page .section-subtitle {
  text-align: left;
  margin-left: 0;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .enroll-section,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-card {
    order: -1;
  }

  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    right: 5%;
    top: 100%;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 30px rgba(11, 29, 58, 0.16);
    padding: 0.75rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.6rem;
    min-width: 180px;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .grid.three,
  .grid.four {
    grid-template-columns: minmax(0, 1fr);
  }

    .logo img {
        transform: scale(2.4);
    }
  .section {
    padding: 2.2rem 0;
  }
}




/* SEO + Blog additions */

.kicker{
  display:inline-block;
  margin-bottom:0.6rem;
  font-weight:600;
  color:#0b1d3a;
  opacity:0.9;
}

.text-link{
  display:inline-block;
  margin-top:0.6rem;
  color:#0b1d3a;
  font-weight:600;
  border-bottom:2px solid rgba(248,180,0,0.9);
  padding-bottom:2px;
}

.breadcrumbs{
  font-size:0.9rem;
  color:rgba(11,29,58,0.75);
  margin-bottom:0.8rem;
}
.breadcrumbs a{
  color:rgba(11,29,58,0.85);
}
.breadcrumbs span{
  font-weight:600;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:1.5rem;
  padding:2rem 0;
  border-top:1px solid rgba(11,29,58,0.08);
}
.footer-logo{height:80px; width:auto; margin-bottom:0.8rem;}
.footer-title{font-size:1rem; margin-bottom:0.6rem;}
.footer-small{font-size:0.95rem; color:white;}
.footer-links{list-style:none; display:grid; gap:0.35rem; margin-top:0.2rem;}
.footer-links a{color:white;}
.footer-bottom{
  padding:1rem 0 1.5rem;
  border-top:1px solid rgba(11,29,58,0.08);
  text-align:center;
  font-size:0.95rem;
  color:yellow;
}

.checklist{
  list-style:none;
  display:grid;
  gap:0.45rem;
  margin-top:0.6rem;
}
.checklist li{
  padding-left:1.6rem;
  position:relative;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#0b1d3a;
  font-weight:700;
}

.faq details{
  background:#fff;
  border:1px solid rgba(11,29,58,0.08);
  border-radius:14px;
  padding:0.9rem 1rem;
  margin-bottom:0.7rem;
}
.faq summary{
  cursor:pointer;
  font-weight:600;
}
.faq p{
  margin-top:0.6rem;
  color:rgba(11,29,58,0.85);
}

.section-title-sm{
  font-size:1.35rem;
  margin-bottom:0.8rem;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1.2rem;
}
.blog-card .blog-title{font-size:1.1rem; line-height:1.35;}
.blog-meta{font-size:0.85rem; color:rgba(11,29,58,0.65); margin-bottom:0.35rem;}
.blog-excerpt{margin-top:0.5rem; color:rgba(11,29,58,0.85);}
.post-card h2{margin-top:1rem;}

.blog-controls{
  background:#fff;
  border:1px solid rgba(11,29,58,0.08);
  border-radius:18px;
  padding:1rem;
}
.blog-controls-grid{
  display:grid;
  grid-template-columns: 1.6fr 1fr auto;
  gap:0.9rem;
  align-items:end;
}
.control-label{
  display:block;
  font-size:0.85rem;
  color:rgba(11,29,58,0.75);
  margin-bottom:0.35rem;
}
.control-input{
  width:100%;
  padding:0.75rem 0.9rem;
  border-radius:14px;
  border:1px solid rgba(11,29,58,0.14);
  background:#fff;
  font-family:inherit;
}
.control-actions{
  display:flex;
  justify-content:flex-end;
}
.blog-result{
  font-size:0.9rem;
  color:rgba(11,29,58,0.75);
}

.map-embed{
  width:100%;
  aspect-ratio: 16 / 10;
  overflow:hidden;
  border-radius:16px;
  border:1px solid rgba(11,29,58,0.08);
}
.map-embed iframe{
  width:100%;
  height:100%;
  border:0;
}

@media (max-width: 900px){
  .footer-grid{grid-template-columns:1fr; }
  .blog-grid{grid-template-columns:1fr;}
  .blog-controls-grid{grid-template-columns:1fr; align-items:stretch;}
  .control-actions{justify-content:stretch;}
}
