﻿
:root {
    --purple: #4B1D69;
    --gold: #FFAE00;
    --bg: #f5f7fa;
    --card: #fff;
    --muted: #666;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Montserrat,Arial,sans-serif;
    background: var(--bg);
    color: #222;
}

/* ===== MASTER LAYOUT ===== */
.main-layout {
    display: grid;
    grid-template-columns: 35% 70%;
    min-height: 100vh;
}



.left-panel {
    background: var(--bg);
    padding: 40px 25px;
    box-shadow: 6px 0 30px rgba(0,0,0,.08);
    position: sticky;
    align-self: start;
    display: flex;
    flex-direction: column;
}


    .left-panel h3 {
        font-size: 22px;
        font-weight: 800;
        color: var(--purple);
        margin-bottom: 16px;
    }

/* Carousel */
.carousel {
    flex: 1;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    position: relative;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform .6s ease;
}

/*   .carousel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        flex-shrink: 0;
    }*/


.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /*  keeps hair visible */
    flex-shrink: 0;
}

.carousel img {
    background: transparent !important;
    border-radius: 16px !important;
}


/* arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.6);
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

    .carousel-btn.left {
        left: 10px
    }

    .carousel-btn.right {
        right: 10px
    }

/* ===== RIGHT PANEL ===== */
.right-panel {
    padding: 26px 15px;
}

/* HERO */
.heroQ {
    text-align: center;
    margin-bottom: 60px
}

    .heroQ h1 {
        font-size: 34px;
        font-weight: 800
    }

        .heroQ h1 span {
            color: var(--gold)
        }

    .heroQ p {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.7;
        color: #444
    }

/* SECTION HEADERS */
.section-title {
    text-align: center;
    margin-bottom: 30px
}

    .section-title h4 {
        font-size: 14px;
        letter-spacing: 1px;
        color: var(--purple);
        text-transform: uppercase;
    }

    .section-title h2 {
        font-size: 30px;
        font-weight: 800;
    }

        .section-title h2 span {
            background: linear-gradient(90deg,var(--gold),#ffd36b);
            -webkit-background-clip: text;
            color: transparent;
        }

/* CHART */
.chart-wrap {
    display: flex;
    justify-content: center;
    margin: 30px 0 45px;
}

.chart {
    width: 620px;
    height: 520px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0,0,0,.18);
    padding: 20px;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 26px;
}

/*  .card {
        background: var(--card);
        padding: 28px;
        border-radius: 18px;
        box-shadow: 0 22px 55px rgba(0,0,0,.15);
    }*/

/* ===== PREMIUM INFO CARDS ===== */
.card {
    background: linear-gradient( 180deg, #ffffff 0%, #faf7ff 100% );
    padding: 34px 32px;
    border-radius: 22px;
    border: 1px solid rgba(75,29,105,0.08);
    box-shadow: 0 12px 30px rgba(75,29,105,0.12), 0 2px 6px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}

    .card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient( 180deg, var(--gold), #ffd36b );
    }


    .card h3 {
        color: var(--purple)
    }

    .card p {
        font-size: 14px;
        line-height: 1.65;
        color: var(--muted)
    }

/*  .fact {
        font-size: 42px;
        font-weight: 800;
        color: var(--gold)
    }*/

.fact {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient( 90deg, var(--gold), #ffcc4d );
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 6px;
}


    .fact small {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: var(--muted)
    }

ul.points {
    margin-top: 10px;
    padding-left: 18px
}

    ul.points li {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 1.6
    }

/* TRANSITION */
.transition {
    margin: 90px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--purple);
}

    .transition span {
        color: var(--gold)
    }

/* RESPONSIVE */
@media(max-width:992px) {
    .main-layout {
        grid-template-columns: 100%
    }

    .left-panel {
        position: relative;
        height: auto;
    }

    .carousel {
        height: 260px
    }
}



.pg-breadcrumb {
    max-width: 1300px;
    margin: 22px auto 14px;
    padding: 12px 20px;
    background: #f6f2fb;
    border-radius: 10px;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
    color: #333;
    box-shadow: 0 6px 16px rgba(0,0,0,.05);
}

.pg-breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pg-breadcrumb a {
    color: var(--purple);
    font-weight: 600;
    text-decoration: none;
}

    .pg-breadcrumb a:hover {
        text-decoration: underline;
    }

.pg-breadcrumb span {
    color: #999;
}

.pg-breadcrumb strong {
    color: #000;
    font-weight: 700;
}



/* Mobile */
@media (max-width:768px) {
    .page-offset {
        padding-top: 2px; /* match header height */
    }

    .pg-breadcrumb {
        font-size: 13px;
        padding: 10px 14px;
    }
}

/* =========================
   PLACEMENTS PAGE FIX ONLY
   ========================= */

/* Remove master page left padding only for placements */
.placements-page {
    margin-left: -15px;
    margin-right: -15px;
}

    /* Ensure left panel touches screen edge */
    .placements-page .left-panel {
        padding-left: 25px; /* keeps internal spacing */
    }

.carousel {
    flex: 1; /* fills left panel height */
    height: 100%;
    background: transparent; /*  removes white */
    border-radius: 18px;
    box-shadow: none; /*  removes card look */
    overflow: hidden;
    position: relative;
}

@media(max-width:992px) {
    .left-panel {
        position: relative;
        height: auto;
        top: auto;
    }
}

/* ===============================
   PREMIUM PLACEMENTS INFO CARDS
   =============================== */

/* Card base */
.card {
    background: linear-gradient( 180deg, #ffffff 0%, #faf7ff 100% );
    padding: 34px 32px;
    border-radius: 22px;
    border: 1px solid rgba(75,29,105,0.08);
    box-shadow: 0 12px 30px rgba(75,29,105,0.12), 0 2px 6px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}

    /* Gold accent strip */
    .card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient( 180deg, var(--gold), #ffd36b );
    }

    /* Hover elevation */
    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 28px 60px rgba(75,29,105,0.22), 0 6px 16px rgba(0,0,0,0.08);
    }

/* KPI Number (72%) */
.fact {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient( 90deg, var(--gold), #ffcc4d );
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 6px;
}

/* KPI label */
.card small {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 10px;
}

/* Paragraph text */
.card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* Right card heading */
.card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--purple);
}

/* Bullet points */
ul.points {
    margin-top: 10px;
    padding-left: 0;
}

    ul.points li {
        list-style: none;
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 1.6;
    }

        ul.points li::before {
            content: "▸";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 900;
        }

/* Optional highlight card (use class if needed) */
.highlight-card {
    background: linear-gradient( 135deg, #ffffff, #f3ecff );
}


@media(min-width:1024px) {

    /* ================================
   FINAL FIX – REMOVE GAP
   ================================ */

    /* Use REAL header height */
    :root {
        --header-height: 180px;
    }

    /* Keep layout natural (no forced offset) */
    .main-layout {
        min-height: 100vh;
    }

    /* Sticky left panel ONLY */
    .left-panel {
        position: sticky;
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
    }

    .right-panel {
        padding-top: 90px;
    }
}

/* ================================
   HIDE CAROUSEL ARROWS ON MOBILE
   ================================ */

@media (max-width: 992px) {
    .carousel-btn {
        display: none !important;
    }
}





/* ================================
   UNIVERSAL SCROLL ANIMATIONS
   ================================ */
/* Base hidden state */
.reveal,
.heroQ,
.section-title,
.chart-wrap,
.cards,
.card,
.left-panel,
.right-panel {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
    will-change: opacity, transform;
}

/* Visible state */
.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slight stagger inside groups */
.cards .card:nth-child(1) {
    transition-delay: .05s;
}

.cards .card:nth-child(2) {
    transition-delay: .15s;
}

.cards .card:nth-child(3) {
    transition-delay: .25s;
}

.cards .card:nth-child(4) {
    transition-delay: .35s;
}

/* Hover polish (desktop only) */
@media (hover:hover) {
    .card:hover {
        transform: translateY(-10px) scale(1.01);
        box-shadow: 0 30px 70px rgba(75,29,105,.25), 0 10px 25px rgba(0,0,0,.08);
    }
}

/* ===============================
   LEFT PANEL – IMAGE BADGE
   =============================== */

.vc-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

    .vc-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }

/* Badge */
.vc-badge {
    position: absolute;
    bottom: 16px;
    left: 0;
    background: linear-gradient( 135deg, rgba(75,29,105,0.95), rgba(58,21,82,0.95) );
    padding: 12px 16px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

    /* Name */
    .vc-badge strong {
        display: block;
        font-size: 15px;
        font-weight: 800;
        color: var(--gold);
    }

    /* Designation */
    .vc-badge span {
        font-size: 13px;
        font-weight: 500;
        color: #ffffff;
        opacity: 0.95;
    }





.vc-image-style {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

/* Top small heading */
.vc-image-style .title-small {
    font-size: 14px;
    letter-spacing: 4px;
    color: #777;
    margin-bottom: 14px;
    text-transform: uppercase;
}

/* Middle line */
.vc-image-style .title-mid {
    font-size: 26px;
    font-weight: 300;
    color: #444;
    letter-spacing: 1px;
}

/* Big bold line */
.vc-image-style .title-big {
    font-size: 44px;
    font-weight: 800;
    color: #222;
    margin-top: 6px;
}

/* Divider */
.vc-image-style .divider {
    width: 90px;
    height: 1px;
    background: #999;
    margin: 26px 0;
}

/* Section label */
.vc-image-style .section-label {
    font-size: 16px;
    font-weight: 600;
    text-align: justify !important;
    color: #444;
    margin-bottom: 12px;
}

/* Paragraphs */
.vc-image-style p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #888;
    text-align: justify !important;
    max-width: 760px;
    margin-bottom: 16px;
}

.vc-card p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
    text-align: justify; /*  justify text */
    text-justify: inter-word; /*  better spacing */
}

    .vc-card p:last-child {
        text-align-last: left;
    }

/* Responsive */
@media (max-width: 768px) {
    .vc-image-style .title-big {
        font-size: 30px;
    }

    .vc-image-style .title-mid {
        font-size: 20px;
    }
}


<!-- RIGHT PANEL -->

/* ===============================
           VICE CHAIRMAN MESSAGE CARD
           =============================== */
.vc-card {
    max-width: 1100px;
    margin: 0 auto;
    background: rgb(75,29,105);
    border-radius: 22px;
    padding: 22px 24px;
    border-left: 6px solid var(--gold);
    box-shadow: 0 18px 40px rgba(75,29,105,0.18), 0 6px 16px rgba(0,0,0,0.06);
}

.vc-card h2 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

    .vc-card h2 span {
        color: #FDBC01;
    }

.vc-card p {
    font-size: 17.5px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 18px;
}

.vc-card .signature {
    margin-top: 28px;
    font-weight: 700;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .vc-card {
        padding: 28px 24px;
    }

        .vc-card h2 {
            font-size: 24px;
        }
}



/* ===============================
   CENTERED WIDE AI DOMAIN CARDS
   =============================== */
.ai-domain-wrapper {
    max-width: 1200px; /*  wider cards */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 42px;
    align-items: center; /*  center cards */
}

/* Card */
.ai-domain-card {
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 42px 56px;
    border-left: 8px solid var(--gold);
    box-shadow: 0 18px 45px rgba(75,29,105,0.14), 0 6px 18px rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .9s ease, transform .9s ease;
}

    /* Reveal animation */
    .ai-domain-card.reveal-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Sequential appearance */
    .ai-domain-card:nth-child(1) {
        transition-delay: .15s;
    }

    .ai-domain-card:nth-child(2) {
        transition-delay: .35s;
    }

    .ai-domain-card:nth-child(3) {
        transition-delay: .55s;
    }

    .ai-domain-card:nth-child(4) {
        transition-delay: .75s;
    }

    /* Headings */
    .ai-domain-card h3 {
        font-size: 28px;
        font-weight: 800;
        color: var(--purple);
        margin-bottom: 22px;
    }

/* CLEAN ACADEMIC LIST (NO DECORATION) */
.ai-list {
    margin: 0;
    padding-left: 22px;
}

    .ai-list li {
        list-style-type: disc; /*  classic academic bullets */
        font-size: 16.5px;
        line-height: 1.9;
        color: #333;
        margin-bottom: 12px;
    }

/* Hover (subtle, optional) */
@media (hover:hover) {
    .ai-domain-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 70px rgba(75,29,105,0.22), 0 10px 28px rgba(0,0,0,0.10);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ai-domain-wrapper {
        gap: 28px;
    }

    .ai-domain-card {
        padding: 28px 24px;
    }

        .ai-domain-card h3 {
            font-size: 22px;
        }

    .ai-list li {
        font-size: 15px;
    }
}



/* ===============================
   PROGRAMME INTRO
   =============================== */
.prog-intro {
    max-width: 900px;
    margin: 0 auto 70px;
}

.prog-intro h1 {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 18px;
}

    .prog-intro h1 span {
        color: var(--gold);
    }

.prog-intro .lead {
    font-size: 18px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 16px;
}

.prog-intro p {
    font-size: 16px;
    line-height: 1.75;
    color: #666;
}

/* ===============================
   PROGRAMME PILLARS
   =============================== */
.prog-pillars {
    max-width: 1100px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.pillar {
    background: #fff;
    padding: 28px 26px;
    border-radius: 18px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

    .pillar h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--purple);
        margin-bottom: 10px;
    }

    .pillar p {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
    }

/* ===============================
   DOMAIN SUBJECTS
   =============================== */
.prog-domains {
    max-width: 1000px;
    margin: 0 auto;
}

    .prog-domains h2 {
        font-size: 30px;
        font-weight: 800;
        text-align: center;
        margin-bottom: 50px;
    }

.domain {
    background: #fff;
    border-left: 6px solid var(--gold);
    padding: 28px 34px;
    border-radius: 14px;
    margin-bottom: 28px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

    .domain h4 {
        font-size: 20px;
        font-weight: 700;
        color: var(--purple);
        margin-bottom: 14px;
    }

    .domain ul {
        padding-left: 18px;
    }

    .domain li {
        font-size: 15.5px;
        line-height: 1.8;
        color: #444;
        margin-bottom: 8px;
    }

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 992px) {
    .prog-pillars {
        grid-template-columns: 1fr;
    }

    .prog-intro h1 {
        font-size: 32px;
    }
}

.reveal,
.section-title,
.card,
.ai-domain-card {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s ease, transform .7s ease;
}



/* ===== FAQ SECTION ===== */
.faq-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #e1d5f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--purple);
    font-size: 16px;
}

    .faq-question:hover {
        background: #f9f6ff;
    }

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Toggle Logic */
.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-toggle {
    transition: transform 0.3s ease;
    color: var(--gold);
    font-size: 20px;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.career-item {
    background: #fff;
    padding: 22px 24px;
    border-radius: 14px;
    border-left: 5px solid var(--gold);
    font-size: 16px;
    font-weight: 600;
    color: var(--purple);
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}


/* ===============================
   BROCHURE CTA BUTTON
   =============================== */

.brochure-cta {
    margin-top: 28px;
}

.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 50px;
    background: linear-gradient( 90deg, #4B1D69, #6a2d91 );
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(75,29,105,0.25), 0 4px 10px rgba(0,0,0,0.08);
    transition: all .3s ease;
}

    .btn-brochure i {
        font-size: 16px;
    }

    .btn-brochure:hover {
        transform: translateY(-3px);
        box-shadow: 0 22px 45px rgba(75,29,105,0.35), 0 8px 18px rgba(0,0,0,0.12);
    }

/* Mobile */
@media (max-width: 768px) {
    .btn-brochure {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 14px 18px;
    }
}

/* ===============================
   PROGRAMME – SOFT CTA (NEXT STEPS)
   =============================== */

.prog-soft-cta {
    margin-top: 26px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 18px;
    border-left: 6px solid var(--gold); /* match your other cards */
    box-shadow: 0 10px 28px rgba(0,0,0,.07);
}

    .prog-soft-cta h3 {
        margin: 0 0 10px;
        font-size: 16px;
        font-weight: 900;
        color: #111;
    }

.prog-soft-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

    /* Links: stop default blue + visited purple/blue */
    .prog-soft-links .soft-link,
    .prog-soft-links .soft-link:visited {
        color: var(--purple) !important;
        text-decoration: none !important;
        font-weight: 800;
        font-size: 14px;
        display: inline-flex;
        gap: 8px;
        align-items: center;
    }

        .prog-soft-links .soft-link:hover {
            text-decoration: underline !important;
        }

    .prog-soft-links .arrow {
        color: var(--gold);
        font-weight: 900;
    }

/* Mobile: stack nicely */
@media (max-width: 600px) {
    .prog-soft-cta {
        padding: 16px;
    }

    .prog-soft-links {
        gap: 10px;
    }
}

/* ===============================
   MOBILE SAFETY: ALWAYS SHOW CONTENT
   =============================== */
@media (max-width: 768px) {
    .reveal,
    .heroQ,
    .section-title,
    .chart-wrap,
    .cards,
    .card,
    .left-panel,
    .right-panel {
        opacity: 1 !important;
        transform: none !important;
    }
}
