/*------------------------------------------------------------------
    CSS VARIABLES
-------------------------------------------------------------------*/
:root {
    --navy:        #0d1b3e;
    --navy-dark:   #080f24;
    --orange:      #e85d04;
    --orange-dark: #c44d00;
    --teal:        #0077b6;
    --green:       #2a9d8f;
    --white:       #ffffff;
    --light-bg:    #f5f7fa;
    --text:        #222222;
    --border:      #dde3ed;
    --accent:      #e85d04;
}

/*------------------------------------------------------------------
    BASE
-------------------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
    color: var(--text);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none !important;
    outline: none !important;
    transition: all .25s ease;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.25 !important;
    color: var(--text);
}

img { max-width: 100%; }

ul { list-style: none; margin: 0; padding: 0; }

a:focus-visible,
button:focus-visible {
    outline: 3px solid #1a56db;
    outline-offset: 3px;
}

.section { display: block; position: relative; padding: 70px 0; overflow: hidden; }
.section.wb  { background: #fff; }
.section.lb  { background: var(--light-bg); }
.section.db  { background: var(--navy); color: #ccc; }
.section.db h1,.section.db h2,.section.db h3,.section.db h4 { color: #fff; }
.lead { font-size: 16px; line-height: 28px; color: #555; margin: 0; padding: 0; }
/* Inner page overview section */
#overviews { background: #fff; }
#overviews h2, #overviews h3, #overviews h4 { color: var(--navy); }
#overviews p { color: #555; line-height: 1.8; }

/*------------------------------------------------------------------
    LOADER
-------------------------------------------------------------------*/
#preloader {
    width:100%; height:100%;
    top:0; right:0; bottom:0; left:0;
    background: var(--orange);
    z-index: 11000;
    position: fixed;
    display: block;
}
.loader-container {
    position: absolute; top:0; left:0; width:100%; height:100%; z-index:8888;
}
.loader-container::before {
    content:''; position:absolute; top:0; left:0; width:100%; height:50%;
    background: var(--orange); z-index:-1; transition: top 1.2s linear 3.1s;
}
.loader-container::after {
    content:''; position:absolute; bottom:0; left:0; width:100%; height:50%;
    background: var(--orange); z-index:-1; transition: bottom 1.2s linear 3.1s;
}
.loader-container.done::before { top: -50%; }
.loader-container.done::after  { bottom: -50%; }
.progress-br {
    position:absolute; top:50%; left:50%;
    transform: translateX(-50%) translateY(-50%);
}
.progress-br .progress__item {
    text-align:center; width:100px; height:100px; line-height:100px;
    border:2px solid #fff; border-radius:50%;
}
.shadow { box-shadow: none !important; }

/*------------------------------------------------------------------
    TOP UTILITY BAR
-------------------------------------------------------------------*/
.top-bar {
    background: var(--navy-dark);
    padding: 7px 0;
    border-bottom: 2px solid var(--orange);
    position: relative;
    z-index: 1000;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}
/* Social icons */
.top-bar-social { display: flex; align-items: center; gap: 4px; }
.top-bar-social a {
    width: 30px; height: 30px;
    background: rgba(255,255,255,.1);
    color: #ccc;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    transition: background .2s;
}
.top-bar-social a:hover { background: var(--orange); color: #fff; }

/* Contact info */
.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.top-bar-contact span {
    color: #e8edf5;
    font-size: 12.5px;
}
.top-bar-contact span i { color: var(--orange); margin-right: 5px; }

/* Action buttons */
.top-bar-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tb-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    border-radius: 4px;
    font-size: 12.5px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all .2s;
    cursor: pointer;
}
.tb-btn i { font-size: 13px; }
.tb-btn-orange { background: var(--orange); color: #fff; }
.tb-btn-orange:hover { background: var(--orange-dark); color: #fff; }
.tb-btn-dark { background: rgba(255,255,255,.16); color: #f2f5fa; border: 1px solid rgba(255,255,255,.28); }
.tb-btn-dark:hover { background: rgba(255,255,255,.22); color: #fff; }
.tb-lang {
    background: transparent;
    border: 1px solid rgba(255,255,255,.3);
    color: #f2f5fa;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
}

/*------------------------------------------------------------------
    MAIN HEADER
-------------------------------------------------------------------*/
.main-header {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header-logo img { height: 60px; width: auto; }
.logo-text strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1 !important;
    letter-spacing: -0.5px;
}
.logo-text span {
    display: block;
    font-size: 11px;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Main Navigation */
.main-nav { flex: 1; }
.nav-list {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    gap: 0;
}
.nav-list .nav-item {
    position: relative;
}
.nav-list .nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 18px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .4px;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color .2s, border-color .2s;
}
.nav-list .nav-item > a i { font-size: 10px; }
.nav-list .nav-item:hover > a,
.nav-list .nav-item.active > a {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

/* Mega Dropdown */
.mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-top: 3px solid var(--orange);
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
    z-index: 9999;
    min-width: 260px;
    padding: 10px 0;
}
.mega-dropdown.two-col {
    display: none;
    flex-direction: row;
    min-width: 560px;
    padding: 20px;
    gap: 0;
}
.nav-item:hover .mega-dropdown,
.nav-item:hover .mega-dropdown.two-col { display: flex; }
.mega-col {
    flex: 1;
    padding: 0 14px;
    border-right: 1px solid #f0f0f0;
}
.mega-col:last-child { border-right: none; }
.mega-heading {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--orange);
    display: flex;
    align-items: center;
    gap: 7px;
}
.mega-heading i { font-size: 13px; }
.mega-col a {
    display: block;
    padding: 7px 0;
    font-size: 13px;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
    transition: color .2s, padding-left .2s;
}
.mega-col a:last-child { border-bottom: none; }
.mega-col a:hover { color: var(--orange); padding-left: 6px; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
}

/*------------------------------------------------------------------
    NEWS TICKER
-------------------------------------------------------------------*/
.news-ticker-bar {
    display: flex;
    align-items: stretch;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}
.ticker-tag {
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 10px 18px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
    /* Angled right edge like JSS */
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
    padding-right: 26px;
}
.ticker-wrap {
    flex: 1;
    overflow: hidden;
    padding: 10px 16px;
    font-size: 13px;
    color: #ccc;
    display: flex;
    align-items: center;
}
.ticker-wrap strong { color: var(--orange); }
.ticker-wrap .fa-calendar-o { color: var(--orange); margin-right: 6px; }

/*------------------------------------------------------------------
    HERO SECTION
-------------------------------------------------------------------*/
.hero-section {
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(19,31,66,.92) 0%,
        rgba(26,44,91,.82) 50%,
        rgba(19,31,66,.6) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0 120px;
}
.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.15 !important;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.hero-sub {
    font-size: 18px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 30px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-orange {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .25s;
}
.btn-hero-orange:hover { background: var(--orange-dark); color: #fff; }
.btn-hero-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .25s;
}
.btn-hero-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* Floating side buttons (right side) */
.hero-side-btns {
    position: absolute;
    right: 0;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 10;
}
.side-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #fff;
    min-width: 190px;
    transition: filter .2s;
}
.side-btn:hover { filter: brightness(1.1); color: #fff; }
.side-btn i { font-size: 16px; }
.side-btn-orange  { background: var(--orange); }
.side-btn-teal    { background: var(--teal); }
.side-btn-green   { background: var(--green); }
.side-btn-navy    { background: var(--navy); }

/*------------------------------------------------------------------
    SECTION LABELS
-------------------------------------------------------------------*/
.section-label {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 4px 16px;
    border-radius: 2px;
    margin-bottom: 12px;
}
.section-title { margin-bottom: 50px; }
.section-title h2,
.section-title h3 {
    font-size: 34px !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    margin: 0 0 12px !important;
}
.section-title p {
    font-size: 15px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/*------------------------------------------------------------------
    ABOUT SECTION
-------------------------------------------------------------------*/
.about-img-wrap {
    position: relative;
    margin-bottom: 30px;
}
.about-img-wrap img {
    border-radius: 6px;
    width: 100%;
    box-shadow: 6px 6px 0 var(--orange);
}
.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--navy);
    color: #fff;
    padding: 14px 20px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.about-badge strong { display: block; font-size: 28px; font-weight: 800; color: var(--orange); line-height: 1; }
.about-badge span   { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }
.about-content { padding: 0 0 0 30px; }
.about-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 16px;
}
.about-content h2 span { color: var(--orange); }
.about-content p { color: #4d5968; margin-bottom: 14px; }
.about-stats-row {
    display: flex;
    gap: 24px;
    margin: 20px 0 24px;
    flex-wrap: wrap;
}
.astat {
    text-align: center;
    padding: 12px 20px;
    background: var(--light-bg);
    border-radius: 6px;
    border-bottom: 3px solid var(--orange);
}
.astat strong { display: block; font-size: 24px; font-weight: 800; color: var(--navy); }
.astat span   { font-size: 12px; color: #555; text-transform: uppercase; letter-spacing: .5px; }
.btn-orange-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    padding: 11px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background .2s;
}
.btn-orange-solid:hover { background: var(--orange-dark); color: #fff; }

/*------------------------------------------------------------------
    STATS BAR
-------------------------------------------------------------------*/
.stats-bar {
    background: var(--navy);
    padding: 50px 0;
}
.stat-item { padding: 10px 0; }
.stat-item > i {
    font-size: 36px;
    color: rgba(255,255,255,.3);
    display: block;
    margin-bottom: 10px;
}
.stat_count {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}
.stats-bar h3 {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 8px 0 0;
    padding: 0;
}

/*------------------------------------------------------------------
    DEPARTMENTS
-------------------------------------------------------------------*/
.dept-card {
    background: #fff;
    border-radius: 6px;
    padding: 28px 22px;
    margin-bottom: 24px;
    border-bottom: 4px solid transparent;
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
    transition: all .3s;
}
.dept-card:hover {
    border-bottom-color: var(--orange);
    box-shadow: 0 10px 30px rgba(242,101,34,.15);
    transform: translateY(-4px);
}
.dept-icon {
    width: 56px; height: 56px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    transition: background .3s;
}
.dept-icon i { font-size: 22px; color: #fff; }
.dept-card:hover .dept-icon { background: var(--orange); }
.dept-card h3,
.dept-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 10px;
    line-height: 1.4 !important;
}
.dept-card p { font-size: 13px; color: #555; margin: 0 0 16px; }
.dept-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .3px;
}
.dept-link i { margin-left: 4px; font-size: 11px; }
.dept-link:hover { color: var(--navy); }

/*------------------------------------------------------------------
    PARALLAX / TESTIMONIALS
-------------------------------------------------------------------*/
.parallax {
    background-attachment: fixed;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    width: 100%;
}
.parallax.parallax-off {
    background-attachment: fixed !important;
    background-position: center center;
}
#testimonials::before {
    content:''; position:absolute; inset:0;
    background: rgba(19,31,66,.88);
}
#testimonials.testimonial-section {
    display: block;
    min-height: 420px;
    background: linear-gradient(135deg, #0d1b3e 0%, #162b5b 55%, #1565c0 100%);
    position: relative;
    overflow: hidden;
}
#testimonials .container { position: relative; z-index: 2; }
#testimonials .section-title { margin-bottom: 38px; }
#testimonials .testimonial-heading {
    color: #ffb347 !important;
}
#testimonials .section-title p {
    color: rgba(255,255,255,.9);
    max-width: 680px;
    margin: 10px auto 0;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.testimonial-card {
    height: 100%;
    padding: 24px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
    backdrop-filter: blur(4px);
}
.testi-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    text-align: left;
}
.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    background: var(--orange);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    border: 2px solid rgba(255,255,255,.65);
}
.testi-meta h3,
.testi-meta h4 {
    font-size: 17px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 4px;
}
.testi-meta p {
    font-size: 12px;
    color: rgba(255,255,255,.66);
    margin: 0;
}
.desc {
    padding: 0;
    background: transparent;
    border: 0;
}
.desc h4,
.desc h3 {
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
    padding: 0 0 10px;
    margin: 0;
}
.desc h4 i,
.desc h3 i {
    color: var(--orange);
    font-size: 20px;
    vertical-align: middle;
    margin-right: 8px;
}
.desc .lead {
    color: rgba(255,255,255,.9);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

/*------------------------------------------------------------------
    FOOTER
-------------------------------------------------------------------*/
.footer {
    background: #0d1b3e !important;
    padding: 70px 0 50px !important;
    color: #d3d8e3 !important;
}
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-logo-wrap img {
    height: 48px;
    width: 156px;
    filter: brightness(0) invert(1);
    opacity: .8;
}
.footer-logo-wrap span { font-size: 18px; font-weight: 700; color: #fff; }
.footer .widget p { font-size: 13px; line-height: 1.8; color: #d3d8e3; margin-bottom: 16px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,.12);
    color: #f2f5fa;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: all .25s;
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer .widget-title h3 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 0 0 10px !important;
    margin: 0 0 16px !important;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}
.footer-links { margin: 0; padding: 0; }
.footer-links li { padding: 5px 0 !important; border-bottom: 1px solid rgba(255,255,255,.06) !important; }
.footer-links li a { color: #d3d8e3 !important; font-size: 13px; text-decoration: underline !important; text-underline-offset: 3px; }
.footer-links li a i { color: var(--orange); margin-right: 7px; font-size: 11px; }
.footer-links li a:hover { color: #ffb347 !important; padding-left: 4px; }
.footer-contact-list { margin: 0; padding: 0; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    color: #d3d8e3;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-contact-list li i { color: var(--orange); margin-top: 4px; min-width: 14px; }

.copyrights {
    background: #070f26 !important;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 12px 0;
}
.footer-center { text-align: center; }
.footer-company-name { color: #c2c8d4 !important; font-size: 13px; margin: 0; }
.footer-company-name a { color: #ffb347 !important; text-decoration: underline !important; text-underline-offset: 3px; }

/*------------------------------------------------------------------
    MISC UTILITIES
-------------------------------------------------------------------*/
.dmtop {
    background: var(--navy);
    z-index: 100; width:42px; height:42px; line-height:42px;
    position:fixed; bottom:-100px; right:14px;
    border-radius:4px; text-align:center; font-size:22px;
    color:#fff !important; cursor:pointer;
    transition: bottom .4s ease, background .2s;
}
.dmtop:hover { background: var(--orange); }

/* Section specific backgrounds */
.section.cl { background: #1f2022; }
.dbcolor { background: var(--navy); }

/* Timeline images */
.img-bg-01 { background: url(../../images/img-01.jpg) no-repeat center; background-size:cover; }
.img-bg-02 { background: url(../../images/img-02.jpg) no-repeat center; background-size:cover; }
.img-bg-03 { background: url(../../images/img-04.jpg) no-repeat center; background-size:cover; }
.img-bg-04 { background: url(../../images/img-04.jpg) no-repeat center; background-size:cover; }

/* All-title box for inner pages */
.all-title-box {
    background: url(../../images/banner.jpg) no-repeat center, var(--navy);
    background-size: cover;
    min-height: 280px;
    display: flex;
    align-items: center;
    position: relative;
}
.about-title-box {
    background-image: url(../assets/images/netfive-tech-bg.jpg);
}
.all-title-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13,27,62,.88) 0%, rgba(13,27,62,.70) 100%);
}
.all-title-box .container { position: relative; z-index: 2; }
.all-title-box h1 {
    color: #fff;
    font-weight: 800;
    font-size: 40px;
    text-transform: capitalize;
    line-height: 1.2 !important;
}
/* Page banner subtitle */
.all-title-box h1 .m_1 {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,.70);
    text-transform: none;
    letter-spacing: 0;
    margin-top: 10px;
}

/* Page section */
.page-section { padding: 70px 0; }

/*------------------------------------------------------------------
    ACADEMIC PROGRAM DETAIL PAGES
-------------------------------------------------------------------*/
.program-hero {
    background: #fff;
    padding: 70px 0 42px;
}
.program-hero-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1fr);
    gap: 54px;
    align-items: center;
}
.program-hero-media {
    border-radius: 8px;
    overflow: hidden;
    background: #e8edf5;
    box-shadow: 0 18px 45px rgba(13,27,62,.16);
}
.program-hero-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1060 / 706;
    object-fit: cover;
}
.program-eyebrow,
.program-label {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin: 0 0 12px;
    text-transform: uppercase;
}
.program-hero-copy h1 {
    color: var(--navy);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.12 !important;
    margin-bottom: 18px;
}
.program-hero-lead,
.program-section p,
.program-cost-section p,
.program-faq-list p {
    color: #4d5968;
    font-size: 15px;
    line-height: 1.8;
}
.program-primary-btn,
.program-actions a,
.program-cost-section a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff !important;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .4px;
    padding: 12px 24px;
    text-transform: uppercase;
}
.program-primary-btn:hover,
.program-actions a:hover,
.program-cost-section a:hover {
    background: var(--orange-dark);
}
.program-dates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}
.program-dates div {
    border-left: 4px solid var(--orange);
    background: #f5f7fa;
    padding: 12px 14px;
}
.program-dates span,
.program-fact span,
.program-cost-card span {
    display: block;
    color: #5d6878;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.program-dates strong,
.program-fact strong {
    color: var(--navy);
    font-size: 14px;
}
.program-facts-band {
    background: var(--navy);
    padding: 22px 0;
}
.program-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255,255,255,.14);
}
.program-fact {
    background: var(--navy);
    min-height: 92px;
    padding: 18px 20px;
}
.program-fact span {
    color: rgba(255,255,255,.76);
}
.program-fact strong {
    color: #fff;
}
.program-section,
.program-cost-section,
.program-faq-section {
    padding: 68px 0;
}
.program-section-alt,
.program-faq-section {
    background: #f5f7fa;
}
.program-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .86fr);
    gap: 48px;
    align-items: start;
}
.program-section h2,
.program-cost-section h2,
.program-faq-section h2 {
    color: var(--navy);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 14px;
}
.program-side-note {
    background: var(--navy);
    border-radius: 8px;
    color: #fff;
    padding: 28px;
}
.program-side-note i {
    color: var(--orange);
    font-size: 28px;
    margin-bottom: 14px;
}
.program-side-note strong,
.program-side-note span {
    display: block;
}
.program-side-note strong {
    font-size: 20px;
    margin-bottom: 8px;
}
.program-side-note span {
    color: rgba(255,255,255,.86);
    line-height: 1.7;
}
.program-check-list,
.program-career-list,
.program-course-grid {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}
.program-check-list li {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    padding: 8px 0;
}
.program-check-list i {
    color: var(--orange);
    margin-top: 4px;
}
.program-image-card {
    align-self: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(13,27,62,.12);
    padding: 18px;
}
.program-image-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}
.program-section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}
.program-course-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.program-course-grid li {
    background: #fff;
    border: 1px solid #dde3ed;
    border-radius: 6px;
    color: var(--navy);
    font-size: 14px;
    min-height: 72px;
    overflow: hidden;
    padding: 0;
}
.program-course-module {
    height: 100%;
}
.program-course-module summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: 12px;
    grid-template-columns: 30px 1fr 18px;
    list-style: none;
    min-height: 72px;
    padding: 16px;
}
.program-course-module summary::-webkit-details-marker {
    display: none;
}
.program-course-module summary:focus-visible {
    outline: 3px solid rgba(232,93,4,.32);
    outline-offset: -3px;
}
.program-course-module summary i {
    color: var(--orange);
    transition: transform .2s ease;
}
.program-course-module[open] summary i {
    transform: rotate(180deg);
}
.program-course-grid span {
    align-items: center;
    background: var(--orange);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    flex: 0 0 30px;
    font-size: 12px;
    height: 30px;
    justify-content: center;
}
.program-course-grid strong {
    color: var(--navy);
    display: block;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0;
}
.program-course-detail {
    border-top: 1px solid #eef2f7;
    padding: 0 16px 16px 58px;
}
.program-course-detail small {
    color: var(--orange);
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
    margin: 2px 0 6px;
    text-transform: uppercase;
}
.program-course-detail p {
    color: #5f6b7a;
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}
.program-course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.program-course-meta span {
    background: #f5f7fa;
    border-radius: 14px;
    color: #5f6b7a;
    display: inline-flex;
    flex: 0 1 auto;
    font-size: 11px;
    height: auto;
    padding: 4px 9px;
}
.program-course-detail ul {
    margin: 10px 0 0 18px;
    padding: 0;
}
.program-course-detail li {
    background: transparent;
    border: none;
    color: #5f6b7a;
    display: list-item;
    font-size: 13px;
    line-height: 1.6;
    min-height: 0;
    overflow: visible;
    padding: 0 0 4px;
}
.program-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.program-actions a:nth-child(2) {
    background: var(--navy);
}
.program-career-list {
    columns: 2;
}
.program-career-list li {
    color: var(--navy);
    font-weight: 700;
    padding: 8px 0;
}
.program-article-grid {
    display: grid;
    gap: 16px;
}
.program-article {
    background: #f5f7fa;
    border-left: 4px solid var(--orange);
    border-radius: 6px;
    padding: 20px;
}
.program-article h3,
.program-flex-grid h3 {
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}
.program-article a {
    color: var(--orange) !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}
.program-cost-section {
    background: var(--navy);
    color: #fff;
}
.program-cost-section h2 {
    color: #fff;
}
.program-cost-section p {
    color: rgba(255,255,255,.88);
}
.program-cost-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px;
}
.program-cost-card strong {
    color: var(--orange);
    display: block;
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 12px;
}
.program-cost-card p {
    color: #4d5968;
}
.program-flex-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.program-flex-grid article {
    border: 1px solid #dde3ed;
    border-radius: 6px;
    padding: 22px;
}
.program-faq-list {
    display: grid;
    gap: 10px;
}
.program-faq-list details {
    background: #fff;
    border: 1px solid #dde3ed;
    border-radius: 6px;
    padding: 0 18px;
}
.program-faq-list summary {
    color: var(--navy);
    cursor: pointer;
    font-weight: 800;
    padding: 18px 0;
}
.program-faq-list details p {
    border-top: 1px solid #edf1f6;
    margin: 0;
    padding: 14px 0 18px;
}

/*------------------------------------------------------------------
    ABOUT PAGE - MISSION / VISION / HISTORY BOXES
-------------------------------------------------------------------*/
.hmv-box {
    background: var(--light-bg);
    padding: 60px 0;
}
.inner-hmv {
    background: #fff;
    border-radius: 8px;
    padding: 32px 24px;
    box-shadow: 0 2px 14px rgba(13,27,62,.07);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    margin-bottom: 24px;
}
.icon-box-hmv {
    width: 64px; height: 64px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.icon-box-hmv i { font-size: 26px; color: var(--orange); }
.inner-hmv h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    margin: 0 0 14px !important;
}
.inner-hmv p { font-size: 14px; color: #4d5968; line-height: 1.8; margin: 0; }
/* Large decorative letter */
.tr-pa {
    position: absolute;
    top: 10px; right: 16px;
    font-size: 80px;
    font-weight: 900;
    color: var(--orange);
    opacity: .06;
    line-height: 1;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

/*------------------------------------------------------------------
    ABOUT PAGE - WELCOME BOX
-------------------------------------------------------------------*/
.-box { padding: 10px 0 0; }
.-box h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    margin-bottom: 14px !important;
}
.-box p { color: #4d5968; line-height: 1.8; margin-bottom: 20px; }

/* Contact form */
.contact_form {
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    background: #fff;
    border: 1px solid #e8edf3;
    border-top: 4px solid var(--orange);
    padding: 36px 28px;
    border-radius: 6px;
}
.contact_form .form-control {
    background: #f9fafc;
    margin-bottom: 20px;
    border: 1px solid #e0e6ef;
    color: #333;
    font-size: 15px;
    padding: 10px 20px;
    height: 50px;
    width: 100%;
    box-shadow: none !important;
    border-radius: 4px;
}
.contact_form .form-control:focus {
    background: #fff;
    border-color: var(--orange);
}
.contact_form textarea { height: 140px !important; padding-top: 14px !important; }
.contact_form .btn { background: var(--orange); color: #fff; font-weight: 700; padding: 12px; font-size: 14px; border: none; border-radius: 4px; }
.contact_form .btn:hover { background: var(--orange-dark); }

/* Hover btn */
.hover-btn-new {
    color: #fff;
    display: inline-block;
    font-weight: 500;
    line-height: 46px;
    padding: 0 18px;
    text-transform: uppercase;
    position: relative;
    border: 2px solid var(--orange);
    font-size: 13px;
    border-radius: 3px;
    background: var(--orange);
    transition: all .3s;
}
.hover-btn-new:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.hover-btn-new span { position: relative; z-index: 2; }

/* Message box */
.message-box h4 { text-transform: uppercase; font-weight: 700; font-size: 13px; color: var(--orange); margin-bottom: 6px; }
.message-box h2 { font-size: 34px; font-weight: 600; color: var(--navy); padding: 0 0 12px; line-height: 1.3 !important; }
.message-box p  { color: #4d5968; margin-bottom: 16px; }
.post-media img { width: 100%; border-radius: 6px; }

/* Form controls */
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(242,101,34,.15) !important; }

/*------------------------------------------------------------------
    RESPONSIVE
-------------------------------------------------------------------*/
@media (max-width: 1199px) {
    .nav-list .nav-item > a { padding: 18px 10px; font-size: 12px; }
}

@media (max-width: 991px) {
    .about-content { padding: 30px 0 0; }
    .hero-text h1 { font-size: 38px; }
    .hero-side-btns { display: none; }
    .main-nav .nav-list { flex-direction: column; align-items: flex-start; }
    .nav-list .nav-item > a { padding: 12px 16px; border-bottom: 1px solid #eee; width: 100%; }
    .mega-dropdown.two-col { flex-direction: column; min-width: 100%; position: static; box-shadow: none; }
    .main-nav { display: none; width: 100%; position: absolute; top: 100%; left: 0; background: #fff; z-index: 999; box-shadow: 0 8px 20px rgba(0,0,0,.1); }
    .main-nav.open { display: block; }
    .nav-toggle { display: flex; }
    .header-inner { flex-wrap: wrap; }
    .nav-item:hover .mega-dropdown { display: none; }
}

@media (max-width: 767px) {
    .top-bar-contact { display: none; }
    .top-bar-actions .tb-lang { display: none; }
    .hero-text h1 { font-size: 28px; }
    .hero-content { padding: 50px 0 80px; }
    .hero-section { min-height: 380px; }
    .about-img-wrap { margin-bottom: 50px; }
    .about-badge { bottom: -16px; }
    .section { padding: 50px 0; }
    .section-title h2,
    .section-title h3 { font-size: 26px !important; }
    .stat_count { font-size: 32px; }
    .footer { padding: 50px 0 30px !important; }
    .footer .widget { margin-bottom: 28px; }
}

@media (max-width: 991px) {
    .program-hero {
        padding: 42px 0 28px;
    }
    .program-hero-grid,
    .program-two-col,
    .program-media-right,
    .program-flex-grid {
        grid-template-columns: 1fr;
    }
    .program-hero-media {
        order: -1;
    }
    .program-facts,
    .program-course-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .program-hero-copy h1 {
        font-size: 30px;
    }
    .program-dates,
    .program-facts,
    .program-course-grid {
        grid-template-columns: 1fr;
    }
    .program-section,
    .program-cost-section,
    .program-faq-section {
        padding: 46px 0;
    }
    .program-section h2,
    .program-cost-section h2,
    .program-faq-section h2 {
        font-size: 24px;
    }
    .program-career-list {
        columns: 1;
    }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 22px; letter-spacing: 0; }
    .hero-sub { font-size: 14px; }
}

/* =========================================================
   NETFIVE ACADEMY - EXTRA COMPONENTS
   ========================================================= */

/* Hero tagline + enhanced text */
.hero-tagline {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.88);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.05 !important;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.hero-text h1 span { color: var(--orange); }
.hero-sub  { font-size: 20px; color: rgba(255,255,255,.9); font-weight: 600; margin-bottom: 12px; }
.hero-sub strong { color: var(--orange); }
.hero-desc { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 28px; max-width: 480px; }

/* Hero badge circle */
.hero-badge-circle {
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 3px solid rgba(255,255,255,.3);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; color: #fff;
    backdrop-filter: blur(6px);
}
.hero-badge-circle i   { font-size: 24px; color: var(--orange); margin-bottom: 4px; }
.hero-badge-circle strong { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.hero-badge-circle .big-num { font-size: 52px; font-weight: 800; line-height: 1; color: var(--orange); }
.hero-badge-circle span { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.8); margin-top: 2px; }

/* Program Highlights */
.highlights-section { border-bottom: 1px solid #e8edf5; }
.highlight-item {
    padding: 20px 12px;
    text-align: center;
}
.highlight-item i {
    font-size: 36px;
    color: var(--orange);
    display: block;
    margin-bottom: 12px;
}
.highlight-item p {
    font-size: 13px;
    color: #555;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* Career Banner */
.career-banner {
    background: var(--navy);
    border-radius: 8px;
    padding: 24px 28px;
    margin-top: 12px;
    color: #fff;
}
.career-banner h3,
.career-banner h4 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.career-banner h3 i,
.career-banner h4 i { color: var(--orange); margin-right: 8px; }
.career-banner p { color: rgba(255,255,255,.75); font-size: 14px; margin: 0; }

/* Pricing Cards */
.price-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13,27,62,.08);
    margin-bottom: 24px;
    transition: transform .3s, box-shadow .3s;
    position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(21,101,192,.18); }
.price-card-featured { border: 2px solid var(--orange); }
.price-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--orange);
    color: #fff; font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .8px;
    padding: 3px 10px; border-radius: 12px;
}
.price-header {
    background: var(--navy);
    color: #fff;
    padding: 24px 20px 20px;
    text-align: center;
}
.price-card-featured .price-header { background: var(--orange); }
.price-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.price-icon i { font-size: 22px; color: #fff; }
.price-header h3,
.price-header h4 { color: #fff; font-size: 16px; font-weight: 800; letter-spacing: 1px; margin-bottom: 4px; }
.price-level { font-size: 12px; color: rgba(255,255,255,.88); }
.price-body { padding: 22px; }
.price-amount {
    font-size: 18px;
    color: var(--navy);
    font-weight: 600;
    text-align: center;
    margin-bottom: 4px;
}
.price-amount strong { font-size: 38px; font-weight: 800; color: var(--orange); }
.price-amount span { font-size: 13px; color: #555; }
.price-total { text-align: center; font-size: 12px; color: #555; margin-bottom: 18px; }
.price-features { margin: 0 0 20px; padding: 0; list-style: none; }
.price-features li { padding: 7px 0; font-size: 13px; color: #555; border-bottom: 1px solid #f0f4f8; display: flex; align-items: center; gap: 8px; }
.price-features li:last-child { border-bottom: none; }
.price-features li i { color: var(--orange); font-size: 12px; }
.btn-price {
    display: block; width: 100%;
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 11px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    transition: background .2s;
}
.btn-price:hover { background: var(--orange); color: #fff; }
.price-card-featured .btn-price { background: var(--orange); }
.price-card-featured .btn-price:hover { background: var(--orange-dark); }

/* Discount notice */
.discount-notice {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    background: var(--navy);
    border-radius: 8px;
    padding: 16px 24px;
    margin-top: 16px;
    color: #fff;
    justify-content: center;
    text-align: center;
}
.discount-notice i { font-size: 26px; color: var(--orange); }
.discount-notice span { font-size: 14px; color: rgba(255,255,255,.85); flex: 1; min-width: 200px; }
.discount-notice strong { color: var(--orange); }
.discount-notice a {
    background: var(--orange);
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background .2s;
}
.discount-notice a:hover { background: var(--orange-dark); color: #fff; }

/* Who Should Apply grid */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}
.who-item {
    background: #fff;
    border: 1.5px solid #d0dce8;
    border-left: 4px solid var(--orange);
    border-radius: 5px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    display: flex; align-items: center; gap: 8px;
}
.who-item i { color: var(--orange); font-size: 16px; }

.apply-heading {
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

/* Footer tagline */
.footer-tagline-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px !important;
}

/* Responsive extras */
@media (max-width: 767px) {
    .hero-text h1 { font-size: 32px; }
    .hero-text h1 span { display: inline; }
    .who-grid { grid-template-columns: 1fr; }
    .level-cards { flex-direction: column; }
    .level-card { min-width: 100%; }
    .highlight-item { padding: 12px 8px; }
}


