/* ===== GLOBAL ===== */
:root {
  --blue:   #002d79;
  --red:   #e71f2a;
  --black:  #000000;
  --white:  #ffffff;
  --muted:  #6B6E8A;
  --border:  #E6E9F5;
  --shadow: 0 10px 30px rgb(141 141 141 / 8%);
}

body {
    font-family: "Inter", sans-serif;
    color: #1a1a2e;
    background: #fff;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

p, ul, ol{
    margin: 0;
}

.bg-light{
    background: #f8f8fc !important;
}

.common-section-spacing{
    padding: 60px 0;
}

.section-header{
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    row-gap: 5px;
}

.section-header-left{
    align-items: flex-start;
    text-align: left;
}

.section-header-center{
    align-items: center;
    text-align: center;
}

.section-label {
    letter-spacing: 1.2px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    color: var(--blue);
    text-transform: uppercase;
}

.alt-sec-label{
    color: var(--red);
}

.section-title{
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0;
}

.section-description{
    font-size: 16px;
    line-height: 28px;
    color: var(--muted);
    margin-bottom: 30px;
}

.section-desc-center{
    text-align: center;
}

.section-description p + p{
    margin-top: 10px;
}

.program-overview-wrapper{
    display: flex;
    flex-direction: column;
}

.cta-btn-outline{
    background-color: var(--white);
    color: var(--red);
    border-color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    min-width: 180px;
    min-height: 44px;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid;
    transition: background-color 0.3s ease;
    gap: 5px;
}

.cta-btn-outline:hover,
.cta-btn-outline:focus{
    color: var(--blue);
    border-color: var(--blue);
}

.common-btn-wrap {
    display: flex;
    justify-content: center;
}

.common-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 12px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    border-radius: 8px;
    gap: 6px;
}

.cta-outline-btn{
    color: var(--red);
    background-color: var(--white);
    border: 1px solid var(--red);
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.cta-outline-btn:hover,
.cta-outline-btn:focus {
    color: var(--blue);
    background-color: var(--white);
    border-color: var(--blue);
}

.cta-solid-btn{
    color: var(--white);
    background-color: var(--red);
    border: 1px solid var(--red);
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.cta-solid-btn:hover,
.cta-solid-btn:focus {
    color: var(--white);
    background-color: var(--blue);
    border-color: var(--blue);
}

/* ===== NAVBAR ===== */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.site-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    padding: 10px 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    min-width: 260px;
}

.navbar-logo-text{
    display: flex;
    flex-direction: column;
    color: var(--blue);
}

.navbar-logo-text span{
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    line-height: 20px;
}

.navbar-logo-text small{
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    margin-top: 3px;
}

.navbar-brand img {
    display: block;
    height: 58px;
    width: auto;
}

.header-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.header-menu-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--blue);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-menu-toggle.is-active .header-menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header-menu-toggle.is-active .header-menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.header-menu-toggle.is-active .header-menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-menu-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--blue);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.header-nav-link:hover,
.header-nav-link:focus {
    color: var(--red);
}

.header-auth-btn-wrap{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    min-width: 260px;
}

.common-auth-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    min-width: 100px;
    min-height: 44px;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid;
    transition: background-color 0.3s ease;
    gap: 5px;
}

.common-auth-btn i{
    display: none;
}

.header-cta-button {
    color: var(--white);
    background-color: var(--red);
}

.header-cta-button:hover,
.header-cta-button:focus {
    background-color: var(--blue);
    color: var(--white);
}

.header-cta-outline-button{
    background-color: var(--white);
    color: var(--red);
    border-color: var(--red);
}

.header-cta-outline-button:hover,
.header-cta-outline-button:focus {
    border-color: var(--blue);
    background-color: var(--white);
    color: var(--blue);
}

/* ===== HERO ===== */
.hero-section {
    background: RGBA(231, 31, 42, 5);
    background: linear-gradient(120deg, rgba(231, 31, 42, 0.1) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 70%, rgba(231, 31, 42, 0.15) 100%);
    margin-top: 90px;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-image: url(../images/banner-image.png);
    background-repeat: no-repeat;
    background-position: right 100px top;
    background-size: contain;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 58px;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
}

.hero-title-primary {
    color: var(--blue);
}

.hero-title-accent {
    color: var(--red);
}

.hero-subtext {
    font-size: 16px;
    line-height: 26px;
    color: var(--blue);
    font-weight: 500;
    margin: 0 0 30px;
    max-width: 600px;
    position: relative;
    z-index: 5;
}

.hero-lang-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    position: relative;
    z-index: 5;
}

.hero-lang-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 2px 8px;
    min-width: 100px;
    min-height: 40px;
    background-color: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgb(170 170 170 / 30%);
    border-radius: 8px;
    font-size: 12px;
    line-height: 18px;
    color: var(--blue);
    font-weight: 500;
}

.hero-lang-badge img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.hero-feature-list {
    display: flex;
    align-items: flex-start;
    /* gap: 32px; */
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.hero-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hero-feature-item:nth-child(2){
    padding: 0 20px;
    margin: 0 20px;
    border-left: 1px solid #0222593d;
    border-right: 1px solid #0222593d;
}

.hero-feature-icon {
    font-size: 36px;
    line-height: 36px;
    color: var(--blue);
    flex-shrink: 0;
}

.hero-feature-copy {
    min-width: 0;
}

.hero-feature-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    color: var(--blue);
    margin: 0;
}

.hero-feature-desc {
    font-size: 12px;
    line-height: 16px;
    color: var(--muted);
    margin: 4px 0 0;
}

.hero-visual-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    min-width: 0;
}

.side-card-wrapper{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.side-card {
    max-width: 280px;
    background-color: var(--blue);
    border-radius: 10px;
    padding: 24px;
    color: var(--white);
}

.side-card-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.side-card-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.side-card-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.side-card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    color: var(--white);
}

.side-card-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
}

.side-card-cta {
    display: block;
    width: 100%;
    padding: 14px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background-color: var(--red);
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.side-card-cta:hover,
.side-card-cta:focus {
    color: var(--red);
    background-color: var(--white);
}

.alt-side-card-btn{
    color: var(--red);
    background-color: var(--white);
}

.alt-side-card-btn:hover,
.alt-side-card-btn:focus {
    color: var(--white);
    background-color: var(--red);
}

/* ABOUT SECTION */

.about-section {
    background-color: var(--white);
}

.about-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
}

.about-header {
    margin-bottom: 32px;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 10px;
}

.about-label-line {
    display: block;
    width: 32px;
    height: 3px;
    background-color: var(--red);
    flex-shrink: 0;
}

.about-title {
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    color: var(--blue);
    margin: 0;
}

.about-columns{
    margin-bottom: 40px;
}

.about-point-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-point-list li{
    width: calc(50% - 16px);
}

.about-point-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-point-icon i{
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 22px;
    line-height: 1;
    margin-top: 3px;
}

.about-point-item p {
    font-size: 15px;
    line-height: 26px;
    color: var(--muted);
    margin: 0;
}
.about-card {
    border: 1px solid var(--border) !important;
}
.about-card-text{
    text-align: left;
}
.about-visual {
    flex: 0 0 420px;
    width: 420px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f4f7fc;
}

.about-visual-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 0;
}

.about-visual-logo {
    display: block;
    width: 160px;
    height: auto;
}

.about-visual-photo {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 12px;
    object-fit: cover;
}
/* Desktop → 5 cards */
.key-highlights-grid{

    display:grid;

    grid-template-columns:
        repeat(5, minmax(0,1fr));

    gap:24px;

    max-width:1400px;

    margin:auto;
}

/* Keep cards same height */
.key-highlights-grid > div{

    width:100%;
}

.key-highlights-grid .card{

    height:220px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;
}

.key-highlights-grid .card:hover{

    transform:
        translateY(-8px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.08);
}

/* Tablet */
@media(max-width:1200px){

.key-highlights-grid{

    grid-template-columns:
        repeat(3,1fr);
}

}

/* Mobile */
@media(max-width:768px){

.key-highlights-grid{

    grid-template-columns:
        repeat(2,1fr);
}

}

/* Small Mobile */
@media(max-width:576px){

.key-highlights-grid{

    grid-template-columns:
        1fr;
}

}
.about-feature-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.about-feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.about-feature-icon {
width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    color: var(--white);
}

.about-feature-icon-blue {
    background-color: var(--blue);
}

.about-feature-icon-red {
    background-color: var(--red);
}

.about-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.about-feature-meta {
    font-size: 12px;
    line-height: 16px;
    color: var(--muted);
}

.about-feature-highlight {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: var(--blue);
}

.about-feature-highlight-block {
    font-size: 15px;
    line-height: 20px;
}

/* admission open */
.lang-badge-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.lang-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    background: #fff;
    color: var(--black);
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.lang-badge img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
}


/* ===== PROGRAMME CARDS ===== */
.program-overview-section{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.program-overview-content{
    width: calc(100% - 280px);
}

.program-overview-content .section-description{
    margin-bottom: 0;
}

.program-overview-image{
    width: 250px;
}

.prog-card-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.prog-card {
    background: #fff;
    transition: box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 25px;
    border-radius: 10px;
    border: 1px solid #e7e7e7;
    padding: 20px;
}

.prog-hours {
    min-width: 100px;
    min-height: 100px;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

.prog-time{
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    color: var(--white);
}

.prog-card-detail{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.prog-card-label{
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: var(--blue);
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #e7e7e7;
}

.prog-card-value{
    display: flex;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
    line-height: 24px;
    gap: 10px;
}

.prog-card-value span{
    display: flex;
    align-items: center;
    gap: 5px;
}

.approach-box-wrapper{
    display: flex;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
    row-gap: 15px;
    gap: 20px;
    justify-content: space-between;
}

.program-info-div{
    padding: 20px;
    border: 1px solid var(--blue);
    background-color: #ebf2ff;
    border-left-width: 5px;
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.program-info-div i{
    width: 50px;
    height: 50px;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--blue);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.program-info-div p{
    width: calc(100% - 70px);
    color: var(--blue);
}

/* ===== APPROACH CARDS ===== */
.approach-card {
    transition: box-shadow 0.2s;
    padding: 20px;
    border-radius: 12px;
    /* background-color: #fff; */
    background-color: #f3f9ff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    height: 100%;
}

.approach-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
}

.approach-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    min-width: 150px;
    gap: 10px;
    position: relative;
}

.approach-icon-box i{
    font-size: 32px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background-color: #d9e7ff;
    border-radius: 50%;
}

.approach-icon-circle{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 10;
    margin: 0 auto 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    --bs-bg-opacity: 0.1;
}

.approach-title{
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
}

.approach-box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 80px);
}

.approach-icon-box .approach-label{
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--blue);
}

.approach-icon-box .approach-label br{
    display: none;
}

.approach-description{
    color: var(--muted);
}


/* ===== our learning ===== */
.learning-section {
    background-color: var(--white);
}

.learning-row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.learning-row-top {
    margin-bottom: 40px;
}

.learning-row-bottom {
    display: block;
    width: 100%;
}

.learning-col-intro {
    flex: 1;
}

.learning-col-intro .section-description{
    margin: 0;
}

.learning-col-content {
    width: 100%;
}

.learning-col-media {
    flex: 1;
}

.learning-features-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--blue);
    margin: 0 0 20px;
}

.learning-feature-list {
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.learning-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.learning-feature-icon {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 24px;
    color: var(--red);
    margin-top: 2px;
}

.learning-feature-copy {
    min-width: 0;
}

.learning-feature-name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--blue);
    margin: 0 0 4px;
}

.learning-feature-desc {
    font-size: 15px;
    line-height: 26px;
    color: var(--muted);
    margin: 0;
}

.learning-video-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.learning-video-img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
}

.learning-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--red);
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.learning-video-play:hover,
.learning-video-play:focus {
    transform: translate(-50%, -50%) scale(1.08);
    background-color: var(--blue);
}

.learning-video-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    color: var(--white);
    background-color: rgba(2, 34, 89, 0.65);
}

/* ===== education ===== */
.lang-opp-card {
    border-radius: 8px;
    /* border: 1px solid #e7e7e7; */
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    /* background-color: #fff; */
    background-color: #f3f9ff;
    transition: box-shadow 0.2s;
    padding: 15px;
    height: 100%;
}

.lang-header{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.lang-opp-card img {
    width: 40px;
    height: 26px;
    object-fit: contain;
    border-radius: 2px;
}

.lang-header-name{
    font-size: 18px;
    line-height: 24px;
    color: var(--blue);
    font-weight: 700;
}

.lang-opp-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.lang-description{
    font-size: 16px;
    line-height: 24px;
    color: var(--muted);
    font-weight: 500;
}


/* ===== OPPORTUNITY section ===== */
.opp-card-wrapper{
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    margin-bottom: 40px;;
}

.opp-card {
    padding: 20px 5px;
    border-radius: 10px;
    border: 1px solid #e7e7e7;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.opp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
}

.opp-card i{
    width: 50px;
    height: 50px;
    font-size: 22px;
    background-color: #ecf3ff;
    color: var(--blue);
    border-radius: 50%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opp-card-name{
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: var(--black);
    min-height: 44px;
}

/* ===== WHY JOIN CARDS ===== */
.why-card {
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid #e7e7e7;
    background-color: #fff;
    min-height: 60px;
}

.why-card:hover {
    border-color: #dc3545 !important;
}

.why-card i{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--blue);
}

.why-card-label{
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: var(--black);
}

/* ===== OPP AWAIT CARDS ===== */
.career-section-card{
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    background-color: #f3f9ff;
    padding: 20px;
    border-radius: 10px;
}

.opp-await-card{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.opp-await-card i{
    width: 40px;
    height: 40px;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.opp-await-card span{
    font-size: 16px;
    line-height: 24px;
    color: var(--blue);
    font-weight: 600;
    width: calc(100% - 50px);
}

/* ===== our center ===== */
.our-center-section .row{
    align-items: flex-end;
}

.centre-card{
    padding: 20px;
    border-radius: 10px;
    background-color: #f3f9ff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    min-height: 270px;
}

.center-card-list{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.center-card-list + .center-card-list{
    margin-top: 15px;
}

.center-location{
    display: flex;
    flex-direction: column;
}

.center-location h5{
    font-size: 20px;
    line-height: 28px;
    color: var(--red);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.center-location p{
    font-size: 14px;
    line-height: 22px;
    color: var(--blue);
    font-weight: 600;
}

.center-location span{
    font-size: 14px;
    line-height: 22px;
    color: var(--blue);
    font-weight: 600;
}

.center-icon{
    font-size: 16px;
    color: var(--red);
}

.center-contact-link a{
    color: var(--black);
}

.center-contact-link a:hover{
    color: var(--red);
}

.center-btn-wrap{
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
    margin-top: 30px;
}

.center-btn-wrap .common-cta-btn{
    min-width: 150px;
    padding: 8px;
    font-size: 14px;
    line-height: 24px;
}

.coming-soon-card{
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 270px;
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    background-color: #f3f9ff;
    /* background-color: var(--white); */
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.coming-soon-title{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var(--blue);
}

.coming-soon-card-left{
    max-width: 370px;
    width: 100%;
}

.coming-soon-card-right{
    max-width: calc(100% - 370px);
}

.coming-soon-card-left .common-cta-btn{
    min-width: 180px;
    padding: 10px;
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.carousel-item-image{
    width: calc(33% - 10px);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FOOTER ===== */
footer {
    border-top: 3px solid var(--red);
}

.footer-bg{
    background-color: #002056;
}

.footer-logo-row{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 10px;
}

.footer-logo-wrap{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-wrap img {
    display: block;
    height: 63px;
    width: 64px;
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.footer-top-row{
    display: flex;
    align-items: center;
}

.footer-top-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.footer-logo-wrap img {
    display: block;
    height: 53px;
    width: 54px;
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    color: var(--white);
    font-size: 14px;
    line-height: 20px;
}

.footer-text {
    font-size: 14px;
    line-height: 22px;
    color: var(--white);
}

.footer-contact-links{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-left: auto;
}

.footer-contact{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i{
    color: var(--red);
}

.footer-contact a{
    color: var(--white);
}

.footer-contact a:hover{
    color: var(--red);
}

.copyright-text{
    font-size: 12px;
    line-height: 18px;
    text-align: center;
}
/* Keep all cards same size */
.flip-card{
    height: 240px;
    perspective: 1200px;
}

/* Animation */
.flip-card-inner{
    position: relative;
    width:100%;
    height:100%;
    transition: transform .7s cubic-bezier(.4,.2,.2,1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner{
    transform: rotateY(180deg);
}

/* Shared */
.flip-card-front,
.flip-card-back{
    position:absolute;
    width:100%;
    height:100%;
    border-radius:24px;
    backface-visibility:hidden;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:28px;
    background:#fff;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    border:1px solid rgba(0,0,0,.05);
}

/* Front */
.flip-card-front{
    text-align:center;
}

.flip-card-front h5{
    margin-top:18px;
    font-weight:700;
}

/* Icon */
.highlight-icon{
    width:70px;
    height:70px;

    border-radius:50%;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    transition:.3s;
}

/* Back */
.flip-card-back{
    transform:rotateY(180deg);

    background:
      linear-gradient(
        135deg,
        #003c88,
        #0055cc
      );

    color:#fff;

    text-align:left;
}

.flip-card-back h6{
    margin-bottom:16px;
    text-align:center;
    font-weight:700;
}

.flip-card-back ul{
    padding-left:18px;
    margin:0;
}

.flip-card-back li{
    margin-bottom:10px;
    font-size:14px;
}

.language-list{

    list-style:none;

    padding:0;

    margin:0;

    display:grid;

    grid-template-columns:
        repeat(2, minmax(90px,1fr));

    gap:7px;

    justify-content:center;

    max-width:240px;

    margin-inline:auto;
}

.language-list li{

    background:rgba(255,255,255,.12);

    border-radius:30px;

    padding:10px 14px;

    text-align:center;

    white-space:nowrap;
}
.learning-feature-grid{

    display:grid;

    grid-template-columns:
        repeat(5,1fr);

    gap:20px;

    margin-top:40px;
}

.feature-card{

    background:#fff;

    padding:30px 24px;

    border-radius:26px;

    text-align:center;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

    border:1px solid #eef2ff;
}

.feature-card:hover{

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.10);
}

.feature-icon{

    width:72px;

    height:72px;

    margin:auto;

    border-radius:22px;

    background:
        linear-gradient(
            135deg,
            #0057ff,
            #0ba5ff
        );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:22px;
}

.feature-card h5{

    font-size:20px;

    color:#083b8a;

    margin-bottom:18px;

    font-weight:700;
}

.feature-card ul{

    list-style:none;

    padding:0;

    margin:0;
}

.feature-card li{

    position:relative;

    padding:8px 0;

    color:#667085;

    font-size:15px;
}

.feature-card li::before{

    content:"✓ ";

    color:#0057ff;

    font-weight:bold;
}

/* Tablet */
@media(max-width:1200px){

.learning-feature-grid{

    grid-template-columns:
        repeat(3,1fr);
}

}

/* Mobile */
@media(max-width:768px){

.learning-feature-grid{

    grid-template-columns:
        1fr;
}

}
.centres-expand{
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:.7s;
    margin-top:0;
    padding:10px;
    border-radius: 10px;
    background-color: #f3f9ff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.centres-expand.show{
    max-height:1600px;
    opacity:1;
    margin-top:50px;
}

.centre-expand-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    height:100%;
}

.expand-stats{

    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:15px;
    margin:30px 0;
}

.expand-stats div{

    background:#f5f8ff;
    padding:18px;
    border-radius:18px;
    text-align:center;
}

.expand-stats strong{
    display:block;
    color:#003b95;
    font-size:22px;
}

.expand-points{

    margin:20px 0 30px;
}

.expand-points li{

    margin-bottom:10px;
}

.centre-map-card img{

    width:100%;

    box-shadow:
        0 12px 35px rgba(0,0,0,.08);
}

@media(max-width:768px){

.expand-stats{

    grid-template-columns:1fr;
}

}
