{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0A1628;
  --royal: #1B3A8C;
  --gold: #F5A623;
  --teal: #3A8A85;
  --green: #1DB07A;
  --offwhite: #F8F9FC;
  --charcoal: #0D0D0D;
  --gray: #6B7280;
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

html,body {
 
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--charcoal);
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.program-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  /*padding: 32px 24px;*/
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.program-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), #FF9E42);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.program-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.program-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
  font-weight: 500;
}

.program-meta span {
  padding: 4px 8px;
  background: #F3F4F6;
  border-radius: 4px;
}

.program-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.know-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--royal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
}

.know-more:hover {
  gap: 10px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(58, 138, 133, 0.08) 100%);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.highlight-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.highlight-box h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.highlight-box p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.tab-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border: 2px solid #E5E7EB;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  color: var(--navy);
}

.tab-btn.active {
  background: var(--royal);
  color: white;
  border-color: var(--royal);
}

.tab-btn:hover:not(.active) {
  border-color: var(--royal);
  color: var(--royal);
}


a { text-decoration: none; }

/* =============================================
   NAVIGATION
============================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  transition: background 0.4s, box-shadow 0.4s;
  background-color: transparent;
}

#nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  border-bottom: 1px solid white;
}

#nav.scrolled .hamburger span { background: #ffffff; }

.hamburger span {
  width: 24px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-logo-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-logo-wrap img { height: 44px; width: auto; }

.nav-logo-wrap .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 7px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.btn-apply {
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 7px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-apply:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(245,166,35,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* DRAWER */
#drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1100;
  padding: 20px 0 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s ease-in-out;
  will-change: transform;
}

#drawer.open { transform: translateX(0); }

#drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 12px 28px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}

.drawer-link:hover { color: #fff; background: rgba(255,255,255,0.06); }

.drawer-cta { margin: 24px 28px 0; }

.drawer-cta a {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: 8px;
}
.nav-logo-pill{
  /* background:#ffffff; */
  /*border-radius:10px;*/
  /*padding:6px 16px;*/
  display:flex;
  align-items:center;
  /*box-shadow:0 2px 12px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.6);*/
}
.nav-logo-pill img{height:70px;width:auto;display:block;}
.scrolled > .nav-logo-pill img{height:60px;}
.scrolled > .nav-logo-pill.logo {
    height: 50px;
}

footer{background:var(--navy);padding:60px 40px 32px;color:rgba(255,255,255,.65);}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 2fr;gap:40px;margin-bottom:40px;}
.footer-brand .nav-logo{margin-bottom:16px;}
.footer-brand p{font-size:14px;line-height:1.7;max-width:280px;}
.footer-col h4{font-size:13px;font-weight:700;color:#fff;letter-spacing:.08em;text-transform:uppercase;margin-bottom:16px;}
.footer-col a{display:block;font-size:14px;color:rgba(255,255,255,.55);margin-bottom:10px;transition:color .2s;}
.footer-col a:hover{color:#fff;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;font-size:13px;}
.footer-bottom a{color:rgba(255,255,255,.4);transition:color .2s;}
.footer-bottom a:hover{color:#fff;}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:580px){
  .footer-grid{grid-template-columns:1fr;}
  footer{padding:48px 20px 24px;}
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-apply { padding: 9px 14px !important; }
}
@media (max-width: 600px) {
  .btn-apply { display: none !important; }
  .nav-logo-wrap img { height: 36px !important; }
}
.banner-content{
  text-align: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  footer { padding: 40px 20px 24px !important; }
  footer > div[style*="2fr 1fr 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 32px !important; }
  section { width: 100%; }
  .banner-content { padding: 80px 20px !important; }
}
@media (max-width: 600px) {
  section[style*="padding:140px 40px 80px"] { padding: 100px 20px 60px !important; }
  section[style*="padding:140px 40px 80px"] p[style*="font-size:18px"] { font-size: 16px !important; }
  section[style*="padding:80px 40px"] { padding: 60px 20px !important; }
  section { width: 100%; }
  .tab-btn { padding: 10px 16px !important; font-size: 14px; }
  .banner-content { padding: 20px 20px !important; }
  div[style*="minmax(180px,1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
  footer > div[style*="justify-content:space-between"] { flex-direction: column !important; align-items: center !important; text-align: center !important; }
}
@media (max-width: 480px) {
  .program-grid { grid-template-columns: 1fr !important; }
  section { width: 100%; }
  .highlight-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 360px) {
  div[style*="minmax(180px,1fr)"] { grid-template-columns: 1fr !important; }
  div[onclick*="wa.me"] { padding: 10px 14px !important; font-size: 12px !important; bottom: 16px !important; right: 16px !important; }
}


/*cards */
.prog-card {
    /*width: 100%;*/
    /*flex-shrink: 0;*/
    /*background: rgb(26, 26, 26);*/
    /*border-radius: 12px;*/
    /*overflow: hidden;*/
    /*border-width: 1px;*/
    /*border-style: solid;*/
    /*border-color: rgba(255, 255, 255, 0.08);*/
    /*border-image: initial;*/
    /*transition: transform 0.3s, border-color 0.3s;*/
    /*height: 450px;*/
    
    width: 100%;
    flex-shrink: 0;
    /*background: rgb(255 255 255);*/
    /*background: linear-gradient(135deg, #0A1628 0%, #1B3A8C 100%);*/
    border-radius: 12px;
    overflow: hidden;
    /*border-width: 1px;*/
    /*border-style: solid;*/
    /*border-color: rgba(255, 255, 255, 0.08);*/
    /*border: 1px solid #000;*/
    border-image: initial;
    transition: transform 0.3s, border-color 0.3s;
    /*height: 480px;*/
}

.prog-card-thumb {
    position: relative;
    /*height: 190px;*/
    height: 300px;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(27, 58, 140), rgb(10, 22, 40));
    overflow: hidden;
}

.prog-card-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover!important;
    opacity: 1;
}

.prog-card-body {
    padding: 20px;
}

.prog-card-body h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    /*color: #fff;*/
    margin-bottom: 6px;
}

.prog-card-desc {
    font-size: 13px;
    /*color: #fff;*/
    margin-bottom: 14px;
}

.prog-meta {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    gap: 5px;
}

.prog-meta-item {
    font-size: 12px;
    /*color: #fff;*/
    display: flex;
    align-items: center;
    gap: 6px;
}

.prog-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #fff;
}

.prog-explore {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 4px;
}

.prog-apply {
    font-size: 12px;
    font-weight: 700;
    color: var(--charcoal);
    background: rgb(255, 255, 255);
    padding: 7px 14px;
    border-radius: 5px;
    transition: background 0.2s;
}

.specification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.specification-card {
    color: #fff;
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.orange {
    background: linear-gradient(135deg,#F5A623 0%,#FF9E42 100%);
}

.blue {
    background: linear-gradient(135deg,#1B3A8C 0%,#0A1628 100%);
}

.teal {
    background: linear-gradient(135deg,#3A8A85 0%,#2A6F6A 100%);
}

.green {
    background: linear-gradient(135deg,#1DB07A 0%,#16926F 100%);
}

/*****************Footer Social Links*******************/

.footer-social h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #fff;
    color: #000;
}