/* =========================================================
   GURUKULAM COACHING INSTITUTE SHIMLA
   PREMIUM RESPONSIVE UI/UX STYLESHEET
   ========================================================= */

/* =========================
   DESIGN SYSTEM
   ========================= */
:root{
    --navy-950:#031024;
    --navy-900:#06152d;
    --navy-800:#0a2244;
    --navy-700:#103465;

    --blue:#1769e0;
    --blue-dark:#0b4fb3;
    --blue-soft:#eaf3ff;

    --gold:#ffd65a;
    --gold-dark:#f1b800;
    --gold-soft:#fff6d7;

    --green:#16a34a;
    --green-dark:#11813a;
    --green-soft:#eaf8ef;

    --red:#dc2626;
    --purple:#7c3aed;
    --orange:#f59e0b;

    --white:#ffffff;
    --text:#172033;
    --text-soft:#667085;
    --muted:#8a96a8;

    --surface:#ffffff;
    --surface-2:#f6f8fc;
    --border:#e5eaf1;

    --shadow-sm:0 4px 14px rgba(10,34,68,.07);
    --shadow-md:0 12px 30px rgba(10,34,68,.10);
    --shadow-lg:0 22px 55px rgba(10,34,68,.14);

    --radius-sm:10px;
    --radius-md:16px;
    --radius-lg:22px;
    --radius-xl:30px;

    --container:1250px;
}

/* =========================
   GLOBAL RESET
   ========================= */
*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    color:var(--text);
    background:var(--surface);

    line-height:1.5;

    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

button,
input,
select,
textarea{
    font:inherit;
}

button{
    cursor:pointer;
}

a{
    color:inherit;
}

::selection{
    background:var(--gold);
    color:var(--navy-950);
}

/* =========================
   MAIN CONTENT
   ========================= */
main{
    padding:0;
    min-height:60vh;
}

section{
    width:100%;
}

/* =========================
   TOP HEADER
   ========================= */
header{
    position:relative;
    z-index:1000;
}

.top-header{
    position:relative;

    min-height:76px;

    padding:10px 30px;

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

    gap:28px;

    color:var(--white);

    background:
        radial-gradient(
            circle at 80% -80%,
            rgba(255,214,90,.10),
            transparent 35%
        ),
        linear-gradient(
            110deg,
            var(--navy-950),
            var(--navy-900) 55%,
            var(--navy-800)
        );

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 5px 22px rgba(0,0,0,.08);
}

/* subtle top highlight */
.top-header::after{
    content:"";

    position:absolute;
    left:0;
    right:0;
    bottom:0;

    height:2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,214,90,.65),
            transparent
        );

    opacity:.55;
}

/* =========================
   LOGO
   ========================= */
.logo-wrap{
    position:relative;
    z-index:1;

    display:flex;
    align-items:center;

    gap:12px;

    flex:0 0 auto;
}

.logo-wrap img{
    width:50px;
    height:50px;

    object-fit:contain;

    border-radius:12px;

    filter:drop-shadow(0 5px 12px rgba(0,0,0,.20));
}

.logo-text h1{
    margin:0;

    color:#fff;

    font-size:22px;
    font-weight:850;

    line-height:1;

    letter-spacing:1px;
}

.logo-text span{
    display:block;

    margin-top:5px;

    color:var(--gold);

    font-size:10px;
    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;
}

/* =========================
   TOP NAVIGATION
   ========================= */
.top-nav{
    display:flex;
    align-items:center;

    gap:5px;

    margin-left:auto;
}

.top-nav a{
    position:relative;

    display:flex;
    align-items:center;

    gap:7px;

    padding:9px 12px;

    color:#dce7f5;

    text-decoration:none;

    font-size:14px;
    font-weight:600;

    border-radius:9px;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.top-nav a i{
    color:#a9bed8;
    font-size:13px;

    transition:color .25s ease;
}

.top-nav a:hover,
.top-nav a.active{
    color:#fff;
    background:rgba(255,255,255,.07);
}

.top-nav a:hover i,
.top-nav a.active i{
    color:var(--gold);
}

.top-nav a:hover{
    transform:translateY(-1px);
}

/* =========================
   HEADER ACTIONS
   ========================= */
.actions{
    display:flex;
    align-items:center;

    gap:12px;

    flex:0 0 auto;
}

.actions .phone{
    display:flex;
    align-items:center;
    gap:7px;

    color:#dce7f5;

    font-size:13px;
    font-weight:600;

    white-space:nowrap;
}

.actions .phone i{
    color:var(--gold);
}

.actions button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:7px;

    border:0;

    padding:10px 17px;

    border-radius:25px;

    background:
        linear-gradient(
            135deg,
            #ffe178,
            var(--gold-dark)
        );

    color:var(--navy-950);

    font-size:13px;
    font-weight:800;

    box-shadow:
        0 7px 18px rgba(255,196,35,.16);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.actions button:hover{
    transform:translateY(-2px);

    box-shadow:
        0 10px 24px rgba(255,196,35,.28);
}

/* =========================
   SECOND NAVIGATION
   ========================= */
.sub-nav{
    position:relative;

    display:flex;
    align-items:center;

    gap:7px;

    padding:9px 30px;

    background:#fff;

    border-bottom:1px solid var(--border);

    box-shadow:0 4px 15px rgba(10,34,68,.05);

    overflow-x:auto;

    scrollbar-width:none;
}

.sub-nav::-webkit-scrollbar{
    display:none;
}

.sub-nav a{
    flex:0 0 auto;

    display:flex;
    align-items:center;

    gap:7px;

    padding:8px 13px;

    color:#4b5565;

    text-decoration:none;

    font-size:13px;
    font-weight:600;

    border-radius:9px;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.sub-nav a i{
    color:#718096;
}

.sub-nav a.active,
.sub-nav a:hover{
    color:var(--navy-900);

    background:var(--gold-soft);
}

.sub-nav a.active i,
.sub-nav a:hover i{
    color:var(--gold-dark);
}

.sub-nav a:hover{
    transform:translateY(-1px);
}

/* =========================
   MOBILE MENU
   ========================= */
.menu-toggle{
    display:none;

    width:42px;
    height:42px;

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

    color:#fff;

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

    border:1px solid rgba(255,255,255,.12);

    border-radius:11px;

    font-size:19px;
}

/* =========================
   HERO
   ========================= */
.hero{
    position:relative;

    max-width:100%;

    min-height:520px;

    padding:
        75px
        max(28px, calc((100% - var(--container))/2 + 30px));

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

    gap:55px;

    overflow:hidden;

    color:#fff;

    background:
        radial-gradient(
            circle at 75% 15%,
            rgba(42,111,204,.32),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(255,214,90,.08),
            transparent 25%
        ),
        linear-gradient(
            120deg,
            #041329,
            #0a2850 58%,
            #0d3568
        );
}

/* hero glow */
.hero::before{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    right:-220px;
    top:-220px;

    border-radius:50%;

    background:rgba(255,214,90,.055);
}

.hero::after{
    content:"";

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,214,90,.45),
            transparent
        );
}

.hero-left{
    position:relative;
    z-index:2;

    flex:1;

    max-width:650px;
}

.hero-left::before{
    content:"Trusted Government Exam Preparation";

    display:inline-flex;

    align-items:center;

    margin-bottom:18px;

    padding:7px 13px;

    color:#ffeaa1;

    background:rgba(255,214,90,.08);

    border:1px solid rgba(255,214,90,.18);

    border-radius:30px;

    font-size:11px;
    font-weight:700;

    letter-spacing:.8px;

    text-transform:uppercase;
}

.hero-left h1{
    margin:0;

    color:#fff;

    font-size:clamp(38px,5vw,62px);

    font-weight:900;

    line-height:1.05;

    letter-spacing:-1.5px;
}

.hero-left span{
    color:var(--gold);

    text-shadow:
        0 5px 25px rgba(255,214,90,.12);
}

.exam-list{
    margin-top:25px;

    display:flex;
    flex-wrap:wrap;

    gap:9px;
}

.badge{
    display:inline-flex;
    align-items:center;

    min-height:34px;

    padding:7px 13px;

    border:1px solid rgba(255,255,255,.10);

    border-radius:30px;

    font-size:12px;
    font-weight:700;

    color:#fff;

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

.ssc{background:#e88400;}
.blue{background:#1476d4;}
.red{background:#d93232;}
.green{background:#2f974a;}
.yellow{background:#f0bb18;color:#111;}
.purple{background:#7250b5;}

/* Hero image */
.hero-right{
    position:relative;
    z-index:2;

    flex:0 1 500px;

    display:flex;
    justify-content:center;
}

.hero-right img{
    width:100%;
    max-width:500px;

    border-radius:22px;

    box-shadow:
        0 25px 65px rgba(0,0,0,.25);

    object-fit:cover;

    transition:
        transform .4s ease;
}

.hero-right img:hover{
    transform:translateY(-5px);
}

.join-btn{
    position:absolute;

    left:25px;
    bottom:22px;

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

    padding:12px 22px;

    border:0;

    border-radius:30px;

    background:
        linear-gradient(
            135deg,
            #ffe078,
            #f0b900
        );

    color:var(--navy-950);

    font-size:13px;
    font-weight:800;

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

    transition:
        transform .25s ease;
}

.join-btn:hover{
    transform:translateY(-3px);
}

/* =========================
   DASHBOARD
   ========================= */
.dashboard{
    padding:50px 28px;

    background:
        linear-gradient(
            180deg,
            #f6f8fc 0%,
            #eef3f9 100%
        );
}

.dash-nav{
    width:100%;
    max-width:var(--container);

    margin:0 auto;

    display:flex;
    align-items:center;

    gap:7px;

    padding:8px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:14px;

    box-shadow:var(--shadow-sm);

    overflow-x:auto;

    scrollbar-width:none;
}

.dash-nav::-webkit-scrollbar{
    display:none;
}

.dash-nav a{
    flex:0 0 auto;

    padding:10px 15px;

    border-radius:9px;

    color:#596579;

    font-size:13px;
    font-weight:650;

    cursor:pointer;

    transition:.25s ease;
}

.dash-nav a:hover{
    color:var(--navy-900);
    background:#f4f7fb;
}

.dash-nav a.active{
    background:var(--navy-900);
    color:#fff;

    box-shadow:
        0 5px 14px rgba(6,21,45,.15);
}

.dash-content{
    width:100%;
    max-width:var(--container);

    margin:22px auto 0;

    display:grid;

    grid-template-columns:minmax(0,2fr) minmax(280px,1fr);

    gap:22px;

    align-items:start;
}

.courses{
    min-width:0;
}

.courses > h3,
.updates > h3{
    margin:0 0 14px;

    color:var(--navy-900);

    font-size:20px;
    font-weight:800;
}

.course-grid{
    display:grid;

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

    gap:17px;
}

.course-card{
    position:relative;

    padding:12px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:17px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    overflow:hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.course-card::before{
    content:"";

    position:absolute;

    left:0;
    right:0;
    top:0;

    height:3px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--blue)
        );

    opacity:0;

    transition:opacity .3s ease;
}

.course-card:hover{
    transform:translateY(-6px);

    border-color:#d9e2ee;

    box-shadow:var(--shadow-md);
}

.course-card:hover::before{
    opacity:1;
}

.course-card img{
    width:100%;

    aspect-ratio:16/9;

    object-fit:cover;

    border-radius:11px;

    background:#edf1f7;
}

.course-card h4{
    min-height:40px;

    margin:13px 4px 0;

    color:var(--navy-900);

    font-size:15px;
    font-weight:750;

    line-height:1.35;
}

.course-card button{
    width:100%;

    margin-top:11px;

    padding:10px 15px;

    border:0;

    border-radius:10px;

    background:var(--gold);

    color:var(--navy-950);

    font-size:13px;
    font-weight:800;

    transition:.25s ease;
}

.course-card button:hover{
    background:var(--gold-dark);

    transform:translateY(-1px);
}

/* =========================
   UPDATES
   ========================= */
.updates{
    min-width:0;

    padding:20px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:17px;

    box-shadow:var(--shadow-sm);
}

.updates ul{
    margin:0;
    padding:0;

    list-style:none;

    font-size:13px;
}

.updates ul li{
    position:relative;

    padding:11px 0 11px 18px;

    border-bottom:1px solid #edf1f5;

    color:#566276;

    line-height:1.45;
}

.updates ul li::before{
    content:"";

    position:absolute;

    left:0;
    top:17px;

    width:6px;
    height:6px;

    background:var(--blue);

    border-radius:50%;
}

.updates ul li:last-child{
    border-bottom:0;
}

.updates ul li.new{
    color:var(--navy-900);
    font-weight:700;
}

.updates ul li .badge{
    display:inline-flex;

    min-height:auto;

    margin-left:6px;

    padding:3px 7px;

    background:#eaf8ef;

    color:var(--green-dark);

    border:0;

    border-radius:5px;

    font-size:9px;

    box-shadow:none;
}

/* Mock card inside updates */
.updates .mock-box{
    margin-top:17px;
}

/* =========================
   MODAL / MOCK TEST
   ========================= */
.mock-overlay{
    position:fixed;

    inset:0;

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

    padding:20px;

    background:rgba(1,10,25,.76);

    backdrop-filter:blur(5px);

    z-index:9999;
}

.mock-box{
    position:relative;

    width:100%;
    max-width:430px;

    padding:30px 25px;

    background:#fff;

    border:1px solid rgba(255,255,255,.4);

    border-radius:22px;

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

    animation:popupZoom .25s ease;
}

@keyframes popupZoom{
    from{
        transform:scale(.94) translateY(10px);
        opacity:0;
    }

    to{
        transform:scale(1) translateY(0);
        opacity:1;
    }
}

.mock-box .close{
    position:absolute;

    top:12px;
    right:15px;

    width:35px;
    height:35px;

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

    border-radius:50%;

    color:#687386;

    background:#f4f6f8;

    font-size:22px;

    cursor:pointer;

    transition:.2s ease;
}

.mock-box .close:hover{
    background:#fee2e2;
    color:#dc2626;
}

.mock-box h3{
    margin:0 0 20px;

    text-align:center;

    color:var(--navy-900);

    font-size:23px;
    font-weight:850;
}

.mock-box input,
.mock-box select{
    width:100%;

    padding:13px 14px;

    margin-bottom:12px;

    border:1px solid #d8dee8;

    border-radius:11px;

    background:#fff;

    color:var(--text);

    font-size:14px;

    outline:none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.mock-box input:focus,
.mock-box select:focus{
    border-color:var(--blue);

    box-shadow:
        0 0 0 3px rgba(23,105,224,.10);
}

.mock-box button{
    width:100%;

    padding:13px 16px;

    border:0;

    border-radius:11px;

    background:
        linear-gradient(
            135deg,
            #ffe17b,
            var(--gold-dark)
        );

    color:var(--navy-950);

    font-size:15px;
    font-weight:850;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.mock-box button:hover{
    transform:translateY(-2px);

    box-shadow:
        0 8px 18px rgba(241,184,0,.22);
}

/* =========================
   FREE DEMO
   ========================= */
.demo-section{
    position:relative;

    padding:75px 28px;

    overflow:hidden;

    color:#fff;

    background:
        linear-gradient(
            105deg,
            rgba(4,19,41,.98),
            rgba(8,43,85,.88)
        ),
        url("https://online.gurukulamcoachinginstitute.com/wp-content/uploads/2025/12/patwari-coaching-online-1536x857.png")
        center/cover no-repeat;
}

.demo-overlay{
    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(255,214,90,.12),
            transparent 25%
        );
}

.demo-content{
    position:relative;
    z-index:2;

    width:100%;
    max-width:var(--container);

    margin:auto;

    display:grid;

    grid-template-columns:minmax(0,1.4fr) minmax(250px,.6fr);

    align-items:center;

    gap:50px;
}

.demo-left{
    min-width:0;
}

.demo-left h2{
    margin:0;

    font-size:clamp(28px,4vw,42px);

    font-weight:900;

    line-height:1.12;
}

.demo-left h2 span{
    color:var(--gold);
}

.demo-form{
    display:grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        auto;

    gap:9px;

    margin:24px 0;

    padding:10px;

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

    border:1px solid rgba(255,255,255,.12);

    border-radius:14px;

    backdrop-filter:blur(10px);
}

.demo-form input,
.demo-form select{
    width:100%;

    min-width:0;

    padding:12px 13px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:9px;

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

    color:#1c2738;

    outline:none;

    font-size:13px;
}

.demo-form input:focus,
.demo-form select:focus{
    border-color:var(--gold);

    box-shadow:
        0 0 0 3px rgba(255,214,90,.12);
}

.demo-form button{
    padding:12px 18px;

    border:0;

    border-radius:10px;

    background:
        linear-gradient(
            135deg,
            #ffe17b,
            var(--gold-dark)
        );

    color:var(--navy-950);

    font-size:12px;
    font-weight:850;

    white-space:nowrap;

    transition:.25s ease;
}

.demo-form button:hover{
    transform:translateY(-2px);

    box-shadow:
        0 8px 20px rgba(255,214,90,.20);
}

.demo-points{
    margin:0;
    padding:0;

    display:grid;

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

    gap:10px;

    list-style:none;

    color:#dce7f5;

    font-size:13px;
}

.demo-points li{
    display:flex;
    align-items:center;
}

.demo-points li::before{
    content:"✓";

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

    width:22px;
    height:22px;

    margin-right:8px;

    border-radius:50%;

    background:rgba(255,214,90,.10);

    color:var(--gold);

    font-size:11px;
    font-weight:900;
}

.demo-right{
    display:flex;
    justify-content:center;
    align-items:flex-end;
}

.demo-right img{
    width:100%;
    max-width:330px;

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

/* =========================
   VIDEO SECTION
   ========================= */
.video-section{
    padding:70px 28px;

    background:
        linear-gradient(
            180deg,
            #fff,
            #f8fafc
        );
}

.video-header{
    max-width:800px;

    margin:0 auto 32px;

    text-align:center;
}

.video-tagline{
    display:inline-block;

    margin:0;

    padding:6px 11px;

    color:var(--green-dark);

    background:var(--green-soft);

    border-radius:30px;

    font-size:11px;
    font-weight:800;

    letter-spacing:.7px;

    text-transform:uppercase;
}

.video-header h2{
    margin:13px 0 8px;

    color:var(--navy-900);

    font-size:clamp(25px,3vw,34px);

    font-weight:900;

    line-height:1.2;
}

.title-bar{
    width:55px;
    height:4px;

    margin:12px auto 0;

    background:
        linear-gradient(
            90deg,
            var(--green),
            #76d39a
        );

    border-radius:20px;
}

.video-slider{
    width:100%;
    max-width:var(--container);

    margin:auto;

    display:flex;

    gap:18px;

    overflow-x:auto;

    scroll-behavior:smooth;

    padding:4px 4px 18px;

    scrollbar-width:thin;
}

.video-slider::-webkit-scrollbar{
    height:7px;
}

.video-slider::-webkit-scrollbar-thumb{
    background:#d5dce6;
    border-radius:20px;
}

.video-card{
    flex:0 0 330px;

    padding:10px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:17px;

    box-shadow:var(--shadow-sm);

    overflow:hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.video-card:hover{
    transform:translateY(-5px);

    box-shadow:var(--shadow-md);
}

.video-card iframe{
    width:100%;
    height:185px;

    display:block;

    border:0;

    border-radius:11px;
}

.video-card h4{
    margin:12px 4px 5px;

    color:var(--navy-900);

    font-size:14px;
    font-weight:750;

    line-height:1.45;
}

.video-cta{
    margin-top:28px;

    text-align:center;
}

.subscribe-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 24px;

    background:#e00000;

    color:#fff;

    border-radius:30px;

    text-decoration:none;

    font-size:13px;
    font-weight:800;

    box-shadow:
        0 8px 18px rgba(224,0,0,.15);

    transition:.25s ease;
}

.subscribe-btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 12px 24px rgba(224,0,0,.22);
}

/* =========================
   HP GK SECTION
   ========================= */
.hp-gk-section{
    padding:75px 28px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f6fbf8
        );
}

.hp-gk-header{
    max-width:760px;

    margin:0 auto 40px;

    text-align:center;
}

.hp-tag{
    display:inline-block;

    padding:6px 11px;

    color:var(--green-dark);

    background:var(--green-soft);

    border-radius:30px;

    font-size:11px;
    font-weight:800;

    letter-spacing:.9px;

    text-transform:uppercase;
}

.hp-gk-header h2{
    margin:13px 0 8px;

    color:var(--navy-900);

    font-size:clamp(27px,3vw,36px);

    font-weight:900;
}

.hp-divider{
    width:55px;
    height:4px;

    margin:12px auto 0;

    background:
        linear-gradient(
            90deg,
            var(--green),
            #6fd298
        );

    border-radius:10px;
}

.hp-gk-grid{
    width:100%;
    max-width:var(--container);

    margin:auto;

    display:grid;

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

    gap:20px;
}

.hp-gk-card{
    position:relative;

    padding:28px 20px;

    background:#fff;

    border:1px solid #e3eee7;

    border-radius:20px;

    text-align:center;

    box-shadow:
        0 10px 25px rgba(24,90,52,.07);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.hp-gk-card::before{
    content:"";

    position:absolute;

    top:0;
    left:25%;
    right:25%;

    height:3px;

    border-radius:0 0 10px 10px;

    background:var(--green);

    transform:scaleX(0);

    transition:.3s ease;
}

.hp-gk-card:hover{
    transform:translateY(-7px);

    border-color:#cde7d6;

    box-shadow:
        0 18px 35px rgba(24,90,52,.11);
}

.hp-gk-card:hover::before{
    transform:scaleX(1);
}

.hp-gk-icon{
    width:62px;
    height:62px;

    margin:0 auto 17px;

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

    background:var(--green-soft);

    color:var(--green-dark);

    border:1px solid #d5efdd;

    border-radius:50%;

    font-size:27px;
}

.hp-gk-card h3{
    margin:0 0 8px;

    color:var(--navy-900);

    font-size:19px;
    font-weight:800;
}

.hp-gk-card p{
    margin:0;

    min-height:63px;

    color:#687386;

    font-size:13px;

    line-height:1.6;
}

.hp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:17px;

    padding:10px 20px;

    border-radius:30px;

    background:
        linear-gradient(
            135deg,
            #28bd69,
            #159447
        );

    color:#fff;

    font-size:12px;
    font-weight:800;

    text-decoration:none;

    box-shadow:
        0 7px 15px rgba(22,163,74,.14);

    transition:.25s ease;
}

.hp-btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 10px 20px rgba(22,163,74,.22);
}

/* =========================
   PREMIUM FOOTER
   ========================= */
.site-footer{
    position:relative;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255,214,90,.09),
            transparent 28%
        ),
        radial-gradient(
            circle at 5% 95%,
            rgba(28,102,190,.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #041329 0%,
            #071b38 48%,
            #020b19 100%
        );

    color:#dce7f5;

    font-size:14px;
}

.site-footer::before{
    content:"";

    position:absolute;

    width:360px;
    height:360px;

    top:-210px;
    right:-100px;

    background:rgba(255,214,90,.055);

    border-radius:50%;

    pointer-events:none;
}

.site-footer::after{
    content:"";

    position:absolute;

    width:300px;
    height:300px;

    bottom:-200px;
    left:-120px;

    background:rgba(32,104,190,.08);

    border-radius:50%;

    pointer-events:none;
}

.footer-container{
    position:relative;
    z-index:2;

    width:100%;
    max-width:1250px;

    margin:auto;

    padding:60px 30px 45px;

    display:grid;

    grid-template-columns:
        1.7fr
        1fr
        1.15fr
        1.25fr;

    gap:50px;

    align-items:start;
}

.footer-brand{
    min-width:0;
}

.footer-logo{
    display:flex;
    align-items:center;

    gap:12px;

    margin-bottom:18px;
}

.footer-logo img{
    width:52px;
    height:52px;

    object-fit:contain;

    border-radius:12px;
}

.footer-logo-text h3{
    margin:0;

    color:#fff;

    font-size:24px;
    font-weight:850;

    letter-spacing:.8px;
}

.footer-logo-text span{
    display:block;

    margin-top:3px;

    color:var(--gold);

    font-size:10px;
    font-weight:700;

    letter-spacing:1.6px;

    text-transform:uppercase;
}

.footer-col.footer-brand > h3{
    margin:0 0 16px;

    color:#fff;

    font-size:25px;
    font-weight:850;

    letter-spacing:.8px;
}

.footer-tagline{
    max-width:360px;

    margin:0 0 20px;

    color:#b8c9dd;

    font-size:14px;

    line-height:1.75;
}

.footer-tagline strong{
    color:#fff;
}

.footer-social{
    display:flex;
    align-items:center;

    gap:10px;

    margin-top:20px;
}

.footer-social a{
    width:40px;
    height:40px;

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

    border:1px solid rgba(255,255,255,.12);

    border-radius:11px;

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

    color:#fff;

    font-size:16px;

    text-decoration:none;

    transition:.25s ease;
}

.footer-social a:hover{
    transform:translateY(-4px);

    background:var(--gold);

    color:var(--navy-950);

    border-color:var(--gold);

    box-shadow:
        0 8px 20px rgba(255,214,90,.18);
}

.footer-col h4{
    position:relative;

    display:inline-block;

    margin:0 0 22px;

    padding-bottom:9px;

    color:#fff;

    font-size:16px;
    font-weight:750;
}

.footer-col h4::after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:32px;
    height:3px;

    border-radius:10px;

    background:var(--gold);
}

.footer-col ul{
    list-style:none;

    margin:0;
    padding:0;
}

.footer-col ul li{
    margin-bottom:13px;
}

.footer-col ul li a{
    display:inline-flex;
    align-items:center;

    color:#b9c9dd;

    text-decoration:none;

    line-height:1.4;

    transition:.25s ease;
}

.footer-col ul li a::before{
    content:"›";

    margin-right:8px;

    color:var(--gold);

    font-size:18px;

    line-height:1;
}

.footer-col ul li a:hover{
    color:#fff;

    transform:translateX(4px);
}

.footer-contact p{
    display:flex;
    align-items:flex-start;

    margin:0 0 15px;

    color:#c4d1e1;

    line-height:1.55;
}

.footer-contact i{
    flex:0 0 25px;

    margin-top:3px;

    color:var(--gold);

    font-size:15px;
}

.footer-contact a{
    color:#c4d1e1;

    text-decoration:none;

    transition:.25s ease;
}

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

.footer-btn{
    display:inline-flex;

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

    gap:8px;

    margin-top:8px;

    padding:12px 22px;

    border-radius:30px;

    background:
        linear-gradient(
            135deg,
            #ffd95c,
            #f2b900
        );

    color:#07182f !important;

    font-size:14px;
    font-weight:850;

    text-decoration:none;

    box-shadow:
        0 8px 22px rgba(255,195,40,.16);

    transition:.25s ease;
}

.footer-btn:hover{
    transform:translateY(-3px);

    box-shadow:
        0 12px 28px rgba(255,195,40,.28);
}

.footer-trust{
    position:relative;
    z-index:2;

    width:100%;
    max-width:1250px;

    margin:auto;

    padding:20px 30px;

    display:grid;

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

    gap:15px;

    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-trust-item{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:9px;

    color:#b8c9dd;

    font-size:13px;

    white-space:nowrap;
}

.footer-trust-item i{
    width:32px;
    height:32px;

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

    border-radius:50%;

    background:rgba(255,214,90,.09);

    color:var(--gold);
}

.footer-bottom{
    position:relative;
    z-index:2;

    padding:17px 20px;

    background:#020a17;

    border-top:1px solid rgba(255,255,255,.05);

    text-align:center;

    color:#8295ae;

    font-size:13px;

    line-height:1.6;
}

.footer-bottom p{
    margin:0;
}

.footer-bottom strong{
    color:#fff;
}

.footer-bottom span{
    color:var(--gold);
}

/* =========================
   LIVE NOTIFICATION
   ========================= */
.live-toast{
    position:fixed;

    left:20px;
    bottom:22px;

    width:320px;
    max-width:calc(100vw - 40px);

    padding:15px 18px;

    display:none;

    z-index:99999;

    border:1px solid rgba(7,45,93,.08);

    border-radius:15px;

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

    color:#26364a;

    font-size:13px;

    line-height:1.5;

    box-shadow:
        0 18px 45px rgba(0,0,0,.20);

    backdrop-filter:blur(12px);

    animation:slideUp .4s ease;
}

.live-toast span{
    display:block;

    margin-bottom:3px;

    color:#0b5ed7;

    font-size:11px;
    font-weight:850;

    letter-spacing:.6px;

    text-transform:uppercase;
}

@keyframes slideUp{
    from{
        transform:translateY(25px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }
}

/* =========================
   TABLET
   ========================= */
@media(max-width:1100px){

    .top-header{
        padding-left:22px;
        padding-right:22px;
    }

    .top-nav{
        gap:2px;
    }

    .top-nav a{
        padding-left:9px;
        padding-right:9px;
    }

    .hero{
        padding-left:35px;
        padding-right:35px;
    }

    .hp-gk-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .footer-container{
        grid-template-columns:1fr 1fr;

        gap:40px 30px;

        padding:50px 25px 40px;
    }

    .footer-trust{
        grid-template-columns:1fr 1fr;

        padding:20px 25px;
    }
}

/* =========================
   TABLET / SMALL LAPTOP
   ========================= */
@media(max-width:992px){

    .actions .phone{
        display:none;
    }

    .top-nav{
        gap:0;
    }

    .top-nav a{
        font-size:13px;
    }

    .hero{
        min-height:auto;

        padding-top:60px;
        padding-bottom:60px;

        gap:35px;
    }

    .hero-left{
        max-width:55%;
    }

    .hero-right{
        flex-basis:40%;
    }

    .dash-content{
        grid-template-columns:1fr;
    }

    .course-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

    .demo-content{
        grid-template-columns:1fr .45fr;
        gap:25px;
    }

    .demo-form{
        grid-template-columns:1fr 1fr;
    }

    .demo-form button{
        width:100%;
    }
}

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

    .top-header{
        min-height:68px;

        padding:9px 15px;

        flex-wrap:wrap;

        gap:8px;
    }

    .logo-wrap img{
        width:44px;
        height:44px;
    }

    .logo-text h1{
        font-size:19px;
    }

    .logo-text span{
        font-size:9px;
    }

    .menu-toggle{
        display:flex;

        margin-left:auto;
    }

    .top-nav,
    .actions{
        display:none;

        width:100%;

        margin-left:0;

        justify-content:center;

        padding-top:5px;
        padding-bottom:5px;
    }

    .top-nav.active{
        display:flex;

        flex-direction:column;

        gap:4px;
    }

    .actions.active{
        display:flex;

        flex-direction:column;

        gap:9px;
    }

    .top-nav a{
        width:100%;

        justify-content:center;

        padding:10px;
    }

    .actions .phone{
        display:flex;
    }

    .actions button{
        width:100%;
        max-width:250px;
    }

    .sub-nav{
        padding:8px 12px;

        gap:5px;
    }

    .sub-nav a{
        padding:8px 11px;

        font-size:12px;
    }

    .hero{
        padding:48px 20px;

        flex-direction:column;

        text-align:center;

        gap:28px;
    }

    .hero-left{
        max-width:100%;
    }

    .hero-left::before{
        margin-bottom:15px;
    }

    .hero-left h1{
        font-size:38px;

        letter-spacing:-.8px;
    }

    .exam-list{
        justify-content:center;

        gap:7px;
    }

    .badge{
        padding:6px 10px;

        font-size:11px;
    }

    .hero-right{
        width:100%;

        flex-basis:auto;
    }

    .hero-right img{
        max-width:430px;

        border-radius:18px;
    }

    .join-btn{
        left:50%;
        bottom:15px;

        transform:translateX(-50%);

        white-space:nowrap;
    }

    .join-btn:hover{
        transform:translateX(-50%) translateY(-2px);
    }

    .dashboard{
        padding:35px 15px;
    }

    .dash-content{
        margin-top:16px;
    }

    .course-grid{
        grid-template-columns:1fr 1fr;
    }

    .updates{
        padding:17px;
    }

    .demo-section{
        padding:55px 18px;
    }

    .demo-content{
        grid-template-columns:1fr;
    }

    .demo-left h2{
        font-size:29px;

        text-align:center;
    }

    .demo-form{
        grid-template-columns:1fr;

        padding:10px;
    }

    .demo-form button{
        width:100%;
    }

    .demo-points{
        grid-template-columns:1fr;

        text-align:left;
    }

    .demo-right{
        display:none;
    }

    .video-section,
    .hp-gk-section{
        padding:55px 15px;
    }

    .video-card{
        flex-basis:290px;
    }

    .video-card iframe{
        height:165px;
    }

    .hp-gk-grid{
        grid-template-columns:1fr 1fr;

        gap:14px;
    }

    .hp-gk-card{
        padding:22px 15px;
    }

    .hp-gk-card p{
        min-height:auto;
    }

    .footer-container{
        grid-template-columns:1fr;

        gap:32px;

        padding:45px 20px 30px;

        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .footer-col.footer-brand > h3{
        text-align:center;
    }

    .footer-tagline{
        max-width:100%;

        margin-left:auto;
        margin-right:auto;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-col h4::after{
        left:50%;

        transform:translateX(-50%);
    }

    .footer-col ul li a{
        justify-content:center;
    }

    .footer-contact p{
        justify-content:center;

        width:max-content;

        max-width:100%;

        margin-left:auto;
        margin-right:auto;

        text-align:left;
    }

    .footer-btn{
        margin-left:auto;
        margin-right:auto;
    }

    .footer-trust{
        grid-template-columns:1fr;

        padding:20px;
    }

    .footer-trust-item{
        white-space:normal;
    }

    .live-toast{
        left:10px;
        right:10px;

        bottom:15px;

        width:auto;

        max-width:none;
    }
}

/* =========================
   SMALL MOBILE
   ========================= */
@media(max-width:480px){

    .hero-left h1{
        font-size:32px;
    }

    .hero-left::before{
        font-size:9px;
    }

    .course-grid{
        grid-template-columns:1fr;
    }

    .course-card{
        padding:11px;
    }

    .video-card{
        flex-basis:275px;
    }

    .hp-gk-grid{
        grid-template-columns:1fr;
    }

    .hp-gk-card{
        padding:24px 18px;
    }

    .footer-logo-text h3{
        font-size:21px;
    }

    .footer-social a{
        width:38px;
        height:38px;
    }

    .footer-btn{
        width:100%;
        max-width:270px;
    }
}

/* =========================
   VERY SMALL MOBILE
   ========================= */
@media(max-width:380px){

    .top-header{
        padding-left:12px;
        padding-right:12px;
    }

    .logo-wrap img{
        width:40px;
        height:40px;
    }

    .logo-text h1{
        font-size:17px;
    }

    .hero{
        padding-left:15px;
        padding-right:15px;
    }

    .hero-left h1{
        font-size:29px;
    }

    .badge{
        font-size:10px;
    }

    .dashboard{
        padding-left:10px;
        padding-right:10px;
    }

    .footer-container{
        padding-left:15px;
        padding-right:15px;
    }
}
