/* =========================================================
   SKILL UP BHARAT - FRESH PUBLIC WEBSITE V4
   Add after public.css + skillup-mobile-v2.css
========================================================= */

:root{
    --su4-navy:#071525;
    --su4-navy-2:#0b2238;
    --su4-blue:#2563eb;
    --su4-blue-2:#1d4ed8;
    --su4-teal:#0f9f8f;
    --su4-gold:#f59e0b;
    --su4-text:#172033;
    --su4-muted:#66778b;
    --su4-bg:#f6f8fb;
    --su4-card:#ffffff;
    --su4-border:#e4eaf1;
    --su4-radius:22px;
    --su4-shadow:0 18px 48px rgba(9,31,55,.08);
}

.skillup-public-page{
    background:#fff;
    color:var(--su4-text);
}

.su4-container{
    width:min(1180px,calc(100% - 32px));
    margin:0 auto;
}

.su4-section{
    padding:78px 0;
}

.su4-soft{
    background:var(--su4-bg);
}

.su4-dark{
    color:#fff;
    background:
        radial-gradient(circle at 85% 10%,rgba(37,99,235,.20),transparent 28%),
        linear-gradient(135deg,#071525,#0b2238 58%,#0d2c48);
}

.su4-kicker{
    display:inline-flex;
    align-items:center;
    gap:7px;
    min-height:31px;
    padding:6px 11px;
    border-radius:999px;
    background:#eef4ff;
    color:var(--su4-blue);
    font-size:11px;
    font-weight:900;
    letter-spacing:.02em;
}

.su4-dark .su4-kicker{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    color:#cfe0ff;
}

.su4-title{
    margin:14px 0 0;
    color:#102033;
    font-size:clamp(34px,4vw,56px);
    line-height:1.08;
    letter-spacing:-1.8px;
    font-weight:850;
}

.su4-dark .su4-title{
    color:#fff;
}

.su4-lead{
    max-width:760px;
    margin:16px 0 0;
    color:var(--su4-muted);
    font-size:17px;
    line-height:1.75;
}

.su4-dark .su4-lead{
    color:#b8c8d8;
}

.su4-section-head{
    max-width:800px;
    margin-bottom:34px;
}

.su4-grid{
    display:grid;
    gap:18px;
}

.su4-grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.su4-grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.su4-grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}

.su4-card{
    position:relative;
    overflow:hidden;
    padding:24px;
    border:1px solid var(--su4-border);
    border-radius:var(--su4-radius);
    background:var(--su4-card);
    box-shadow:var(--su4-shadow);
}

.su4-card h3{
    margin:12px 0 8px;
    color:#102033;
    font-size:20px;
}

.su4-card p{
    margin:0;
    color:var(--su4-muted);
    font-size:14px;
    line-height:1.65;
}

.su4-icon{
    width:50px;
    height:50px;
    display:grid;
    place-items:center;
    border-radius:15px;
    background:#eef4ff;
    color:var(--su4-blue);
    font-size:24px;
}

.su4-role-card{
    display:flex;
    flex-direction:column;
    min-height:100%;
}

.su4-role-card .su4-card-action{
    margin-top:auto;
    padding-top:18px;
}

.su4-card-link{
    color:var(--su4-blue);
    text-decoration:none;
    font-weight:850;
    font-size:13px;
}

.su4-card-link:hover{
    text-decoration:underline;
}

.su4-btn-row{
    display:flex;
    flex-wrap:wrap;
    gap:11px;
    margin-top:26px;
}

.su4-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 18px;
    border-radius:12px;
    border:1px solid transparent;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
    transition:.18s ease;
}

.su4-btn-primary{
    color:#fff;
    background:linear-gradient(135deg,var(--su4-blue),#4f46e5);
    box-shadow:0 10px 24px rgba(37,99,235,.22);
}

.su4-btn-primary:hover{transform:translateY(-1px)}

.su4-btn-light{
    color:#24364a;
    background:#fff;
    border-color:#dce4ee;
}

.su4-btn-dark{
    color:#fff;
    background:rgba(255,255,255,.08);
    border-color:rgba(255,255,255,.15);
}

.su4-hero{
    position:relative;
    overflow:hidden;
    padding:84px 0 70px;
    color:#fff;
    background:
        radial-gradient(circle at 82% 14%,rgba(37,99,235,.28),transparent 31%),
        radial-gradient(circle at 10% 90%,rgba(15,159,143,.12),transparent 30%),
        linear-gradient(135deg,#071525 0%,#092039 48%,#0d3150 100%);
}

.su4-hero::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.04;
    background-image:
        linear-gradient(rgba(255,255,255,.55) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.55) 1px,transparent 1px);
    background-size:56px 56px;
}

.su4-hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0,1.18fr) minmax(350px,.82fr);
    gap:64px;
    align-items:center;
}

.su4-hero h1{
    margin:20px 0 18px;
    max-width:780px;
    font-size:clamp(46px,5.1vw,76px);
    line-height:1.02;
    letter-spacing:-2.5px;
    font-weight:820;
}

.su4-hero h1 span{
    background:linear-gradient(90deg,#78a8ff,#5d84ff);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.su4-hero p{
    max-width:760px;
    margin:0;
    color:#b5c6d8;
    font-size:17px;
    line-height:1.75;
}

.su4-hero-panel{
    padding:18px;
    border:1px solid rgba(255,255,255,.11);
    border-radius:25px;
    background:rgba(4,20,35,.66);
    box-shadow:0 28px 68px rgba(0,0,0,.22);
    backdrop-filter:blur(18px);
}

.su4-hero-stat{
    padding:17px 18px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    background:rgba(255,255,255,.055);
}

.su4-hero-stat + .su4-hero-stat{margin-top:10px}

.su4-hero-stat strong{
    display:block;
    color:#fff;
    font-size:15px;
}

.su4-hero-stat span{
    display:block;
    margin-top:5px;
    color:#aebfd0;
    font-size:12px;
    line-height:1.45;
}

.su4-pill-row{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:24px;
}

.su4-pill{
    padding:7px 10px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:999px;
    background:rgba(255,255,255,.05);
    color:#c6d4e2;
    font-size:11px;
    font-weight:750;
}

.su4-steps{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}

.su4-step{
    padding:22px;
    border:1px solid var(--su4-border);
    border-radius:18px;
    background:#fff;
}

.su4-step b{
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:11px;
    background:#eef4ff;
    color:var(--su4-blue);
    font-size:12px;
}

.su4-step h3{
    margin:15px 0 7px;
    font-size:17px;
}

.su4-step p{
    margin:0;
    color:var(--su4-muted);
    font-size:13px;
    line-height:1.6;
}

.su4-band{
    padding:30px;
    border-radius:24px;
    background:linear-gradient(135deg,#102d49,#0b2238);
    color:#fff;
}

.su4-band h2{margin:0;font-size:28px}
.su4-band p{margin:10px 0 0;color:#b8c8d8;line-height:1.6}

.su4-list{
    display:grid;
    gap:10px;
    margin:18px 0 0;
    padding:0;
    list-style:none;
}

.su4-list li{
    position:relative;
    padding-left:24px;
    color:#44566b;
    font-size:14px;
    line-height:1.55;
}

.su4-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--su4-teal);
    font-weight:900;
}

.su4-dark .su4-list li{color:#c3d2e0}

.su4-form{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.su4-field{
    display:grid;
    gap:7px;
}

.su4-field.full{
    grid-column:1/-1;
}

.su4-field label{
    color:#334155;
    font-size:11px;
    font-weight:850;
}

.su4-field input,
.su4-field select,
.su4-field textarea{
    width:100%;
    border:1px solid #dbe3ec;
    border-radius:11px;
    background:#fff;
    color:#0f172a;
    font:inherit;
    font-size:13px;
    padding:12px 13px;
    outline:none;
}

.su4-field input:focus,
.su4-field select:focus,
.su4-field textarea:focus{
    border-color:#91b3ff;
    box-shadow:0 0 0 3px rgba(37,99,235,.08);
}

.su4-alert{
    margin:0 0 18px;
    padding:12px 14px;
    border-radius:11px;
    font-size:12px;
    font-weight:750;
}

.su4-alert.success{
    color:#065f46;
    background:#ecfdf5;
    border:1px solid #bbf7d0;
}

.su4-alert.error{
    color:#9f1239;
    background:#fff1f2;
    border:1px solid #fecdd3;
}

.su4-job-list{
    display:grid;
    gap:14px;
}

.su4-job-card{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:18px;
    align-items:center;
    padding:20px;
    border:1px solid var(--su4-border);
    border-radius:17px;
    background:#fff;
}

.su4-job-card h3{
    margin:0 0 7px;
    font-size:18px;
}

.su4-job-meta{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    color:#6a7b8e;
    font-size:11px;
}

.su4-empty{
    padding:38px;
    text-align:center;
    border:1px dashed #cbd5e1;
    border-radius:18px;
    background:#fff;
    color:#718196;
}

.su4-footer{
    padding:54px 0 22px;
    color:#bfd0e0;
    background:#071525;
}

.su4-footer-grid{
    display:grid;
    grid-template-columns:1.5fr repeat(3,1fr);
    gap:34px;
}

.su4-footer h4{
    margin:0 0 12px;
    color:#fff;
    font-size:13px;
}

.su4-footer p{
    max-width:380px;
    margin:9px 0 0;
    color:#8fa4b8;
    font-size:12px;
    line-height:1.65;
}

.su4-footer a{
    display:block;
    margin:8px 0;
    color:#aebfd0;
    text-decoration:none;
    font-size:12px;
}

.su4-footer a:hover{color:#fff}

.su4-footer-brand{
    display:flex;
    align-items:center;
    gap:11px;
}

.su4-footer-brand img{
    width:46px;
    height:46px;
    object-fit:contain;
    border-radius:12px;
    background:#fff;
    padding:4px;
}

.su4-footer-brand strong{
    display:block;
    color:#fff;
    font-size:16px;
}

.su4-footer-brand span{
    display:block;
    margin-top:3px;
    color:#7f95aa;
    font-size:10px;
}

.su4-footer-bottom{
    margin-top:34px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#70869a;
    font-size:11px;
}

@media(max-width:1000px){
    .su4-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
    .su4-grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
    .su4-steps{grid-template-columns:repeat(2,minmax(0,1fr))}
    .su4-hero-grid{grid-template-columns:1fr}
    .su4-hero-panel{max-width:720px}
    .su4-footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:700px){
    .su4-section{padding:56px 0}
    .su4-hero{padding:58px 0 52px}
    .su4-hero h1{font-size:clamp(40px,12vw,56px);letter-spacing:-1.7px}
    .su4-grid-2,.su4-grid-3,.su4-grid-4{grid-template-columns:1fr}
    .su4-steps{grid-template-columns:1fr}
    .su4-form{grid-template-columns:1fr}
    .su4-field.full{grid-column:auto}
    .su4-job-card{grid-template-columns:1fr}
    .su4-footer-grid{grid-template-columns:1fr}
}
/* =========================================================
   SKILL UP BHARAT PRESENTATION
========================================================= */

.su-presentation-section{
    overflow:hidden;
}

.su-presentation-layout{
    display:grid;
    grid-template-columns:minmax(0,1.45fr) minmax(280px,.55fr);
    gap:28px;
    align-items:start;
}


/* PPT STAGE */

.su-ppt-stage{
    position:relative;
    overflow:hidden;
    aspect-ratio:16 / 9;
    min-height:420px;
    display:flex;
    flex-direction:column;
    border-radius:26px;
    color:#fff;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(58,112,255,.34),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 90%,
            rgba(15,159,143,.15),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #061321,
            #0a2944 58%,
            #103c62
        );

    box-shadow:
        0 28px 70px
        rgba(6,19,33,.24);
}


.su-ppt-stage::after{
    content:"";
    position:absolute;
    inset:0;
    opacity:.035;

    background-image:
        linear-gradient(
            rgba(255,255,255,.7) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.7) 1px,
            transparent 1px
        );

    background-size:44px 44px;
    pointer-events:none;
}


/* TOPBAR */

.su-ppt-topbar{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    padding:24px 28px;
}

.su-ppt-brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:12px;
    font-weight:900;
}

.su-ppt-brand img{
    width:38px;
    height:38px;
    object-fit:contain;
    padding:3px;
    border-radius:10px;
    background:#fff;
}

.su-ppt-counter{
    padding:7px 10px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:999px;
    background:rgba(255,255,255,.06);
    color:#abc1d5;
    font-size:10px;
    font-weight:800;
}


/* CONTENT */

.su-ppt-content{
    position:relative;
    z-index:2;
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:25px 75px 50px;
    text-align:center;
}

.su-ppt-slide-number{
    margin-bottom:12px;
    color:#70a5ff;
    font-size:11px;
    font-weight:900;
    letter-spacing:.14em;
}

.su-ppt-content h3{
    max-width:780px;
    margin:0;
    color:#fff;
    font-size:clamp(30px,4.5vw,58px);
    line-height:1.08;
    letter-spacing:-1.6px;
    font-weight:900;
}

.su-ppt-content h4{
    margin:14px 0 0;
    color:#78a8ff;
    font-size:clamp(14px,2vw,20px);
    line-height:1.4;
    font-weight:800;
}

.su-ppt-content p{
    max-width:720px;
    margin:20px 0 0;
    color:#c4d4e4;
    font-size:clamp(13px,1.6vw,17px);
    line-height:1.75;
}


/* FOOTER */

.su-ppt-footer{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    gap:15px;
    padding:18px 28px;
    border-top:1px solid rgba(255,255,255,.07);
    color:#718aa0;
    font-size:9px;
    font-weight:800;
}


/* CONTROLS */

.su-ppt-controls{
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:15px;
    align-items:center;
    margin-top:16px;
}

.su-ppt-arrow{
    min-height:42px;
    padding:0 15px;
    border:1px solid #dfe6ee;
    border-radius:11px;
    background:#fff;
    color:#294056;
    font-size:11px;
    font-weight:900;
    cursor:pointer;
}

.su-ppt-arrow:hover{
    border-color:#a8c1fa;
    color:#2563eb;
}

.su-ppt-dots{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:7px;
}

.su-ppt-dot{
    width:8px;
    height:8px;
    padding:0;
    border:0;
    border-radius:50%;
    background:#cbd5e1;
    cursor:pointer;
}

.su-ppt-dot.active{
    width:24px;
    border-radius:20px;
    background:#2563eb;
}


/* RIGHT SIDE */

.su-ppt-side{
    position:sticky;
    top:95px;
    padding:25px;
    border:1px solid #e2e9f1;
    border-radius:22px;
    background:#fff;
    box-shadow:0 18px 50px rgba(15,35,55,.08);
}

.su-ppt-side-label{
    display:block;
    margin-bottom:11px;
    color:#8493a5;
    font-size:9px;
    font-weight:900;
    letter-spacing:.12em;
}

.su-ppt-language-tabs{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:6px;
    padding:5px;
    border-radius:13px;
    background:#f2f5f9;
}

.su-ppt-lang{
    min-height:40px;
    border:0;
    border-radius:9px;
    background:transparent;
    color:#526579;
    font-size:11px;
    font-weight:900;
    cursor:pointer;
}

.su-ppt-lang.active{
    background:#fff;
    color:#2563eb;
    box-shadow:0 3px 10px rgba(25,45,70,.08);
}

.su-ppt-info{
    margin-top:22px;
    padding-bottom:20px;
    border-bottom:1px solid #edf1f5;
}

.su-ppt-info strong{
    display:block;
    color:#102033;
    font-size:15px;
}

.su-ppt-info span{
    display:block;
    margin-top:5px;
    color:#8493a5;
    font-size:11px;
}


/* DOWNLOAD */

.su-ppt-download{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:20px;
    padding:14px;
    border-radius:14px;
    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5
        );
    color:#fff !important;
    text-decoration:none !important;
    box-shadow:0 12px 28px rgba(37,99,235,.22);
}

.su-ppt-download:hover{
    transform:translateY(-1px);
}

.su-ppt-download-icon{
    width:42px;
    height:42px;
    flex:0 0 42px;
    display:grid;
    place-items:center;
    border-radius:11px;
    background:rgba(255,255,255,.14);
    font-size:22px;
}

.su-ppt-download strong{
    display:block;
    color:#fff;
    font-size:12px;
}

.su-ppt-download small{
    display:block;
    margin-top:3px;
    color:#c9d6ff;
    font-size:9px;
}

.su-ppt-benefits{
    display:grid;
    gap:9px;
    margin-top:20px;
}

.su-ppt-benefits div{
    color:#586b80;
    font-size:10px;
    font-weight:700;
}


/* MOBILE */

@media(max-width:900px){

    .su-presentation-layout{
        grid-template-columns:1fr;
    }

    .su-ppt-side{
        position:static;
    }

}



/* =========================================================
   PPT LOGO ONLY SLIDE
========================================================= */

.su-ppt-logo-only{
    position:absolute;
    inset:0;
    z-index:5;

    display:none;

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

    padding:60px;
}


.su-ppt-logo-only img{
    width:auto;
    height:auto;

    max-width:80%;
    max-height:90%;

    object-fit:contain;

    filter:
        drop-shadow(
            0 18px 35px
            rgba(0,0,0,.20)
        );
}


/* Logo-only slide active */

.su-ppt-stage.logo-only-slide
.su-ppt-logo-only{
    display:flex;
}


.su-ppt-stage.logo-only-slide
.su-ppt-topbar,

.su-ppt-stage.logo-only-slide
.su-ppt-content,

.su-ppt-stage.logo-only-slide
.su-ppt-footer{
    display:none;
}

@media(max-width:600px){

    .su-ppt-logo-only{
        padding:25px;
    }

    .su-ppt-logo-only img{
        max-width:72%;
        max-height:68%;
    }

}
/* =========================================================
   PPT MOBILE PERFECT LAYOUT
========================================================= */

@media(max-width:600px){

    .su-presentation-section{
        overflow:hidden;
    }


    .su-presentation-layout{
        grid-template-columns:1fr;
        gap:20px;
    }


    /* =========================================
       PPT 16:9 EXACT RATIO
    ========================================== */

    .su-ppt-stage{
        width:100%;

        aspect-ratio:16 / 9;

        min-height:0 !important;
        height:auto;

        border-radius:14px;
    }


    /* =========================================
       TOP BAR
    ========================================== */

    .su-ppt-topbar{
        padding:10px 12px;
        gap:8px;
    }


    .su-ppt-brand{
        gap:6px;
        font-size:8px;
    }


    .su-ppt-brand img{
        width:27px;
        height:27px;
        padding:2px;
        border-radius:7px;
    }


    .su-ppt-counter{
        padding:5px 7px;
        font-size:7px;
    }


    /* =========================================
       CONTENT
    ========================================== */

    .su-ppt-content{
        padding:
            5px
            22px
            14px;

        justify-content:center;
    }


    .su-ppt-slide-number{
        margin-bottom:5px;

        font-size:7px;

        letter-spacing:.10em;
    }


    .su-ppt-content h3{
        max-width:100%;

        margin:0;

        font-size:
            clamp(
                17px,
                5vw,
                23px
            );

        line-height:1.08;

        letter-spacing:-.4px;
    }


    .su-ppt-content h4{
        margin-top:5px;

        font-size:
            clamp(
                8px,
                2.7vw,
                11px
            );

        line-height:1.25;
    }


    .su-ppt-content p{
        max-width:95%;

        margin-top:8px;

        font-size:
            clamp(
                7px,
                2.3vw,
                10px
            );

        line-height:1.4;
    }


    /* =========================================
       FOOTER
    ========================================== */

    .su-ppt-footer{
        padding:
            7px
            12px;

        gap:8px;

        font-size:6px;
    }


    /* =========================================
       CONTROLS
    ========================================== */

    .su-ppt-controls{
        display:grid;

        grid-template-columns:
            1fr
            1fr;

        gap:9px;

        margin-top:12px;
    }


    .su-ppt-arrow{
        min-height:38px;

        padding:
            0
            10px;

        font-size:10px;
    }


    .su-ppt-dots{
        grid-column:
            1 / -1;

        grid-row:2;

        gap:5px;
    }


    .su-ppt-dot{
        width:6px;
        height:6px;
    }


    .su-ppt-dot.active{
        width:18px;
    }


    /* =========================================
       LANGUAGE / DOWNLOAD CARD
    ========================================== */

    .su-ppt-side{
        position:static;

        padding:18px;

        border-radius:16px;
    }


    .su-ppt-language-tabs{
        gap:4px;
    }


    .su-ppt-lang{
        min-height:38px;

        padding:
            0
            5px;

        font-size:10px;
    }


    .su-ppt-download{
        padding:12px;
    }


    /* =========================================
       LOGO ONLY SLIDE
    ========================================== */

    .su-ppt-logo-only{
        padding:15px;
    }


    .su-ppt-logo-only img{
        width:auto;
        height:auto;

        max-width:62%;
        max-height:78%;

        object-fit:contain;
    }

}
/* =========================================================
   PPT SWIPE
========================================================= */

.su-ppt-stage{
    cursor:grab;
    user-select:none;
    -webkit-user-select:none;

    touch-action:
        pan-y;
}

.su-ppt-stage.su-ppt-dragging{
    cursor:grabbing;
}


/* Mobile swipe hint */

.su-ppt-stage::before{
    content:"Swipe to explore →";

    position:absolute;
    z-index:8;

    right:16px;
    bottom:46px;

    padding:5px 8px;

    border-radius:20px;

    background:
        rgba(
            0,
            0,
            0,
            .20
        );

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    font-size:7px;

    pointer-events:none;
}


@media(min-width:701px){

    .su-ppt-stage::before{
        display:none;
    }

}