*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0d1b5e;
    --gold: #f5a623;
    --white: #ffffff;
    --light-bg: #f5f6fa;
    --dark-text: #111827;
    --muted: #555e7a;
    --grid-line: rgba(13, 27, 94, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark-text);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 64px;
    box-shadow: 0 2px 24px rgba(13, 27, 94, .18);
}

.logo-wrap{
  display:flex;
  align-items:center;
}

.logo-badge{
  width:clamp(120px, 18vw, 220px); /* landscape width */
  height:auto;
  display:flex;
  align-items:center;
}

.logo-badge img{
  height:48px; /* change as needed */
  width:auto;
  display:block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--white);
}

.btn-cta {
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(245, 166, 35, .45);
}

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: .3s;
}

/* ── HERO ── */
.hero {
    position: relative;
    background: var(--white);
    min-height: calc(100vh - 64px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    /* increased top spacing */
    padding: 110px 5vw 40px;

    overflow: hidden;
}

/* fix top value */
.hero::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 290px;
    height: 290px;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}



.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 2;
      letter-spacing: 2.2px;
    animation: fadeUp .7s ease both;
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--dark-text);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.2px;
    padding: 5px 12px;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--dark-text);
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 2.05;
    color: var(--navy);
    margin-bottom: 32px;
}

.hero-title .highlight {
    color: var(--gold);
    font-style: none;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 380px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Start Journey button yellow */
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    border-radius: 6px;
    padding: 13px 26px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 6px;
    padding: 13px 26px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* hero media card */
.hero-media {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp .9s .15s ease both;
}

.media-card {
    position: relative;
    width: min(460px, 90%);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(13, 27, 94, .18);
}

.media-card img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
}

/* fallback placeholder when no real image */
.media-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.card-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.card-sub {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

.card-bar {
    height: 4px;
    border-radius: 3px;
    background: #e5e7eb;
    margin-top: 8px;
    overflow: hidden;
}

.card-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--gold);
    width: 0%;
    transition: width 1.6s ease .5s;
}

/* ── MISSION ── */
.mission {
    background: var(--navy);
    padding: 80px 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text {
    color: var(--white);
    animation: fadeUp .7s ease both;
}

.mission-title {
      font-family: 'Inter', sans-serif;
  
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.mission-title .highlight {
    color: var(--gold);
}

.mission-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 30px;
}

.mission-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .88);
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--gold);
    font-size: 11px;
}

.mission-images {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    animation: fadeUp .9s .15s ease both;
}

/* image box height increased */
.mission-images .img-wrap {
    width: 260px;
    height: 380px;   /* increased height */
    overflow: hidden;
    border-radius: 18px;
}

/* make image fill full area */
.mission-images .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* first image little up */
.mission-images .img-wrap:first-child {
    transform: translateY(-18px);
}

/* second image little down */
.mission-images .img-wrap:last-child {
    transform: translateY(18px);
}

.mission-images .img-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .35);
    width: 100%;
    height: 420px; /* full height space */
}

/* full image / placeholder fill */
.img-placeholder,
.mission-images .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* remove aspect ratio restriction */
.img-placeholder {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.img-placeholder.tall {
    height: 100%;
}

/* images inside mission */
.mission-images img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* MAIN STACK WRAPPER */
.vision-stack {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 400px;
    margin: auto;
    animation: fadeUp .9s .15s ease both;
}


/* CARD */
.philosophy-card{
  background:rgba(0,0,0,0.85);
  border-left:5px solid #ffb400;
  padding:24px 28px;
  border-radius:14px;
  max-width:720px;
  margin:40px auto;
  color:#f5f5f5;

  box-shadow:0 10px 30px rgba(0,0,0,0.25);
  backdrop-filter:blur(6px);
}

/* QUOTE */
.philosophy-card .quote{
  font-size:16px;
  line-height:1.7;
  letter-spacing:0.3px;
  margin-bottom:12px;
  color:#eaeaea;
}

/* AUTHOR LINE */
.philosophy-card .author{
  font-size:14px;
  color:#FBCF65;
  opacity:0.9;
}

/* OPTIONAL: subtle hover */
.philosophy-card:hover{
  transform:translateY(-3px);
  transition:0.3s ease;
  box-shadow:0 20px 40px rgba(0,0,0,0.35);
}

/* MOBILE */
@media(max-width:600px){
  .philosophy-card{
    padding:18px;
  }

  .philosophy-card .quote{
    font-size:14px;
  }
}

/* TRANSPARENT YELLOW BORDER BUTTON */
.btn-outline-yellow{
  background:transparent;
  color:#ffb400;
  border:2px solid #ffb400;
  padding:12px 26px;
  border-radius:6px;
  font-weight:500;
  cursor:pointer;
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}

/* HOVER FILL EFFECT */
.btn-outline-yellow::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:100%;
  background:#ffb400;
  z-index:-1;
  transition:0.3s ease;
}

/* ON HOVER */
.btn-outline-yellow:hover{
  color:#000;
}

.btn-outline-yellow:hover::before{
  width:100%;
}

/* ACTIVE CLICK */
.btn-outline-yellow:active{
  transform:scale(0.97);
}

/* MOBILE */
@media(max-width:600px){
  .btn-outline-yellow{
    padding:10px 20px;
    font-size:14px;
  }
}
/* CARD STYLE */
.photo-card {
    position: absolute;
    width: 78%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
    transition: .4s ease;
}

.photo-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(100%);
}

/* TOP IMAGE */
.card-top {
    top: 0;
    left: 0;
    height: 230px;
    z-index: 2;
    transform: rotate(-2deg);
}

/* BOTTOM IMAGE */
.card-bottom {
    right: 0;
    bottom: 0;
    height: 230px;
    z-index: 1;
    transform: rotate(3deg);
}

/* HOVER */
.photo-card:hover {
    transform: scale(1.03);
}

/* MOBILE */
@media(max-width:768px) {

    .vision-stack {
        height: 280px;
    }

    .photo-card {
        width: 82%;
    }

    .card-top,
    .card-bottom {
        height: 190px;
    }

}


/* ── FEATURES ── */
.features {
    padding: 80px 5vw;
    background: var(--light-bg);
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
      font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 15px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: left;
    box-shadow: 0 4px 24px rgba(13, 27, 94, .06);
    transition: transform .25s, box-shadow .25s;
    border: 1px solid rgba(13, 27, 94, .07);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(13, 27, 94, .12);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── FOOTER ── */
footer {
    background: #080f38;
    padding: 48px 5vw 32px;
    color: rgba(255, 255, 255, .55);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

footer p {
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ── PROGRAMS SECTION ── */
.programs {
    position: relative;
    padding: 80px 5vw 80px;
    background: var(--white);
    overflow: hidden;
}

/* corner grid decorations */
.programs::before,
.programs::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background-image:
        linear-gradient(rgba(13, 27, 94, 0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 27, 94, 0.10) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.programs::before {
    top: 0;
    right: 0;
}

.programs::after {
    bottom: 0;
    left: 0;
}

.programs-header {
    margin-bottom: 40px;
}

.programs-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--navy);
}

.programs-header h2 .highlight {
    color: var(--gold);
    display: block;
}

.programs-header p {
    font-size: 14px;
    color: var(--muted);
    max-width: 440px;
    line-height: 1.7;
    margin-top: 14px;
}

/* 2×2 course card grid */
.courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.course-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0d1b2e;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .28);
}

/* dark gradient background with SVG pattern mimicking photo */
/* image background fix */
.course-bg {
    position: absolute;
    inset: 0;
    background-size: contain;      /* shows full image */
    background-repeat: no-repeat;  /* no crop repeat */
    background-position: center;
    transition: transform .5s ease;
}

/* if using real <img> inside .course-bg */
.course-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* full image visible */
    object-position: center;
}

/* hover zoom */
.course-card:hover .course-bg {
    transform: scale(1.02);
}

/* keep dark overlay */
.course-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
        rgba(0,0,0,.08) 0%,
        rgba(0,0,0,.55) 65%,
        rgba(0,0,0,.88) 100%);
}

/* each card gets a unique dark themed gradient */
.course-card:nth-child(1) .course-bg {
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #1a1c2c 100%);
}

.course-card:nth-child(2) .course-bg {
    background: linear-gradient(160deg, #0d2137 0%, #0a3d5c 40%, #0d7a8a 70%, #064a6e 100%);
}

.course-card:nth-child(3) .course-bg {
    background: linear-gradient(160deg, #1c1c1c 0%, #2d2d3a 40%, #1a2a3a 70%, #0f1c2e 100%);
}

.course-card:nth-child(4) .course-bg {
    background: linear-gradient(160deg, #0e1628 0%, #1a2540 40%, #142038 70%, #2a1f40 100%);
}

/* subtle noise/texture overlay on cards */
.course-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, .82) 100%);
}

.course-duration {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    padding: 5px 10px;
}

.course-body {
    position: relative;
    z-index: 3;
    padding: 20px 20px 0;
}

.course-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 12px;
}

.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.course-tag {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .8);
    font-size: 10px;
    font-weight: 500;
    border-radius: 4px;
    padding: 3px 8px;
}

.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 20px;
    position: relative;
    z-index: 3;
}

.course-progress-bar {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .2);
    margin-right: 16px;
    overflow: hidden;
}

.course-progress-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--gold);
    width: 0;
    transition: width 1.4s ease .3s;
}

.btn-enroll {
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 9px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    text-decoration: none;
}

.btn-enroll:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-1px);
}

/* ── WHO THIS IS FOR ── */
.who {
    padding: 80px 5vw;
    background: var(--light-bg);
    text-align: center;
}

.who h2 {
     font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 48px;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.who-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(13, 27, 94, .25);
}

.who-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(245, 166, 35, .08);
    pointer-events: none;
}

.who-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
}

.who-card-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.who-list {
    list-style: disc;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.who-list li {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.55;
}

/* ── CONTACT SECTION ── */
.contact-section {
    position: relative;
    padding: 72px 5vw;
    background: #eaecf5;
    overflow: hidden;
}

/* corner grid top-right */
.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 320px;
    background-image:
        linear-gradient(rgba(13, 27, 94, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 27, 94, 0.11) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

/* unified white card wrapping both sides */
.contact-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(13, 27, 94, .12);
}

/* Left: form card */
.contact-form-card {
    background: var(--navy);
    padding: 40px 34px;
}

.contact-form-card h3 {
      font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .85);
    outline: none;
    transition: border-color .2s, background .2s;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, .3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, .12);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.form-group select option {
    background: #0d1b5e;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-full {
    margin-bottom: 14px;
}

.btn-send {
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 7px;
    padding: 13px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 6px;
    transition: transform .15s, box-shadow .2s;
}

.btn-send:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, .4);
}

/* Right: connect + office — white panel, no inner card borders */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    padding: 36px 28px;
}

.connect-card {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(13, 27, 94, .08);
    margin-bottom: 22px;
}

.office-card {
    flex: 1;
}

.connect-card h4,
.office-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}

.social-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
    cursor: pointer;
    border: none;
    color: var(--navy);
    font-weight: 700;
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(245, 166, 35, .4);
}

.office-locations {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
}

.office-loc {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.loc-pin {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.loc-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.loc-addr {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
}

/* map placeholder */
.map-placeholder {
    width: 100%;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #c8d0e8 0%, #dde3f4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid rgba(13, 27, 94, .08);
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13, 27, 94, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 27, 94, 0.07) 1px, transparent 1px);
    background-size: 18px 18px;
}

/* ── CTA BAND ── */
.cta-band {
    padding: 80px 5vw;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* subtle grid corners */
.cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background-image:
        linear-gradient(rgba(13, 27, 94, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 27, 94, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.cta-band::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 160px;
    height: 160px;
    background-image:
        linear-gradient(rgba(13, 27, 94, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 27, 94, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.cta-band h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-band h2 .highlight {
    color: var(--gold);
    font-style: italic;
}

.cta-band p {
    font-size: 15px;
    color: var(--muted);
    max-width: 460px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-cta-enroll {
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    border-radius: 7px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s, box-shadow .2s;
}

.btn-cta-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, .4);
}

.btn-cta-mentor {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 7px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.btn-cta-mentor:hover {
    background: var(--navy);
    color: var(--white);
}

/* ── SITE FOOTER ── */
.site-footer {
    background: var(--navy);
    padding: 52px 5vw 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
    gap: 32px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    align-items: start;
}

/* Brand */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.footer-logo-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
}

.footer-logo-name .gold {
    color: var(--gold);
}

.footer-brand-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .48);
    line-height: 1.72;
    max-width: 200px;
}

/* Column headings */
.footer-col-head {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
    margin-bottom: 16px;
    display: block;
}

/* Nav + Legal links */
.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: color .2s;
}

.footer-links-list a:hover {
    color: var(--gold);
}

/* Stay Connected */
.footer-socials-row {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.f-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}

.f-social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(245, 166, 35, .45);
}

.footer-office-lbl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
    display: block;
    margin-bottom: 6px;
}

.footer-office-address {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
}

/* Bottom bar */
.footer-bottom {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom span {
    font-size: 12px;
    color: rgba(255, 255, 255, .36);
}

.footer-bottom .f-tagline {
    font-style: italic;
}

/* contact + footer responsive */
@media (max-width: 860px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-band h2 {
        font-size: 28px;
    }

    .contact-section::after {
        display: none;
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

    .hero,
    .mission {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-desc {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-media {
        margin-top: 40px;
    }

    .mission-images {
        margin-top: 0;
    }

    .mission-list li {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card {
        min-height: 260px;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        text-align: center;
    }

    .mission {
        gap: 40px;
    }

    .mission-images {
        grid-template-columns: 1fr;
    }

    .mission-images .img-wrap:first-child {
        grid-column: auto;
    }

    .programs::before,
    .programs::after {
        width: 80px;
        height: 80px;
    }
}

/* mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px 5vw;
    z-index: 99;
    flex-direction: column;
    gap: 20px;
    animation: fadeUp .25s ease;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 14px;
}


/* ***************************8  ABOUT ********************************* */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Inter, Arial, sans-serif;
    background: #f3f3f3;
    color: #0b1b66
}

.container {
    max-width: 1180px;
    margin: auto
}

.section {
    padding: 70px 20px
}

.badge {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em
}

.title {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    text-align: center;
    margin: 18px 0
}

.title span {
    color: #f3b000
}

.sub {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
    line-height: 1.7
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.card {
    background: #eee5d6;
    padding: 28px;
    border: 1px solid #dfd2bc;
    border-radius: 8px
}

.icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #0b1b66;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.card h3 {
    font-size: 22px;
    margin-bottom: 14px
}

.card p {
    color: #444;
    line-height: 1.7
}

.tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 22px
}

.tag {
    background: #dfe3ef;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px
}

.dark {
    background: #061a87;
    color: #fff
}

.dark .sub {
    color: #c8d0ff
}

.team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px
}

.member {
    background: #0b0b0b;
    border-radius: 8px;
    overflow: hidden
}

.member img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block
}

.member .info {
    padding: 22px
}

.member h4 {
    font-size: 26px;
    margin-bottom: 8px
}

.role {
    color: #f3b000;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px
}

.member p {
    color: #cfcfcf;
    line-height: 1.6
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px
}

.chip {
    border: 1px solid #444;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: #ddd
}

@media(max-width:992px) {

    .grid3,
    .team {
        grid-template-columns: 1fr 1fr
    }

    .tags {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:640px) {

    .grid3,
    .team,
    .tags {
        grid-template-columns: 1fr
    }

    .section {
        padding: 50px 16px
    }

    .title {
        text-align: center
    }

    .card h3 {
        font-size: 20px
    }

    .member h4 {
        font-size: 22px
    }
}

/* 
********************************  COONTACT ***********************************************

*/

:root {
    --blue: #071a78;
    --gold: #f4b400;
    --light: #f3f4f8;
    --text: #13204a;
    --muted: #7d8498
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ececec;
    color: var(--text)
}

.container {
    max-width: 1180px;
    margin: auto;
    padding: 40px 24px
}

.badge {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: start
}

.hero h1 {
    font-size: 64px;
    line-height: .95;
    font-weight: 800;
    max-width: 520px
}

.hero h1 span {
    color: var(--gold)
}

.hero p {
    margin-top: 24px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 470px
}

.card {
    background: var(--blue);
    color: #fff;
    padding: 28px;
    border-radius: 6px
}

.card h2 {
    margin-bottom: 20px
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.field {
    margin-bottom: 14px
}

.field label {
    display: block;
    font-size: 11px;
    margin-bottom: 6px;
    opacity: .8
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 3px
}

.field textarea {
    height: 110px;
    resize: none
}

.btn {
    background: var(--gold);
    border: none;
    padding: 14px 24px;
    font-weight: 700;
    cursor: pointer
}

.section {
    margin-top: 58px
}

.section h3 {
    font-size: 44px;
    line-height: 1.1
}

.section h3 span {
    color: var(--gold)
}

.section p {
    color: var(--muted);
    margin: 10px 0 24px
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.info {
    background: #e9ebf0;
    padding: 20px;
    border-radius: 6px;
    min-height: 92px
}

.info strong {
    display: block;
    font-size: 13px;
    margin-bottom: 8px
}

.info small {
    color: var(--muted)
}

.office-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 22px;
    align-items: stretch
}

.office-list .branch {
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 14px
}

.branch.light {
    background: #f8f0d6
}

.branch.dark {
    background: var(--blue);
    color: #fff
}

.map {
    border-radius: 6px;
    background: radial-gradient(circle at center, #0f2a9a, #020a25);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    color: #fff;
    text-align: center;
    padding: 20px
}

footer {
    margin-top: 28px;
    background: var(--blue);
    color: #fff
}

.foot {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 24px;
    padding: 34px 24px;
    max-width: 1180px;
    margin: auto
}

.foot h4 {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 14px
}

.foot a,
.foot p {
    display: block;
    color: #d8dbf0;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8
}

.social {
    display: flex;
    gap: 10px;
    margin-bottom: 14px
}

.icon {
    width: 34px;
    height: 34px;
    background: var(--gold);
    display: grid;
    place-items: center;
    color: #111;
    font-weight: 700
}

@media(max-width:900px) {

    .hero,
    .office-wrap,
    .foot {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 52px
    }

    .info-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {
    .container {
        padding: 24px 16px
    }

    .hero h1 {
        font-size: 42px
    }

    .grid2 {
        grid-template-columns: 1fr
    }

    .section h3 {
        font-size: 34px
    }
}