/* ===================================================================
   NOVA STELLAR TRAINING — main.css
   =================================================================== */

:root{
	--navy:#14213D;
	--navy-dark:#0E1830;
	--green:#1B7A4D;
	--green-light:#7CB342;
	--gold:#C9A227;
	--white:#FFFFFF;
	--offwhite:#F6F8FA;
	--gray:#5A6472;
	--border:#E3E7EC;
	--radius:14px;
	--shadow:0 10px 30px rgba(20,33,61,0.08);
	--container:1240px;
	
	/* NEW */
	--btn-hover-bg:var(--navy);
	--btn-hover-text:#fff;
	
}

*{box-sizing:border-box;}
body{margin:0;font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;color:#222;line-height:1.6;background:var(--white);}
img{max-width:100%;display:block;}
a{color:var(--green);text-decoration:none;}
h1,h2,h3,h4{font-family:'Inter',sans-serif;color:var(--navy);line-height:1.2;margin:0 0 .5em;}
ul{margin:0;padding:0;list-style:none;}

.nst-container{max-width:var(--container);margin:0 auto;padding:0 24px;}
.nst-section{padding:70px 0;}
.nst-section-title{font-size:2rem;text-align:left;}
.nst-section-sub{color:var(--gray);max-width:640px;}

.nst-btn{display:inline-block;padding:13px 26px;border-radius:8px;font-weight:600;font-size:.95rem;cursor:pointer;border:2px solid transparent;transition:transform .15s ease,box-shadow .15s ease;}
.nst-btn:hover{
	background:var(--navy);
	color:#fff !important;
	border-color:var(--navy);
	transform:translateY(-2px);
	box-shadow:0 8px 18px rgba(0,0,0,.12);
}
.nst-btn-primary{background:var(--green);color:#fff;}
.nst-btn-gold{background:var(--gold);color:var(--navy);}
.nst-btn-light{background:#fff;color:var(--navy);}
.nst-btn-outline{background:transparent;border-color:var(--navy);color:var(--navy);}
.nst-btn-outline-light{background:transparent;border-color:#fff;color:#fff;}
.nst-btn-sm{padding:9px 18px;font-size:.85rem;}
.nst-btn-full{display:block;text-align:center;width:100%;margin-top:10px;}

/* ===================== STICKY HEADER (all devices) ===================== */
.nst-site-header{position:sticky;top:0;z-index:1000;width:100%;box-shadow:0 2px 10px rgba(0,0,0,.06);}

.nst-topbar{background:var(--navy-dark);color:#fff;overflow:hidden;height:34px;display:flex;align-items:center;}
.nst-marquee{width:100%;overflow:hidden;}
.nst-marquee-track{display:flex;width:max-content;animation:nst-scroll 28s linear infinite;}
.nst-marquee-track span{padding:0 40px;font-size:.78rem;letter-spacing:.03em;white-space:nowrap;}
@keyframes nst-scroll{from{transform:translateX(0);}to{transform:translateX(-50%);}}

.nst-navbar{background:#fff;}
.nst-navbar-inner{display:flex;align-items:center;justify-content:space-between;height:78px;gap:24px;position:relative;}
.nst-logo{display:flex;align-items:center;}
.nst-logo-fallback{font-weight:800;color:var(--navy);font-size:1.2rem;}
.nst-primary-nav{flex:1;display:flex;justify-content:center;}
.nst-menu{display:flex;gap:28px;}
.nst-menu li a{color:var(--navy);font-weight:600;font-size:.95rem;}
.nst-menu li a:hover{color:var(--green);}
.nst-nav-actions{display:flex;align-items:center;gap:10px;}
.nst-icon-btn{background:none;border:none;cursor:pointer;color:var(--navy);display:flex;align-items:center;justify-content:center;padding:6px;border-radius:50%;}
.nst-icon-btn:hover{background:var(--offwhite);}
.nst-btn-book{white-space:nowrap;}

.nst-hamburger{display:none;flex-direction:column;justify-content:center;gap:5px;width:32px;height:32px;background:none;border:none;cursor:pointer;}
.nst-hamburger span{display:block;height:2.5px;width:100%;background:var(--navy);border-radius:2px;transition:.25s;}
.nst-hamburger.is-active span:nth-child(1){transform:translateY(7.5px) rotate(45deg);}
.nst-hamburger.is-active span:nth-child(2){opacity:0;}
.nst-hamburger.is-active span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg);}

.nst-search-bar{position:absolute;top:100%;left:0;right:0;background:#fff;padding:14px 24px;box-shadow:0 8px 16px rgba(0,0,0,.08);}
.nst-search-bar form{display:flex;max-width:var(--container);margin:0 auto;gap:8px;}
.nst-search-bar input{flex:1;padding:10px 14px;border:1px solid var(--border);border-radius:8px;}
.nst-search-bar button{padding:10px 20px;background:var(--green);color:#fff;border:none;border-radius:8px;cursor:pointer;}

.nst-mobile-overlay{position:fixed;inset:0;background:var(--navy);z-index:1100;display:flex;flex-direction:column;justify-content:center;padding:40px 30px;transform:translateX(100%);transition:transform .35s ease;}
.nst-mobile-overlay.is-open{transform:translateX(0);}
.nst-mobile-menu{display:flex;flex-direction:column;gap:22px;}
.nst-mobile-menu li a{color:#fff;font-size:1.4rem;font-weight:700;font-family:Georgia,serif;}
.nst-mobile-cta{margin-top:40px;display:flex;flex-direction:column;gap:12px;}

/* ===================== HERO ===================== */
.nst-hero{position:relative;background:linear-gradient(120deg,#7CB342,#3E8E41,#1B5E20);background-size:200% 200%;animation:nst-gradient 14s ease infinite;overflow:hidden;padding:60px 0;}
@keyframes nst-gradient{0%{background-position:0% 50%;}50%{background-position:100% 50%;}100%{background-position:0% 50%;}}
.nst-hero-inner{display:grid;grid-template-columns:380px 1fr;gap:50px;align-items:center;position:relative;z-index:2;}
.nst-finder-card{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;}
.nst-finder-title{background:var(--green);color:#fff;margin:0;padding:16px 20px;font-size:1.1rem;}
.nst-finder-body{padding:20px;display:flex;flex-direction:column;gap:6px;}
.nst-finder-body label{font-weight:600;font-size:.85rem;color:var(--navy);margin-top:8px;}
.nst-finder-body select,.nst-finder-body input{padding:11px;border:1px solid var(--border);border-radius:8px;font-size:.95rem;}
.nst-find-btn{margin-top:14px;width:100%;text-align:center;}
.nst-hero-content{color:#fff;}
.nst-eyebrow{display:block;font-size:.8rem;font-weight:700;letter-spacing:.08em;margin-bottom:10px;opacity:.9;}
.nst-hero-content h1{color:#fff;font-size:2.6rem;}
.nst-hero-content p{font-size:1.1rem;max-width:480px;opacity:.95;}
.nst-hero-buttons{display:flex;gap:14px;margin-top:24px;flex-wrap:wrap;}
.nst-hero-blob{position:absolute;right:-100px;top:-100px;width:420px;height:420px;border-radius:50%;background:rgba(255,255,255,.08);z-index:1;}

/* ===================== TRUST BAR ===================== */
.nst-trustbar{padding:30px 0;background:var(--offwhite);}
.nst-trust-heading{text-align:center;color:var(--gray);font-weight:600;margin-bottom:16px;}
.nst-trust-logos{display:flex;justify-content:center;gap:36px;flex-wrap:wrap;font-weight:700;color:var(--navy);opacity:.85;}

/* ===================== CARDS ===================== */
.nst-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:36px;}
.nst-card-grid-4col{grid-template-columns:repeat(4,1fr);}
.nst-card-grid-3col{grid-template-columns:repeat(3,1fr);}
.nst-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:transform .25s ease,box-shadow .25s ease;}
.nst-card:hover{transform:translateY(-6px);box-shadow:0 16px 32px rgba(20,33,61,.12);}
.nst-card-flat{box-shadow:none;}
.nst-card-img{height:190px;background-size:cover;background-position:center;}
.nst-card-img-placeholder{background:linear-gradient(135deg,#e7eef0,#d8e3e6);}
.nst-card-body{padding:20px;}
.nst-card-body h3{font-size:1.15rem;margin-bottom:8px;}
.nst-card-body p{color:var(--gray);font-size:.92rem;margin-bottom:14px;}
.nst-card-meta{font-size:.8rem;color:var(--green);font-weight:600;text-transform:uppercase;letter-spacing:.02em;}

/* ===================== FEATURES BAR ===================== */
.nst-features-bar{background:#EAF1FB;padding:34px 0;}
.nst-features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.nst-feature{display:flex;align-items:center;gap:12px;font-size:.92rem;}
.nst-feature-icon{font-size:1.6rem;}

/* ===================== CATEGORY TABS ===================== */
.nst-category-tabs{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:10px;}
.nst-tab{padding:10px 20px;border-radius:999px;background:var(--offwhite);color:var(--navy);font-weight:600;font-size:.88rem;}
.nst-tab-active,.nst-tab:hover{background:var(--navy);color:#fff;}

/* ===================== WHY CHOOSE US ===================== */
.nst-why-section{
    background:var(--offwhite);
}

.nst-why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr); /* 4 per row */
    gap:24px;
    margin-top:30px;
    text-align:center;
}

.nst-why-item{
    background:#fff;
    border-radius:var(--radius);
    padding:28px 18px;
    box-shadow:var(--shadow);
    transition:all .3s ease;
    border:1px solid #eef2f6;
}

.nst-why-item:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 35px rgba(0,0,0,.12);
}

.nst-why-icon{
    font-size:2.2rem;
    display:flex;
    align-items:center;
    justify-content:center;
    width:70px;
    height:70px;
    margin:0 auto 16px;
    border-radius:50%;
    background:#f2f7ff;
}

.nst-why-item p{
    font-weight:600;
    font-size:.95rem;
    color:var(--navy);
    margin:0;
    line-height:1.5;
}

/* Tablet */
@media (max-width:992px){
    .nst-why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media (max-width:576px){
    .nst-why-grid{
        grid-template-columns:1fr;
    }

    .nst-why-item{
        padding:24px 16px;
    }

    .nst-why-icon{
        width:60px;
        height:60px;
        font-size:1.9rem;
    }
}

/* ===================== TESTIMONIALS ===================== */
.nst-testimonial-carousel{overflow:hidden;margin-top:30px;position:relative;}
.nst-testimonial-track{display:flex;transition:transform .4s ease;}
.nst-testimonial-slide{flex:0 0 100%;max-width:100%;background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:28px;text-align:center;box-shadow:var(--shadow);}
.nst-stars{color:var(--gold);font-size:1.1rem;margin-bottom:10px;}
.nst-quote{font-style:italic;color:var(--navy);font-size:1.05rem;max-width:600px;margin:0 auto 14px;}
.nst-carousel-dots{display:flex;justify-content:center;gap:8px;margin-top:18px;}
.nst-carousel-dots button{width:9px;height:9px;border-radius:50%;border:none;background:var(--border);cursor:pointer;padding:0;}
.nst-carousel-dots button.is-active{background:var(--green);}

/* ===================== BLOG + CORPORATE ===================== */
.nst-corporate-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:50px;align-items:start;}
.nst-blog-card{padding:14px 0;border-bottom:1px solid var(--border);}
.nst-blog-card h4{margin-bottom:4px;font-size:1rem;}
.nst-blog-card p{color:var(--gray);font-size:.88rem;margin:4px 0;}
.nst-readmore{font-weight:600;font-size:.85rem;}
.nst-corporate-content{background:var(--navy);color:#fff;padding:40px;border-radius:var(--radius);}
.nst-corporate-content h2{color:#fff;}
.nst-checklist li{padding:6px 0;padding-left:26px;position:relative;}
.nst-checklist li::before{content:"✓";position:absolute;left:0;color:var(--gold);font-weight:800;}

/* ===================== CTA BANNER ===================== */
.nst-cta-banner{background:var(--navy);padding:50px 0;text-align:center;}
.nst-cta-inner h2{color:#fff;font-size:1.7rem;}
.nst-gold{color:var(--gold);}

/* ===================== FOOTER ===================== */
.nst-site-footer{background:var(--navy-dark);color:#cfd6e4;padding:50px 0 0;}
.nst-footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:30px;padding-bottom:40px;}
.nst-footer-brand p{font-size:.88rem;color:#aab4c6;}
.nst-footer-col summary{font-weight:700;color:#fff;cursor:default;margin-bottom:14px;font-size:1rem;list-style:none;}
.nst-footer-col summary::-webkit-details-marker{display:none;}
.nst-footer-col ul li{padding:5px 0;}
.nst-footer-col a{color:#cfd6e4;font-size:.9rem;}
.nst-footer-col a:hover{color:var(--gold);}
.nst-contact-list li{padding:5px 0;font-size:.9rem;}
.nst-social{display:flex;gap:10px;margin-top:14px;}
.nst-social a{border:1px solid #3a4560;border-radius:50%;width:34px;height:34px;display:flex;align-items:center;justify-content:center;font-size:.75rem;}
.nst-footer-bottom{border-top:1px solid #283250;padding:18px 0;margin-top:10px;}
.nst-footer-bottom-inner{display:flex;justify-content:space-between;font-size:.8rem;flex-wrap:wrap;gap:8px;}
.nst-footer-bottom a{color:#cfd6e4;}

/* ===================== SCROLL TO TOP ===================== */
.nst-scroll-top{position:fixed;bottom:24px;left:24px;width:46px;height:46px;border-radius:50%;background:var(--navy);color:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 20px rgba(0,0,0,.2);opacity:0;transform:translateY(10px);transition:opacity .25s,transform .25s;z-index:999;}
.nst-scroll-top.is-visible{opacity:1;transform:translateY(0);}
.nst-scroll-top:hover{background:var(--green);}

/* ===================== CHATBOT WIDGET ===================== */
/* ===================== CHATBOT WIDGET ===================== */

.nst-chatbot-root{
    position:fixed;
    bottom:24px;
    right:24px;
    z-index:999999;
    font-family:inherit;
}

/* IMPORTANT - allows JS hidden attribute to work */
.nst-chatbot-panel[hidden]{
    display:none !important;
}

/* Floating Button */
.nst-chatbot-toggle{
    position:absolute;
    right:0;
    bottom:0;

    width:60px;
    height:60px;

    border:none;
    border-radius:50%;

    background:var(--green);
    color:#fff;

    cursor:pointer;

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

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

    transition:transform .2s ease;

    z-index:1002;
}

.nst-chatbot-toggle:hover{
    transform:scale(1.08);
}

/* Chat Window */
.nst-chatbot-panel{
    position:absolute;

    right:0;
    bottom:76px;

    width:340px;
    max-height:480px;

    background:#fff;

    border-radius:16px;

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

    display:flex;
    flex-direction:column;

    overflow:hidden;

    z-index:1001;
}

/* Header */
.nst-chatbot-header{
    background:var(--navy);
    color:#fff;

    padding:14px 16px;

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

.nst-chatbot-title{
    font-weight:700;
}

.nst-chatbot-header button{
    background:none;
    border:none;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

/* Messages */
.nst-chatbot-messages{
    flex:1;

    overflow-y:auto;

    padding:14px;

    display:flex;
    flex-direction:column;
    gap:10px;

    min-height:220px;
    max-height:320px;
}

.nst-msg{
    padding:10px 14px;

    border-radius:14px;

    font-size:.88rem;

    line-height:1.4;

    max-width:85%;
}

.nst-msg-bot{
    background:var(--offwhite);
    color:#222;

    align-self:flex-start;

    border-bottom-left-radius:4px;
}

.nst-msg-user{
    background:var(--green);
    color:#fff;

    align-self:flex-end;

    border-bottom-right-radius:4px;
}

.nst-msg-typing{
    opacity:.6;
    font-style:italic;
}

/* Input */
.nst-chatbot-form{
    display:flex;
    border-top:1px solid var(--border);
}

.nst-chatbot-form input{
    flex:1;

    border:none;

    padding:14px;

    font-size:.9rem;
}

.nst-chatbot-form input:focus{
    outline:none;
}

.nst-chatbot-form button{
    width:54px;

    border:none;

    background:var(--green);
    color:#fff;

    cursor:pointer;

    font-size:1.1rem;
}

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

    .nst-chatbot-root{
        right:16px;
        bottom:16px;
    }

    .nst-chatbot-panel{
        width:calc(100vw - 32px);
        max-width:360px;
    }

}
.nst-course-location{
    margin:0 0 22px;
    color:#fff;
    font-size:16px;
    line-height:1.6;
    max-width:650px;
}

.nst-course-location strong{
    display:block;
    margin-bottom:4px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:rgba(255,255,255,.75);
}
/* ===================== FORMS ===================== */
.nst-contact-form{display:flex;flex-direction:column;gap:14px;}
.nst-form-row label{display:block;font-weight:600;font-size:.88rem;margin-bottom:6px;color:var(--navy);}
.nst-form-row input,.nst-form-row select,.nst-form-row textarea{width:100%;padding:12px;border:1px solid var(--border);border-radius:8px;font-size:.95rem;font-family:inherit;}
.nst-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.nst-hp-field{position:absolute;left:-9999px;opacity:0;}
.nst-form-status{font-weight:600;}
.nst-contact-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:50px;}
.nst-contact-info-card{background:var(--offwhite);border-radius:var(--radius);padding:30px;}
.nst-contact-info-card p a{color:var(--navy);font-weight:600;}
.nst-motto{margin-top:20px;font-style:italic;color:var(--green);font-weight:600;}

/* ===================== SINGLE COURSE ===================== */
.nst-page-hero{background:var(--offwhite);padding:50px 0;}
.nst-course-hero{background:linear-gradient(135deg,var(--navy),#1d2f55);padding:60px 0;color:#fff;}
.nst-course-hero h1{color:#fff;}
.nst-course-hero-inner{display:grid;grid-template-columns:1.2fr 1fr;gap:40px;align-items:center;}
.nst-course-meta-row{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:18px 0 10px;
    font-size:.9rem;
}
.nst-pill{background:var(--gold);color:var(--navy);padding:4px 12px;border-radius:999px;font-weight:700;font-size:.78rem;}
.nst-course-hero-img{height:260px;border-radius:var(--radius);background-size:cover;background-position:center;}
.nst-course-detail-grid{display:grid;grid-template-columns:1fr 320px;gap:50px;}
.nst-syllabus-list{display:grid;grid-template-columns:1fr 1fr;gap:6px 24px;}
.nst-syllabus-list li{padding:6px 0;padding-left:22px;position:relative;border-bottom:1px dashed var(--border);font-size:.92rem;}
.nst-syllabus-list li::before{content:"•";position:absolute;left:0;color:var(--green);font-weight:800;}
.nst-course-sidebar{background:var(--offwhite);border-radius:var(--radius);padding:26px;position:sticky;top:110px;}
.nst-course-sidebar dl{margin:0 0 18px;}
.nst-course-sidebar dt{font-size:.78rem;text-transform:uppercase;color:var(--gray);margin-top:12px;}
.nst-course-sidebar dd{margin:2px 0 0;font-weight:700;color:var(--navy);}
.nst-prose p{margin:0 0 1em;}
.nst-policy-content h2{margin-top:1.6em;}

/* ===================== SCROLL REVEAL ANIMATIONS ===================== */
.nst-reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease;}
.nst-reveal-left{transform:translateX(-40px);}
.nst-reveal-right{transform:translateX(40px);}
.nst-reveal.nst-revealed{opacity:1;transform:translateY(0) translateX(0);}

@media (prefers-reduced-motion: reduce){
	.nst-reveal{transition:none;opacity:1;transform:none;}
	.nst-marquee-track,.nst-hero{animation:none;}
}

/* ===================================================================
   RESPONSIVE — MOBILE
   =================================================================== */
@media (max-width: 900px){
	.nst-primary-nav{display:none;}
	.nst-hamburger{display:flex;}
	.nst-btn-book{display:none;}
	.nst-hero-inner{grid-template-columns:1fr;}
	.nst-finder-card{order:2;}
	.nst-hero-content{order:1;}
	.nst-card-grid,.nst-card-grid-4col,.nst-card-grid-3col{grid-template-columns:1fr 1fr;}
	.nst-features-grid{grid-template-columns:1fr 1fr;}
	.nst-why-grid{grid-template-columns:repeat(3,1fr);}
	.nst-corporate-grid,.nst-contact-grid,.nst-course-detail-grid,.nst-course-hero-inner{grid-template-columns:1fr;}
	.nst-footer-grid{grid-template-columns:1fr;}
	.nst-course-sidebar{position:static;}
}

@media (max-width: 640px){
	.nst-navbar-inner{height:64px;}
	.nst-hero{padding:30px 0;}
	.nst-hero-content h1{font-size:1.9rem;}
	.nst-card-grid,.nst-card-grid-4col,.nst-card-grid-3col{grid-template-columns:1fr;}
	.nst-features-grid{grid-template-columns:1fr 1fr;}
	.nst-why-grid{grid-template-columns:1fr 1fr;}
	.nst-form-grid{grid-template-columns:1fr;}
	.nst-section{padding:46px 0;}
	.nst-chatbot-panel{width:88vw;right:0;}
	.nst-trust-logos{gap:18px;font-size:.85rem;}
	.nst-syllabus-list{grid-template-columns:1fr;}
	.nst-corporate-content{padding:26px;}
	.nst-scroll-top{left:16px;bottom:16px;width:42px;height:42px;}
	.nst-chatbot-root{right:16px;bottom:16px;}
}














/*=====================================================
  COURSE CATEGORY CARDS
======================================================*/

.nst-category-section{
    padding:80px 0;
}

.nst-category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:45px;
}



/*=========================
  RESPONSIVE
=========================*/

@media(max-width:1200px){

    .nst-category-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:992px){

    .nst-category-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

}

@media(max-width:768px){

    .nst-category-section{
        padding:60px 0;
    }

    .nst-category-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .nst-category-image{
        height:220px;
    }

    .nst-category-content{
        padding:20px;
    }

    .nst-category-content h3{
        font-size:20px;
    }

    .nst-category-btn{
        padding:14px;
        font-size:15px;
    }

}






/*=========================
  COURSE CATGEGORY HOME PAGE
=========================*/
/*====================================================
 NOVA STELLAR - COURSE EXPLORER
====================================================*/

/*====================================================
PART 1
COURSE EXPLORER
====================================================*/

.nst-course-explorer{
    padding:80px 0;
    background:#fff;
}

.nst-course-banner{
    position:relative;
    display:grid;
    grid-template-columns:1.08fr .92fr;
    align-items:center;
    gap:70px;
    padding:65px;
    border-radius:30px;
    overflow:hidden;
    background:linear-gradient(135deg,#FCFEFF 0%,#EEF7FF 100%);
    border:1px solid #E6EEF8;
    box-shadow:0 20px 60px rgba(15,35,70,.08);
}

/* Decorative Shapes */

.nst-course-banner::before{
    content:"";
    position:absolute;
    width:430px;
    height:430px;
    border-radius:50%;
    background:rgba(33,100,214,.05);
    top:-180px;
    right:-180px;
}

.nst-course-banner::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(35,168,106,.05);
    left:-100px;
    bottom:-100px;
}

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

.nst-banner-content{
    position:relative;
    z-index:5;
}

.nst-banner-tag{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:10px 22px;
    background:#fff;
    border-radius:60px;
    color:#2164D6;
    font-size:13px;
    font-weight:700;
    letter-spacing:.8px;
    text-transform:uppercase;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    margin-bottom:28px;
}

.nst-banner-tag i{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#2164D6;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.nst-banner-content h2{
    margin:0 0 22px;
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    color:#102A43;
}

.nst-banner-content h2 span{
    color:#2164D6;
}

.nst-banner-content p{
    margin:0 0 35px;
    max-width:620px;
    font-size:18px;
    line-height:1.8;
    color:#667085;
}

/*====================================================
BUTTON
====================================================*/

.nst-view-course-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:18px 34px;
    background:#23A86A;
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-size:16px;
    font-weight:600;
    transition:.35s;
    box-shadow:0 16px 36px rgba(35,168,106,.25);
}

.nst-view-course-btn:hover{
    background:#198754;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 22px 44px rgba(35,168,106,.30);
}

.nst-view-course-btn i:last-child{
    transition:.35s;
}

.nst-view-course-btn:hover i:last-child{
    transform:translateX(6px);
}




/*====================================================
PART 2
RIGHT IMAGE
====================================================*/

.nst-banner-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:540px;
    z-index:2;
}

/* Main Circle */

.nst-bg-circle{
    position:absolute;
    width:430px;
    height:430px;
    border-radius:50%;
    background:#EDF5FF;
    z-index:1;
}

/* Dashed Ring */

.nst-bg-circle::before{
    content:"";
    position:absolute;
    inset:-18px;
    border:2px dashed #BCD7FF;
    border-radius:50%;
}

/* Dot Pattern */

.nst-bg-circle::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    top:35px;
    right:-35px;
    background-image:radial-gradient(#9FC7FF 2px,transparent 2px);
    background-size:14px 14px;
    opacity:.7;
}

/* Laptop */

.nst-banner-image img{
    position:relative;
    width:100%;
    max-width:560px;
    display:block;
    z-index:5;
    filter:drop-shadow(0 30px 45px rgba(0,0,0,.18));
}

/*====================================================
FLOATING ICONS
====================================================*/

.nst-floating{
    position:absolute;
    width:96px;
    height:96px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    box-shadow:0 20px 40px rgba(0,0,0,.10);
    z-index:10;
}

.nst-floating i{
    font-size:42px;
}

/* Certificate */

/* Gallery */

.nst-icon-one{
    left:10px;
    top:80px;

    background:#FFFFFF;
    color:#2164D6;

    animation:floatOne 5s ease-in-out infinite;
}

/* Contact */

.nst-icon-two{
    right:18px;
    top:20px;

    background:#2164D6;
    color:#FFFFFF;

    animation:floatTwo 6s ease-in-out infinite;
}

/* Values */

.nst-icon-three{
    right:0;
    bottom:55px;

    background:#C9A227;
    color:#FFFFFF;

    animation:floatThree 5.5s ease-in-out infinite;
}

/*====================================================
PLUS SYMBOLS
====================================================*/

.nst-banner-image::before{
    content:"+";
    position:absolute;
    left:85px;
    top:180px;
    color:#8DBBFF;
    font-size:30px;
    font-weight:700;
    z-index:3;
}

.nst-banner-image::after{
    content:"+";
    position:absolute;
    right:70px;
    bottom:150px;
    color:#8DBBFF;
    font-size:26px;
    font-weight:700;
    z-index:3;
}

/*====================================================
FLOAT ANIMATION
====================================================*/

@keyframes floatOne{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-16px);
    }

}

@keyframes floatTwo{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(12px);
    }

}

@keyframes floatThree{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-18px);
    }

}

/*====================================================
PART 3
COURSE CATEGORY CARDS
====================================================*/

.nst-course-category-list{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:50px;
}

/*====================================================
CARD
====================================================*/

.nst-category-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    background:#fff;
    border:1px solid #E7EDF5;
    border-radius:22px;
    text-decoration:none;
    transition:.35s ease;
    overflow:hidden;
    box-shadow:0 12px 28px rgba(15,35,70,.06);
}

.nst-category-card:hover{
    transform:translateY(-8px);
    border-color:#D7E7FB;
    box-shadow:0 24px 50px rgba(15,35,70,.12);
}

.nst-category-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:#2164D6;
    transform:scaleY(0);
    transition:.35s;
}

.nst-category-card:hover::before{
    transform:scaleY(1);
}

/*====================================================
ICON BOX
====================================================*/

.nst-category-icon{
    width:74px;
    height:74px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.nst-category-icon i{
    font-size:34px;
}

/*====================================================
ICON COLORS
====================================================*/

.nst-category-icon.green{
    background:#EAF8EF;
    color:#1B8C53;
}

.nst-category-icon.red{
    background:#FFEAE5;
    color:#F15B42;
}

.nst-category-icon.blue{
    background:#EAF2FF;
    color:#2164D6;
}

.nst-category-icon.purple{
    background:#F2ECFF;
    color:#7758FF;
}

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

.nst-category-content{
    flex:1;
}

.nst-category-content h4{
    margin:0;
    color:#102A43;
    font-size:15px;
    line-height:1.35;
    font-weight:700;
}

.nst-category-content small{
    display:block;
    margin-top:5px;
    color:#6B7280;
    font-size:13px;
    line-height:1.5;
}

/*====================================================
ARROW
====================================================*/

.nst-category-arrow{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#F4F7FB;
    color:#102A43;
    transition:.35s;
    flex-shrink:0;
}

.nst-category-arrow i{
    font-size:15px;
}

.nst-category-card:hover .nst-category-arrow{
    background:#2164D6;
    color:#fff;
    transform:translateX(5px);
}

/*====================================================
HOVER EFFECTS
====================================================*/

.nst-category-card:hover .nst-category-icon{
    transform:scale(1.08);
    transition:.35s;
}

.nst-category-card:hover h4{
    color:#2164D6;
}



/*====================================================
PART 4
RESPONSIVE
====================================================*/

@media (max-width:1400px){

    .nst-course-banner{
        gap:50px;
        padding:55px;
    }

    .nst-banner-content h2{
        font-size:46px;
    }

    .nst-banner-image img{
        max-width:500px;
    }

}

/*====================================================
TABLET
====================================================*/

@media (max-width:1200px){

    .nst-course-banner{

        grid-template-columns:1fr;

        gap:60px;

        text-align:center;

    }

    .nst-banner-content{

        margin:auto;

    }

    .nst-banner-content p{

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

    }

    .nst-banner-image{

        min-height:480px;

    }

    .nst-course-category-list{

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

    }

}

/*====================================================
MOBILE
====================================================*/

@media (max-width:768px){

    .nst-course-explorer{

        padding:60px 0;

    }

    .nst-course-banner{

        padding:35px 25px;

        border-radius:24px;

        gap:40px;

    }

    .nst-banner-tag{

        font-size:12px;

        padding:8px 18px;

    }

    .nst-banner-content h2{

        font-size:34px;

        line-height:1.25;

    }

    .nst-banner-content p{

        font-size:16px;

        line-height:1.7;

    }

    .nst-view-course-btn{

        width:100%;

        justify-content:center;

        padding:16px 25px;

    }

    .nst-banner-image{

        min-height:360px;

    }

    .nst-bg-circle{

        width:300px;

        height:300px;

    }

    .nst-banner-image img{

        max-width:330px;

    }

    .nst-floating{

        width:70px;

        height:70px;

    }

    .nst-floating i{

        font-size:28px;

    }

    .nst-icon-one{

        top:45px;

        left:0;

    }

    .nst-icon-two{

        top:0;

        right:5px;

    }

    .nst-icon-three{

        bottom:20px;

        right:0;

    }

    .nst-course-category-list{

        grid-template-columns:1fr;

        gap:18px;

        margin-top:35px;

    }

    .nst-category-card{

        padding:18px;

    }

    .nst-category-icon{

        width:60px;

        height:60px;

    }

    .nst-category-icon i{

        font-size:28px;

    }

    .nst-category-content h4{

        font-size:18px;

    }

}

/*====================================================
SMALL MOBILE
====================================================*/

@media (max-width:480px){

    .nst-banner-content h2{

        font-size:30px;

    }

    .nst-banner-image{

        min-height:300px;

    }

    .nst-bg-circle{

        width:250px;

        height:250px;

    }

    .nst-banner-image img{

        max-width:270px;

    }

    .nst-floating{

        width:60px;

        height:60px;

    }

    .nst-floating i{

        font-size:24px;

    }

    .nst-banner-image::before,
    .nst-banner-image::after{

        display:none;

    }

}























/*======================================
 HERO SECTION
======================================*/

/*====================================================
MENTAL HEALTH HERO
====================================================*/

.mh-hero{
    position:relative;
    overflow:visible;
    min-height:480px;
    padding-top:20px;
}

/*====================================================
BACKGROUND
====================================================*/

.mh-bg{
    position:absolute;
    inset:0;
    height:100%;
    background:#EAF3FF;
    z-index:0; 
}

/*====================================================
CONTAINER
====================================================*/

.mh-wrap{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1440px;
    margin:0 auto;
    padding:0 20px;
}

/*====================================================
GRID
====================================================*/

.mh-grid{

    display:grid;

    grid-template-columns:
        minmax(420px,520px)
        minmax(520px,1fr);

    gap:40px;

    align-items:flex-start;

    min-height:480px;

}

/*====================================================
LEFT COLUMN
====================================================*/

.mh-left{

    display:flex;

    flex-direction:column;

    justify-content:center;

    min-height:480px;

}

/*====================================================
TAGLINE
====================================================*/

.mh-tagline{

    display:inline-flex;

    align-items:center;

    gap:6px;

    margin-bottom:12px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    color:#2F7CF4;

}

.mh-tagline strong{

    color:#22B455;

}

/*====================================================
TITLE
====================================================*/

.mh-title{

    margin:0;

    font-size:40px;

    line-height:1.08;

    font-weight:800;

    letter-spacing:-1.5px;

    color:#123B71;

}

.mh-title span{

    display:block;

    color:#22B455;

}

.mh-title span:last-child{

    color:#2F7CF4;

}

/*====================================================
DESCRIPTION
====================================================*/

.mh-description{

    margin:18px 0 28px;

    max-width:520px;

    font-size:15px;

    line-height:1.8;

    color:#5C6D84;

}

/*====================================================
BUTTONS
====================================================*/

.mh-actions{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

}

.mh-btn-primary,
.mh-btn-secondary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    height:54px;

    padding:0 30px;

    border-radius:14px;

    font-size:15px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.mh-btn-primary{

    color:#fff;

    background:linear-gradient(
        135deg,
        #22B455,
        #2F7CF4
    );

}

.mh-btn-primary:hover{

    transform:translateY(-2px);

}

.mh-btn-secondary{

    background:#fff;

    border:2px solid #2F7CF4;

    color:#2F7CF4;

}

.mh-btn-secondary:hover{

    background:#2F7CF4;

    color:#fff;

}





/*====================================================
RIGHT COLUMN
====================================================*/

.mh-right{

    position:relative;

    display:flex;

    justify-content:flex-end;

    align-items:flex-start;

    min-height:480px;

}

.mh-right img{

    display:block;

    width:100%;

    max-width:720px;

    height:auto;

    margin:0;

    filter:drop-shadow(0 30px 60px rgba(18,60,120,.12));

    transition:.35s;

}

.mh-right:hover img{

    transform:scale(1.02);

}

/*====================================================
SUPPORT CARD
====================================================*/

.mh-support-card{

    position:absolute;

    left:25px;

    top:60px;      /* Adjust this value */
    bottom:auto;

    width:340px;

    background:#fff;

    border-radius:22px;

    padding:22px;

    display:flex;

    align-items:center;

    gap:18px;

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

    z-index:20;

}

.mh-support-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:6px;

    height:100%;

    border-radius:22px 0 0 22px;

    background:linear-gradient(
        180deg,
        #22B455,
        #2F7CF4
    );

}

.mh-support-icon{

    width:68px;

    height:68px;

    border-radius:50%;

    background:#EEF8F2;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    font-size:28px;

}

.mh-support-content{

    flex:1;

}

.mh-support-content h4{

    margin:0;

    font-size:18px;

    font-weight:700;

    color:#163C71;

}

.mh-support-content p{

    margin:8px 0 0;

    font-size:15px;

    line-height:1.6;

    color:#6A7789;

}

/*====================================================
SEARCH BOX
====================================================*/

.mh-search{

    position:relative;

    margin-top:-38px;

    background:#fff;

    border-radius:22px;

    padding:22px;

    display:grid;

    grid-template-columns:

        1.5fr
        1.2fr
        1fr
        1fr
        220px;

    gap:18px;

    z-index:50;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);

}

/*====================================================
FIELDS
====================================================*/

.mh-field{

    display:flex;

    flex-direction:column;

}

.mh-field label{

    margin-bottom:8px;

    font-size:13px;

    font-weight:700;

    color:#24406D;

}

.mh-field input,
.mh-field select{

    width:100%;

    height:54px;

    padding:0 18px;

    border:1px solid #DCE4EF;

    border-radius:12px;

    background:#fff;

    outline:none;

    font-size:15px;

    color:#23395D;

    transition:.3s;

}

.mh-field select{

    appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 6L8 10.5 12.5 6' stroke='%236B7280' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 16px center;

}

.mh-field input:focus,
.mh-field select:focus{

    border-color:#2F7CF4;

    box-shadow:0 0 0 4px rgba(47,124,244,.10);

}

/*====================================================
SEARCH BUTTON
====================================================*/

.mh-submit{

    display:flex;

    align-items:flex-end;

}

#mh-search-btn{

    width:100%;

    height:54px;

    border:none;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        #22B455,
        #2F7CF4
    );

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

#mh-search-btn:hover{

    transform:translateY(-2px);

}


/*====================================================
GENERAL TRANSITIONS
====================================================*/

.mh-btn-primary,
.mh-btn-secondary,
#mh-search-btn,
.mh-field input,
.mh-field select,
.mh-support-card,
.mh-right img{

    transition:all .30s ease;

}

/*====================================================
BUTTON HOVERS
====================================================*/

.mh-btn-primary:hover{

    box-shadow:0 12px 30px rgba(34,180,85,.25);

}

.mh-btn-secondary:hover{

    box-shadow:0 12px 30px rgba(47,124,244,.20);

}

#mh-search-btn:hover{

    box-shadow:0 16px 35px rgba(47,124,244,.25);

}

/*====================================================
INPUTS
====================================================*/

.mh-field input:hover,
.mh-field select:hover{

    border-color:#2F7CF4;

}

.mh-field input::placeholder{

    color:#9AA7B8;

}

/*====================================================
SEARCH BOX
====================================================*/

.mh-search{

    border:1px solid rgba(224,232,242,.9);

}

.mh-search::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-25px;

    transform:translateX(-50%);

    width:88%;

    height:35px;

    background:rgba(47,124,244,.08);

    filter:blur(28px);

    z-index:-1;

}

/*====================================================
SUPPORT CARD
====================================================*/


/*====================================================
IMAGE
====================================================*/

.mh-right img{

    border-radius:0;

}

/*====================================================
FADE ANIMATION
====================================================*/

@keyframes mhFadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

.mh-left>*{

    animation:mhFadeUp .7s ease both;

}

.mh-left>*:nth-child(2){

    animation-delay:.10s;

}

.mh-left>*:nth-child(3){

    animation-delay:.20s;

}

.mh-left>*:nth-child(4){

    animation-delay:.30s;

}

/*====================================================
IMAGE ENTRY
====================================================*/

@keyframes mhFadeRight{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

.mh-right{

    animation:mhFadeRight .8s ease;

}

/*====================================================
REMOVE UNWANTED EFFECTS
====================================================*/

/* No floating image */
/* No floating support card */
/* No background glow */
/* No radial gradients */
/* No decorative circles */
/* No glassmorphism */
/* No duplicate hover rules */
/* No duplicate animation rules */




/*====================================================
1400px
====================================================*/

@media (max-width:1400px){

    .mh-wrap{

        max-width:1200px;

    }

    .mh-grid{

        grid-template-columns:
            minmax(400px,470px)
            minmax(450px,1fr);

        gap:35px;

    }

    .mh-title{

        font-size:35px;

    }

    .mh-right img{

        max-width:650px;

    }

    .mh-search{

        grid-template-columns:
            1.3fr
            1fr
            1fr
            1fr
            190px;

    }

}


/*====================================================
1200px
====================================================*/

@media (max-width:1200px){

    .mh-hero{

        min-height:auto;

        padding-bottom:70px;

    }

    .mh-grid{

        grid-template-columns:1fr;

        gap:40px;

        min-height:auto;

        text-align:center;

    }

    .mh-left{

        min-height:auto;

        max-width:800px;

        margin:auto;

        align-items:center;

    }

    .mh-description{

        max-width:700px;

    }

    .mh-actions{

        justify-content:center;

    }

    .mh-right{

        justify-content:center;

        min-height:auto;

    }

    .mh-right img{

        max-width:620px;

    }

    .mh-support-card{

        left:50%;

        bottom:20px;

        transform:translateX(-50%);

    }

    .mh-search{

        margin-top:40px;

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

    }

    .mh-submit{

        grid-column:span 2;

    }

}


/*====================================================
992px
====================================================*/

@media (max-width:992px){

    .mh-wrap{

        padding:0 18px;

    }

    .mh-title{

        font-size:40px;

        line-height:1.15;

    }

    .mh-description{

        font-size:16px;

    }

    .mh-right img{

        max-width:520px;

    }

      .mh-support-card{
        left:50%;
        bottom:20px;
        transform:translateX(-50%);
    }

    .mh-search{

        grid-template-columns:1fr;

        margin-top:30px;

        padding:22px;

        gap:16px;

    }

    .mh-submit{

        grid-column:auto;

    }

}


/*====================================================
768px
====================================================*/

@media (max-width:768px){

    .mh-hero{

        padding-bottom:55px;

    }

    .mh-grid{

        gap:25px;

    }

    .mh-title{

        font-size:34px;

    }

    .mh-tagline{

        font-size:12px;

    }

    .mh-description{

        font-size:15px;

        line-height:1.7;

    }

    .mh-actions{

        width:100%;

        flex-direction:column;

        gap:14px;

    }

    .mh-btn-primary,
    .mh-btn-secondary{

        width:100%;

        max-width:320px;

    }

    .mh-right img{

        max-width:100%;

    }

    .mh-search{

        padding:20px;

    }

}


/*====================================================
576px
====================================================*/

@media (max-width:576px){

    .mh-wrap{

        padding:0 15px;

    }

    .mh-title{

        font-size:30px;

        letter-spacing:-0.5px;

    }

    .mh-description{

        font-size:14px;

    }

    .mh-search{

        padding:16px;

        border-radius:18px;

    }

    .mh-field label{

        font-size:12px;

    }

    .mh-field input,
    .mh-field select{

        height:50px;

        padding:0 14px;

        font-size:14px;

    }

    #mh-search-btn{

        height:50px;

        font-size:15px;

    }

    .mh-support-card{

        padding:18px;

        gap:14px;

    }

    .mh-support-icon{

        width:56px;

        height:56px;

        font-size:24px;

    }

    .mh-support-content h4{

        font-size:17px;

    }

    .mh-support-content p{

        font-size:13px;

        line-height:1.5;

    }

}

/*====================================================
TRUST ROW
====================================================*/

.mh-trust-row{

    display:flex;

    align-items:center;

    gap:40px;

    flex-wrap:wrap;

    margin-top:35px;

}

.mh-trust-item{

    display:flex;

    flex-direction:column;

}

.mh-trust-item strong{

    font-size:32px;

    font-weight:800;

    line-height:1;

    color:#123B71;

}

.mh-trust-item span{

    margin-top:6px;

    font-size:14px;

    color:#6B7A90;

}

/*====================================================
TOOLBAR (OPTIONAL)
====================================================*/

.mh-toolbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:0;

    background:#fff;

    border-radius:20px;

    padding:6px;

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

}

.mh-toolbar-item{

    flex:1;

    display:flex;

    align-items:center;

    gap:16px;

    padding:18px 22px;

    position:relative;

}

.mh-toolbar-item:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;

    top:50%;

    transform:translateY(-50%);

    width:1px;

    height:50px;

    background:#E5ECF4;

}

.mh-toolbar-icon{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#EEF5FF;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.mh-toolbar-icon i{

    color:#2F7CF4;

    font-size:20px;

}

.mh-toolbar-content{

    flex:1; padding-top:15px;

}

.mh-toolbar-content label{

    display:block;

    margin-bottom:5px;

    font-size:12px;

    font-weight:700;

    color:#74849B;

}

.mh-toolbar-content input,
.mh-toolbar-content select{

    width:100%;

    border:none;

    outline:none;

    background:none;

    font-size:12px;

    font-weight:600;

    color:#163C71;

}

.mh-toolbar-button{

    width:200px;

    height:58px;

    border:none;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #22B455,
        #2F7CF4
    );

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

}

/*====================================================
OPTIONAL DECORATIVE CIRCLES
(Delete if not used)
====================================================*/

.mh-circle-one,
.mh-circle-two{

    display:none;

}

/*====================================================
OPTIONAL SCROLL INDICATOR
(Delete if not used)
====================================================*/

.mh-scroll{

    display:none;

}


/*====================================================
MOBILE FORM FIX
(Add at the very end of CSS)
====================================================*/

@media (max-width:768px){

    .mh-search{

        display:flex !important;

        flex-direction:column !important;

        gap:16px !important;

        width:100% !important;

        margin-top:25px !important;

        padding:18px !important;

        border-radius:18px;

    }

    .mh-field{

        width:100% !important;

        min-width:0;

    }

    .mh-field input,
    .mh-field select{

        width:100% !important;

        box-sizing:border-box;

        height:52px;

    }

    .mh-submit{

        width:100% !important;

    }

    #mh-search-btn{

        width:100% !important;

        height:52px;

    }

}/*====================================================
TABLET
====================================================*/

@media (max-width:992px){

    .mh-toolbar{

        display:grid;

        grid-template-columns:1fr 1fr;

        gap:15px;

        padding:15px;

    }

    .mh-toolbar-item{

        width:100%;

        padding:25px;

        border:1px solid #E5ECF4;

        border-radius:14px;

    }

    .mh-toolbar-item::after{

        display:none;

    }

    .mh-toolbar-button{

        width:100%;

        grid-column:1 / -1;

        height:56px;

    }

}


/*====================================================
MOBILE FIX
====================================================*/
/*====================================================
MOBILE FIX
====================================================*/

@media (max-width:768px){

    .mh-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .mh-left{
        text-align:center;
        align-items:center;
    }

    /* IMAGE */

    .mh-right{
        display:block;
        min-height:auto;
        text-align:center;
    }

    .mh-right img{
        display:block;
        width:100%;
        max-width:320px;
        margin:0 auto;
    }

    /* FLOATING CARD */

   /* .mh-support-card{

        position:relative;

        left:auto;

        right:auto;

        bottom:auto;

        transform:none;

        width:100%;

        max-width:320px;

        margin:18px auto 0;

        padding:16px;

        gap:14px;

    }*/

    .mh-support-icon{

        width:50px;
        height:50px;
        font-size:22px;

    }

    .mh-support-content h4{

        font-size:18px;

    }

    .mh-support-content p{

        font-size:13px;

        line-height:1.5;

    }

    /* TOOLBAR */

    .mh-toolbar{

        display:flex;

        flex-direction:column;

        padding:15px;

        gap:12px;

    }

    .mh-toolbar-item{

        width:100%;

        padding:12px;

        border:1px solid #E5ECF4;

        border-radius:12px;

    }

    .mh-toolbar-item::after{

        display:none;

    }

    .mh-toolbar-icon{

        width:42px;

        height:42px;

    }

    .mh-toolbar-content label{

        font-size:12px;

        margin-bottom:4px;

    }

    .mh-toolbar-content input,
    .mh-toolbar-content select{

        height:42px;

        font-size:14px;

    }

    .mh-toolbar-button{

        width:100%;

        height:46px;

        font-size:15px;

        border-radius:12px;

    }

}




@media (max-width:768px){

    .mh-actions{

        display:flex;

        flex-direction:column;

        align-items:center;

        justify-content:center;

        gap:12px;

        width:100%;

    }

    .mh-btn-primary,
    .mh-btn-secondary{

        display:flex;

        justify-content:center;

        align-items:center;

        width:100%;

        max-width:300px;

        margin:0 auto;

        text-align:center;

    }

}




.mh-support-content{
    display:flex;
    align-items:center;
    gap:18px;
}

.mh-support-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background:#EAF7F0;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.mh-support-icon i{
    font-size:34px;
    color:#16A34A;
}

.mh-support-text h4{
    margin:0;
    font-size:20px;
    line-height:1.15;
    font-weight:700;
    color:#173F7A;
}






.nst-syllabus-list{
    margin:20px 0 45px;
    padding-left:22px;
}

.nst-syllabus-list + h2{
    margin-top:55px;
}



.nst-course-eyfs-wrap{
    margin:50px 0 20px;
}

.nst-course-divider{
    width:100%;
    height:1px;
    background:#E5E7EB;
    margin-bottom:24px;
}

.nst-course-eyfs-title{
    margin:0 0 10px;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#6B7280;
}

.nst-course-eyfs{
    margin:0;
    font-size:20px;
    line-height:1.7;
    font-weight:700;
    font-style:italic;
    color:#1565C0;
}



























/* ==========================================
   FLOATING FEATURE ICONS
========================================== */

/*========================================
 HERO FLOATING BADGES
========================================*/

/*=========================================
ICON & TEXT COLOURS
=========================================*/


