/* ==========================================================
   NOBO TRAINING PROGRAMMES
   Premium Training Catalogue
========================================================== */

:root{

    --primary:#0f172a;
    --secondary:#1e293b;
    --accent:#d4af37;

    --white:#ffffff;
    --light:#f8fafc;

    --text:#1f2937;
    --text-light:#6b7280;

    --border:#e5e7eb;

    --shadow:
        0 10px 30px rgba(15,23,42,.08);

    --shadow-hover:
        0 20px 50px rgba(15,23,42,.15);

    --radius:18px;

}

/* ==========================================================
   GLOBAL
========================================================== */

body{

    background:#ffffff;

    color:var(--text);

    font-family:"Inter",sans-serif;

    overflow-x:hidden;

}

section{

    padding:90px 6%;

}

h1,h2,h3,h4{

    color:var(--primary);

    font-weight:700;

}

h2{

    font-size:2.4rem;

    margin-bottom:20px;

    text-align:center;

}

p{

    line-height:1.8;

    color:var(--text-light);

}

/* ==========================================================
   HERO
========================================================== */




.hero-content{

    position:relative;

    z-index:5;

    max-width:900px;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    align-self:center;

    padding:10px 22px;

    border-radius:999px;

    background:rgba(212,175,55,.18);

    border:1px solid rgba(212,175,55,.35);

    color:var(--gold-accent);

    font-size:.85rem;

    font-weight:800;

    letter-spacing:.12em;

    text-transform:uppercase;

}



/* ==========================================================
   HERO BUTTONS
========================================================== */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:45px;

    flex-wrap:wrap;

}

.programme-btn-primary{

    background:var(--accent);

    color:#111827;

    padding:14px 28px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.programme-btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:

        0 12px 30px rgba(212,175,55,.35);

}

.programme-btn-secondary{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:13px 24px;

    border-radius:14px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.18);

    color:var(--blue-primary);


    border:2px solid rgba(15,23,42,.15);

    text-decoration:none;

    font-weight:700;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;

    box-shadow:
        0 8px 20px rgba(15,23,42,.05);

}

.programme-btn-secondary:hover{

    background:var(--blue-primary);

    color:#ffffff;

    border-color:var(--blue-primary);

    box-shadow:
        0 14px 30px rgba(15,23,42,.20);

    transform:translateY(-3px);

}



.accreditation-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:25px;

    max-width:1200px;

    margin:auto;

}

.accreditation-grid div{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:35px 20px;

    text-align:center;

    font-weight:700;

    color:var(--primary);

    transition:.3s;

    box-shadow:0 5px 15px rgba(15,23,42,.04);

}

.accreditation-grid div:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow);

    border-color:var(--accent);

}

/*==================================================
SEARCH
==================================================*/

.programme-search-section{

    display:flex;
    justify-content:center;

    margin:-55px auto 70px;

    position:relative;
    z-index:20;
    padding-bottom:0px;
    padding-top:10px;
    

}

.programme-search{

    width:min(760px,92%);

    display:flex;
    align-items:center;
    gap:18px;

    padding:20px 26px;

    background:#ffffff;

    border:1px solid rgba(15,23,42,.08);

    border-radius:22px;

    box-shadow:
        0 20px 45px rgba(15,23,42,.08);

}

.search-icon{

    flex-shrink:0;

    color:#94a3b8;

}

.programme-search input{

    width:100%;

    border:none;

    outline:none;

    background:transparent;

    font-size:1.15rem;

    color:var(--blue-primary);

    font-family:'Inter',sans-serif;

}

.programme-search input::placeholder{

    color:#94a3b8;

}

.programme-search:focus-within{

    border-color:rgba(212,175,55,.45);

    box-shadow:
        0 24px 55px rgba(15,23,42,.10);

}


/* ==========================================================
   CATALOGUE HEADINGS
========================================================== */

.catalogue{

    background:#ffffff;

}

.catalogue h2{

    margin-bottom:70px;

}

.category{

    margin-bottom:70px;

}

.category h3{

    position:relative;

    display:flex;

    align-items:center;

    gap:15px;

    font-size:1.8rem;

    margin-bottom:28px;

    padding-left:18px;

}

.category h3::before{

    content:"";

    width:6px;

    height:30px;

    background:var(--accent);

    border-radius:20px;

    position:absolute;

    left:0;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:768px){

.accreditation-grid{

    grid-template-columns:1fr 1fr;

}

.programme-search{

    padding:60px 20px 30px;

}


.category h3{

    font-size:1.45rem;

}

}

@media(max-width:520px){

.accreditation-grid{

    grid-template-columns:1fr;

}



}


/* ==========================================================
   PROGRAMME GRID
========================================================== */

.programme-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:24px;

}

/* ==========================================================
   PROGRAMME CARD
========================================================== */

.programme-card{

    position:relative;

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:22px;

    transition:.30s ease;

    overflow:hidden;

    cursor:pointer;

}

.programme-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(

        90deg,

        var(--accent),

        #f5d66c

    );

}

.programme-card:hover{

    transform:translateY(-6px);

    border-color:var(--accent);

    box-shadow:var(--shadow-hover);

}

/* ==========================================================
   BADGE
========================================================== */

.badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:6px 12px;

    border-radius:40px;

    font-size:.72rem;

    font-weight:700;

    margin-bottom:14px;

    letter-spacing:.04em;

}

.badge.qcto{

    background:#FFF4D0;

    color:#7A5B00;

}

.badge.ceta{

    background:#E8F4FF;

    color:#004B7A;

}

.badge.lgseta{

    background:#EEFCE8;

    color:#276200;

}

.badge.agriseta{

    background:#EDFCEB;

    color:#256F1E;

}

/* ==========================================================
   TITLE
========================================================== */

.programme-card h4{

    font-size:1.22rem;

    line-height:1.4;

    color:var(--primary);

    margin-bottom:14px;

    transition:.25s;

}

.programme-card:hover h4{

    color:var(--accent);

}

/* ==========================================================
   QUICK INFO
========================================================== */

.programme-card p{

    margin:4px 0;

    color:var(--text-light);

    font-size:.92rem;

}

/* ==========================================================
   METADATA
========================================================== */

.programme-card p:nth-of-type(1){

    margin-top:18px;

}

.programme-card p:nth-of-type(2),

.programme-card p:nth-of-type(3){

    display:inline-block;

    margin-right:10px;

}

/* ==========================================================
   BUTTONS
========================================================== */

.card-buttons{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:24px;

    gap:10px;

}

.card-buttons a{

    text-decoration:none;

    font-size:.87rem;

    font-weight:700;

    transition:.25s;

}

/* View */

.card-buttons a:first-child{

    color:var(--primary);

}

.card-buttons a:first-child::after{

    content:" →";

}

.card-buttons a:first-child:hover{

    color:var(--accent);

}

/* Enquire */

.card-buttons a:last-child{

    padding:8px 16px;

    background:var(--accent);

    color:#111827;

    border-radius:10px;

}

.card-buttons a:last-child:hover{

    transform:translateY(-2px);

}

/* ==========================================================
   CARD HOVER DETAILS
========================================================== */

.programme-card:hover .badge{

    transform:scale(1.05);

}

.programme-card:hover p{

    color:#4B5563;

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:768px){

.programme-grid{

    grid-template-columns:1fr;

}

.programme-card{

    padding:20px;

}

.programme-card h4{

    font-size:1.1rem;

}

.card-buttons{

    margin-top:20px;

}

.card-buttons a:last-child{

    padding:7px 14px;

}

}


.why-intro{

    max-width:760px;

    margin:0 auto 60px;

    font-size:1.05rem;

    color:var(--text-muted);

    line-height:1.9;

}

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.8rem;
    max-width:1200px;
    margin:auto;
}

@media(max-width:900px){

.features{
    grid-template-columns:1fr;
}

}

.feature-card{

    background:#fff;

    border-radius:20px;

    padding:2rem;

    display:flex;
    flex-direction:column;

    align-items:center;

    text-align:center;

    min-height:220px;

    border:1px solid rgba(15,23,42,.08);

    box-shadow:0 10px 30px rgba(15,23,42,.06);

    transition:.35s;

}



.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(15,23,42,.15);

}

.feature-icon{

    width:50px;
    height:50px;

    margin:auto auto 1.3rem;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:1.6rem;

    background:linear-gradient(
        135deg,
        var(--gold-accent),
        #f4cf55
    );

    color:white;

    box-shadow:
    0 12px 25px rgba(212,175,55,.35);

}

.feature-card h3{

    margin-bottom:.8rem;

    color:var(--blue-primary);

    font-size:1.25rem;

}

.feature-card p{

    color:#64748b;

    font-size:.95rem;

    line-height:1.7;

}

.features > div{
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 18px;

    min-height: 120px;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    padding:1.5rem;

    font-weight:700;
    font-size:1.15rem;
    line-height:1.45;

    transition:.35s ease;
    box-shadow:0 8px 22px rgba(15,23,42,.06);
}

.features > div:hover{
    transform:translateY(-8px);
    border-color:var(--gold-accent);
    box-shadow:0 18px 40px rgba(15,23,42,.12);
}




.why-paper{
    padding: 5rem 5%;
    background: #ffffff;
}

.why-paper h2{
    text-align: center;
    margin-bottom: 2.8rem;
    font-size: clamp(2rem, 4vw, 3rem);
}


.timeline{

    max-width:1100px;

    margin:50px auto 0;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

    font-weight:600;

    color:var(--primary);

    text-align:center;

}

.timeline{

    line-height:2.2;

}

/* ==========================================================
   CTA
========================================================== */

.programme-cta{

    position:relative;

    background:

        linear-gradient(

            rgba(15,23,42,.90),

            rgba(15,23,42,.90)

        ),

        url("../assets/images/training-hero.jpg")

        center/cover;

    color:#ffffff;

    text-align:center;

}

.programme-cta h2{

    color:#ffffff;

}

.programme-cta p{

    color:#d1d5db;

    max-width:750px;

    margin:25px auto 40px;

}

.programme-cta a{

    display:inline-block;

    background:var(--accent);

    color:#111827;

    text-decoration:none;

    font-weight:700;

    padding:16px 34px;

    border-radius:14px;

    transition:.3s;

}

.programme-cta a:hover{

    transform:translateY(-4px);

    box-shadow:

        0 15px 35px rgba(212,175,55,.35);

}

/*==========================================
PROGRAMME IMPLEMENTATION OVERVIEW
==========================================*/

.services-overview{

    position:relative;

    padding:90px 0;

    display:flex;
    justify-content:center;

}

.services-overview .section-inner{

    max-width:950px;

    padding:60px 70px;

    text-align:center;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:26px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.12);

}

/* Heading */

.services-overview h2{

    position:relative;

    display:inline-block;

    margin-bottom:28px;

    font-size:clamp(2.2rem,4vw,3rem);

    color:#ffffff;

    font-weight:800;

    letter-spacing:-0.03em;

}

.services-overview h2::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    margin:18px auto 0;

    border-radius:999px;

    background:var(--gold-accent);

}

/* Paragraphs */

.services-overview p{

    max-width:760px;

    margin:0 auto 18px;

    font-size:1.05rem;

    line-height:1.9;

    color:rgba(255,255,255,.82);

}

.services-overview p:last-child{

    margin-bottom:0;

}

.split-eyebrow{

    display:inline-block;

    margin-bottom:1rem;

    font-size:.9rem;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    color:var(--gold-accent);

    

    position:relative;

}

.split-eyebrow::after{

    content:"";

    display:block;

    width:70px;

    height:3px;

    margin:10px auto 0;

    background:var(--gold-accent);

    border-radius:30px;

}

/* =========================================================
   DELIVERY SCOPE CARDS
========================================================= */

.split-cards{

    display:flex;
    flex-direction:column;
    gap:1.8rem;

}

.stack-card{

    background:#fff;

    padding:1.9rem 2.2rem;

    border-radius:24px;

    min-height:170px;

    box-shadow:
        0 12px 35px rgba(15,23,42,.08);

    border:1px solid rgba(15,23,42,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.stack-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

    box-shadow:
        0 24px 45px rgba(15,23,42,.14);

}

.stack-card h3{

    margin:0 0 .9rem;

    font-size:1.55rem;

    font-weight:700;

    color:var(--blue-primary);

}

.stack-card p{

    margin:0;

    color:#64748b;

    line-height:1.8;

    font-size:1rem;

}

.paper-help{

    width:min(1200px,92%);
    margin:0 auto 7rem;

    padding:5rem 4rem;

    background:#ffffff;

    border-radius:48px;

    text-align:center;

    box-shadow:
        0 20px 60px rgba(15,23,42,.08);

}

.cta-content{

    max-width:760px;

    margin:0 auto;

}

.cta-content h2{

    font-size:clamp(2.2rem,3vw,3rem);

    font-weight:800;

    color:var(--blue-primary);

    line-height:1.15;

    margin-bottom:1.5rem;

}

.cta-content p{

    font-size:1.2rem;

    color:#64748b;

    line-height:1.8;

    margin-bottom:2.5rem;

}

.paper-help .btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:1rem 2.5rem;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        var(--gold-accent),
        #f0c94b
    );

    color:var(--blue-primary);

    font-weight:700;

    font-size:1rem;

    text-decoration:none;

    box-shadow:
        0 15px 35px rgba(212,175,55,.35);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}

.paper-help .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
        0 22px 45px rgba(212,175,55,.45);

}