
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    background: #fff;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; line-height: 1.3; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* TOP BAR*/
#top-bar {
    background: #1a1a2e;
    padding: 7px 0;
    font-size: 13px;
    color: #ccc;
}
#top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#top-bar a { color: #ccc; }
#top-bar a:hover { color: #fff; }
#top-bar .tb-left span { margin-right: 20px; }
#top-bar .tb-left i, #top-bar .tb-right i { margin-right: 5px; color: #f7941d; }
#top-bar .tb-right a {
    margin-left: 12px;
    background: #f7941d;
    color: #fff;
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 12px;
}
#top-bar .tb-right a:hover { background: #e0820a; }

/*HEADER  — white bar with logo + apply btn + nav below */
#main-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}
.header-logo img {
    height: 55px;
    width: auto;
    vertical-align: middle;
}
.header-logo-text {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a3c8f;
    vertical-align: middle;
    margin-left: 8px;
    letter-spacing: .5px;
}
.header-apply-btn img { height: 42px; }
.header-apply-btn a {
    display: inline-block;
    background: #f7941d;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 4px;
    letter-spacing: .3px;
}
.header-apply-btn a:hover { background: #e0820a; }

/*NAVBAR  — same dark-blue navbar as amecet */
#navbar {
    background: #1a3c8f;
}
#navbar .nav-inner {
    display: flex;
    align-items: stretch;
}
#navbar ul { display: flex; align-items: stretch; }
#navbar ul li { position: relative; }
#navbar ul li > a {
    display: flex;
    align-items: center;
    padding: 13px 15px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: background .2s;
    gap: 4px;
}
#navbar ul li > a:hover,
#navbar ul li > a.active { background: #f7941d; }
#navbar ul li > a .caret {
    font-size: 10px;
    margin-left: 2px;
}

/* DROPDOWN */
.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 230px;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
    border-top: 3px solid #f7941d;
    z-index: 9999;
}
.nav-dropdown.wide { min-width: 680px; display: none; }
.nav-dropdown.wide .dd-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 16px;
    gap: 0;
}
.nav-dropdown.wide .dd-col h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f7941d;
    padding: 8px 12px 4px;
    letter-spacing: .8px;
}
.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: #444;
    transition: background .15s;
    border-radius: 3px;
}
.nav-dropdown a:hover { background: #f5f5f5; color: #1a3c8f; }
.nav-dropdown a .dd-icon {
    width: 28px;
    height: 28px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #1a3c8f;
    flex-shrink: 0;
}
/* simple dropdown */
.nav-dropdown.simple { padding: 6px 0; }
.nav-dropdown.simple a { padding: 9px 18px; font-size: 13px; }

#navbar ul li:hover .nav-dropdown { display: block; }
#navbar ul li:hover .nav-dropdown.wide { display: block; }

/* APPLY NOW nav btn */
.nav-apply {
    margin-left: auto;
}
.nav-apply a {
    background: #f7941d !important;
    font-weight: 600 !important;
    padding: 13px 20px !important;
}
.nav-apply a:hover { background: #e0820a !important; }

/* Mobile hamburger */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all .3s;
}

/* MARQUEE TICKER  — red bar below nav */
#ticker {
    background: #c8252e;
    padding: 8px 0;
    overflow: hidden;
}
#ticker .ticker-inner {
    display: flex;
    align-items: center;
    gap: 0;
}
#ticker .ticker-label {
    background: #a01e25;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 0;
    flex-shrink: 0;
}
#ticker marquee { color: #fff; font-size: 13px; font-weight: 500; }
#ticker marquee a { color: #ffe082; }

/*HERO SLIDER  — full width image slider */
#hero {
    position: relative;
    overflow: hidden;
    background: #0d1b6e;
}
.hero-slide {
    display: none;
    position: relative;
}
.hero-slide.active { display: block; }
.hero-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
/* Overlay text on slider */
.hero-caption {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
}
.hero-caption h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0,0,0,.6);
    margin-bottom: 10px;
}
.hero-caption p {
    font-size: 16px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,.5);
}
.hero-caption .btn-hero,
.hero-caption .btn-hero-outline {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 28px;
    border-radius: 4px;
    margin-right: 10px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.hero-caption .btn-hero {
    background: #f7941d;
    color: #fff;
    border: 2px solid #f7941d;
}
.hero-caption .btn-hero:hover { background: #e0820a; border-color: #e0820a; }
.hero-caption .btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.hero-caption .btn-hero-outline:hover { background: #fff; color: #1a3c8f; }

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-dots span {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    display: block;
    transition: background .3s;
}
.hero-dots span.active { background: #f7941d; }
/* Prev/Next arrows */
.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.35);
    color: #fff;
    border: none;
    padding: 14px 18px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background .2s;
}
.hero-prev { left: 10px; }
.hero-next { right: 10px; }
.hero-prev:hover, .hero-next:hover { background: #f7941d; }

/*HOME — ABOUT SECTION  (below slider, 2-col layout) */
#home-about {
    padding: 50px 0;
    background: #fff;
}
#home-about .ha-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}
#home-about h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a3c8f;
    margin-bottom: 16px;
    border-bottom: 3px solid #f7941d;
    padding-bottom: 10px;
    display: inline-block;
}
#home-about p { color: #555; margin-bottom: 12px; font-size: 14px; }
#home-about p a { color: #1a3c8f; }
#home-about p a:hover { color: #f7941d; }

/* CURRENT EVENTS SIDEBAR BOX */
.sidebar-box {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}
.sidebar-box .sb-head {
    background: #1a3c8f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 16px;
}
.sidebar-box ul { padding: 10px 0; }
.sidebar-box ul li {
    border-bottom: 1px solid #f0f0f0;
}
.sidebar-box ul li:last-child { border-bottom: none; }
.sidebar-box ul li a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: #333;
    transition: background .15s;
}
.sidebar-box ul li a:hover { background: #f5f5f5; color: #1a3c8f; }
.sidebar-box ul li a i {
    color: #f7941d;
    margin-right: 7px;
    font-size: 11px;
}

/* ELIGIBILITY TABS SECTION */
#eligibility-tabs {
    background: #f4f6fb;
    padding: 40px 0;
}
#eligibility-tabs h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1a3c8f;
    margin-bottom: 24px;
}
.elig-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.elig-tab {
    background: #fff;
    border: 2px solid #1a3c8f;
    color: #1a3c8f;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 25px;
    cursor: pointer;
    transition: all .2s;
}
.elig-tab:hover, .elig-tab.active {
    background: #1a3c8f;
    color: #fff;
}
.elig-panel { display: none; }
.elig-panel.active { display: block; }

/* Course cards grid */
.courses-category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a3c8f;
    border-left: 4px solid #f7941d;
    padding-left: 12px;
    margin: 28px 0 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.course-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 10px;
}
.course-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 18px 14px;
    text-align: center;
    transition: all .25s;
    display: block;
    color: #333;
    cursor: pointer;
}
.course-card:hover {
    box-shadow: 0 6px 20px rgba(26,60,143,.15);
    border-color: #1a3c8f;
    transform: translateY(-3px);
    color: #1a3c8f;
}
.course-card .cc-icon {
    width: 64px; height: 64px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 26px;
    color: #1a3c8f;
    transition: background .2s;
}
.course-card:hover .cc-icon { background: #1a3c8f; color: #fff; }
.course-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a3c8f;
}
.course-card p {
    font-size: 11.5px;
    color: #888;
}

/*CTA BANNER — "To build your career..." */
#cta-banner {
    background: linear-gradient(135deg, #1a3c8f 0%, #0d1b6e 100%);
    padding: 50px 0;
    text-align: center;
    color: #fff;
}
#cta-banner h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
#cta-banner .btn-cta {
    display: inline-block;
    background: #f7941d;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 36px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background .2s;
}
#cta-banner .btn-cta:hover { background: #e0820a; }

/*TRAINING PARTNERS SECTION */
#partners {
    padding: 50px 0;
    background: #fff;
}
#partners h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1a3c8f;
    margin-bottom: 8px;
}
#partners .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}
.partners-category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 24px 0 16px;
    position: relative;
    padding-left: 14px;
}
.partners-category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #f7941d;
    border-radius: 2px;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.partner-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    transition: box-shadow .2s;
}
.partner-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.partner-card .p-logo {
    width: 52px; height: 52px;
    background: #eef2ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1a3c8f;
    flex-shrink: 0;
}
.partner-card .p-info h5 {
    font-size: 13px;
    font-weight: 700;
    color: #1a3c8f;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}
.partner-card .p-info p { font-size: 12px; color: #666; }

/*ARTICLES SECTION*/
#articles {
    padding: 50px 0;
    background: #f4f6fb;
}
#articles h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3c8f;
    margin-bottom: 24px;
    border-bottom: 3px solid #f7941d;
    padding-bottom: 10px;
    display: inline-block;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.article-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    transition: box-shadow .2s;
    display: block;
    color: #333;
}
.article-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.14); }
.article-card .ac-img {
    height: 150px;
    overflow: hidden;
    position: relative;
    background: #1a3c8f;
}
.article-card .ac-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.article-card:hover .ac-img img {
    transform: scale(1.05);
}
.article-card .ac-body { padding: 14px; }
.article-card .ac-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a3c8f;
    margin-bottom: 8px;
    line-height: 1.4;
}
.article-card .ac-body p { font-size: 13px; color: #666; margin-bottom: 10px; }
.article-card .ac-body a.read-more {
    font-size: 13px;
    color: #f7941d;
    font-weight: 600;
}
.article-card .ac-body a.read-more:hover { color: #1a3c8f; }

/*SCHOLARSHIP TABLE SECTION*/
#scholarship {
    padding: 50px 0;
    background: #fff;
}
#scholarship h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3c8f;
    margin-bottom: 24px;
    border-bottom: 3px solid #f7941d;
    padding-bottom: 10px;
    display: inline-block;
}
.scholarship-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}
.schol-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.schol-table th {
    background: #1a3c8f;
    color: #fff;
    padding: 11px 14px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.schol-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    color: #444;
}
.schol-table tr:nth-child(even) td { background: #f8f9ff; }
.schol-table tr:hover td { background: #eef2ff; }
.schol-table .note {
    font-size: 12px;
    color: #888;
    padding: 10px 14px;
    background: #fffbf0;
    border-left: 3px solid #f7941d;
    margin-top: 10px;
}
.schol-img img { width: 100%; border-radius: 6px; }

/*FAQ SECTION*/
#faq {
    padding: 50px 0;
    background: #f4f6fb;
}
#faq h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3c8f;
    margin-bottom: 24px;
    border-bottom: 3px solid #f7941d;
    padding-bottom: 10px;
    display: inline-block;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}
.accordion-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}
.accordion-head {
    padding: 14px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a3c8f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .15s;
}
.accordion-head:hover { background: #f0f4ff; }
.accordion-head .acc-icon {
    font-size: 14px;
    color: #f7941d;
    transition: transform .3s;
    flex-shrink: 0;
}
.accordion-head.open .acc-icon { transform: rotate(180deg); }
.accordion-body {
    display: none;
    padding: 14px 16px;
    font-size: 13.5px;
    color: #555;
    border-top: 1px solid #f0f0f0;
    background: #fafbff;
}
.accordion-body ul { padding-left: 20px; list-style: disc; margin-top: 8px; }
.accordion-body ul li { margin-bottom: 5px; }

/* FAQ sidebar — ask form */
.ask-form-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}
.ask-form-box .af-head {
    background: #1a3c8f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 18px;
}
.ask-form-box .af-body { padding: 18px; }
.ask-form-box .af-body p { font-size: 13px; color: #666; margin-bottom: 14px; }
.form-field {
    margin-bottom: 12px;
}
.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #333;
    outline: none;
    transition: border .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: #1a3c8f; }
.form-field textarea { min-height: 90px; resize: vertical; }
.btn-submit {
    width: 100%;
    background: #f7941d;
    color: #fff;
    border: none;
    padding: 11px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background .2s;
}
.btn-submit:hover { background: #e0820a; }
.form-msg {
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    display: none;
}
.form-msg.success { background: #d4edda; color: #155724; display: block; }
.form-msg.error { background: #f8d7da; color: #721c24; display: block; }

/*TESTIMONIALS*/
#testimonials {
    padding: 50px 0;
    background: #fff;
}
#testimonials h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1a3c8f;
    margin-bottom: 30px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial-card {
    background: #f4f6fb;
    border-radius: 8px;
    padding: 24px;
    position: relative;
    border-top: 4px solid #f7941d;
}
.testimonial-card .quote-icon {
    font-size: 40px;
    color: #1a3c8f;
    opacity: .12;
    position: absolute;
    top: 12px;
    left: 16px;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card p {
    font-size: 13.5px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author .avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3c8f, #f7941d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-author .author-info strong {
    display: block;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: #1a3c8f;
}
.testimonial-author .author-info span { font-size: 12px; color: #888; }

/*PAGE BANNER (inner pages)*/
#page-banner {
    background: linear-gradient(135deg, #0d1b6e, #1a3c8f);
    padding: 40px 0 30px;
    color: #fff;
}
#page-banner h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}
/* breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.75);
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .bc-sep { color: rgba(255,255,255,.4); }

/*INNER PAGE — COURSE DETAIL LAYOUT */
#course-page {
    padding: 40px 0 60px;
    background: #fff;
}
.course-page-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}
.course-main h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3c8f;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 3px solid #f7941d;
}
.course-main h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a3c8f;
    margin: 24px 0 10px;
}
.course-main p { color: #555; font-size: 14px; margin-bottom: 12px; }
.course-main ul {
    padding-left: 20px;
    list-style: none;
    margin-bottom: 14px;
}
.course-main ul li {
    padding: 7px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    padding-left: 20px;
    position: relative;
}
.course-main ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #1a3c8f;
    font-size: 12px;
    top: 9px;
}
/* Course highlight info boxes */
.course-info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 20px 0;
}
.cib {
    background: #f4f6fb;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    border-top: 3px solid #1a3c8f;
}
.cib i { font-size: 22px; color: #f7941d; margin-bottom: 8px; display: block; }
.cib strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a3c8f;
    margin-bottom: 3px;
}
.cib span { font-size: 12px; color: #777; }

/* COURSE SIDEBAR */
.course-sidebar .apply-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}
.course-sidebar .apply-box .ab-head {
    background: #1a3c8f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 18px;
}
.course-sidebar .apply-box .ab-body { padding: 18px; }
.course-sidebar .info-table { width: 100%; font-size: 13px; border-collapse: collapse; }
.course-sidebar .info-table tr { border-bottom: 1px solid #f0f0f0; }
.course-sidebar .info-table tr:last-child { border-bottom: none; }
.course-sidebar .info-table td { padding: 9px 0; color: #555; }
.course-sidebar .info-table td:first-child { font-weight: 700; color: #333; width: 45%; }

.contact-box {
    background: #f4f6fb;
    border-radius: 6px;
    padding: 18px;
    text-align: center;
    border: 1px solid #e0e6ff;
}
.contact-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #1a3c8f;
    margin-bottom: 12px;
}
.contact-box .phone-big {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #f7941d;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}
.contact-box .btn-call {
    display: block;
    background: #1a3c8f;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: background .2s;
}
.contact-box .btn-call:hover { background: #f7941d; }

/*ABOUT PAGE */
#about-page {
    padding: 50px 0;
    background: #fff;
}
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}
.about-page-grid h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3c8f;
    margin-bottom: 14px;
    border-bottom: 3px solid #f7941d;
    padding-bottom: 10px;
    display: inline-block;
}
.about-page-grid p { color: #555; font-size: 14px; margin-bottom: 12px; }
.about-page-grid img { width: 100%; border-radius: 6px; box-shadow: 0 4px 20px rgba(0,0,0,.12); }

/*CONTACT PAGE*/
#contact-page {
    padding: 50px 0;
    background: #fff;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}
.contact-info-card {
    background: #1a3c8f;
    color: #fff;
    border-radius: 6px;
    padding: 30px;
}
.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}
.ci-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.ci-item .ci-icon {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.ci-item .ci-text strong { display: block; font-size: 13px; margin-bottom: 3px; }
.ci-item .ci-text span { font-size: 13px; color: rgba(255,255,255,.8); }
.map-box {
    margin-top: 30px;
    background: #eef2ff;
    height: 200px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3c8f;
    font-size: 14px;
    border: 2px dashed #c0caee;
    flex-direction: column;
    gap: 8px;
}
.map-box i { font-size: 32px; color: #f7941d; }
.contact-form-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}
.contact-form-card .cfc-head {
    background: #1a3c8f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 20px;
}
.contact-form-card .cfc-body { padding: 22px; }

/*COURSES LIST PAGE*/
#courses-page {
    padding: 50px 0;
    background: #fff;
}
.courses-list-item {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 22px;
    transition: box-shadow .2s;
}
.courses-list-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.cli-banner {
    background: linear-gradient(135deg, #1a3c8f, #2b5ac8);
    position: relative;
    overflow: hidden;
    min-height: 160px;
}
.cli-course-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    opacity: 0.75;
}
.cli-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
    color: #fff;
    text-align: center;
}
.cli-banner-overlay h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}
.cli-banner .badge {
    display: inline-block;
    background: rgba(255,255,255,.2);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    margin-top: 2px;
}
.cli-body {
    padding: 22px 26px;
}
.cli-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a3c8f;
    margin-bottom: 10px;
}
.cli-body p { color: #555; font-size: 14px; margin-bottom: 12px; }
.cli-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.cli-meta span {
    background: #eef2ff;
    color: #1a3c8f;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.cli-meta span i { margin-right: 5px; color: #f7941d; }
.cli-btns { display: flex; gap: 10px; }
.btn-primary-sm {
    background: #1a3c8f;
    color: #fff;
    padding: 9px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    transition: background .2s;
}
.btn-primary-sm:hover { background: #0d1b6e; color: #fff; }
.btn-orange-sm {
    background: #f7941d;
    color: #fff;
    padding: 9px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    transition: background .2s;
}
.btn-orange-sm:hover { background: #e0820a; color: #fff; }

/*FOOTER*/
#footer {
    background: #111827;
    color: rgba(255,255,255,.75);
    padding: 50px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f7941d;
    display: inline-block;
}
.footer-col p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul li a i { font-size: 11px; color: #f7941d; }
.footer-col ul li a:hover { color: #fff; }
.footer-address { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 14px; }
.footer-address i { color: #f7941d; margin-right: 6px; }
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.footer-social a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: all .2s;
}
.footer-social a:hover { background: #f7941d; color: #fff; }

/* Footer newsletter */
.footer-newsletter .fn-form { display: flex; gap: 0; margin-top: 12px; }
.footer-newsletter .fn-form select {
    flex: 1;
    padding: 9px 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 13px;
    color: #333;
    outline: none;
    background: #fff;
}
.footer-newsletter .fn-form button {
    background: #f7941d;
    color: #fff;
    border: none;
    padding: 9px 16px;
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background .2s;
}
.footer-newsletter .fn-form button:hover { background: #e0820a; }

/* Footer bottom bar */
#footer-bottom {
    background: #0a0e1a;
    padding: 14px 0;
    text-align: center;
    font-size: 12.5px;
    color: rgba(255,255,255,.45);
}

/*FLOATING BUTTONS (exactly like amecet — bottom rights*/
#floating-btns {
    position: fixed;
    bottom: 24px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9990;
}
.float-btn {
    background: #f7941d;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: background .2s;
    text-decoration: none;
}
.float-btn:hover { background: #e0820a; color: #fff; }
.float-btn.query { background: #1a3c8f; }
.float-btn.query:hover { background: #0d1b6e; }

#scroll-top-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 40px; height: 40px;
    background: #1a3c8f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9990;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    transition: background .2s;
}
#scroll-top-btn:hover { background: #f7941d; }
#scroll-top-btn.show { display: flex; }

/*MODAL  — Query / Apply Now popup*/
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    position: relative;
    animation: modalIn .25s ease;
}
@keyframes modalIn { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-box .modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #1a3c8f;
    padding: 18px 20px;
    color: #fff;
}
.modal-box .modal-header img { width: 42px; height: 42px; border-radius: 6px; }
.modal-box .modal-header h3 { font-size: 18px; font-weight: 700; }
.modal-box .modal-header p { font-size: 13px; color: rgba(255,255,255,.8); }
.modal-close {
    position: absolute;
    top: 12px; right: 14px;
    background: none;
    border: none;
    color: rgba(255,255,255,.8);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}
.modal-close:hover { color: #fff; }
.modal-body { padding: 22px; }
.modal-success {
    text-align: center;
    padding: 24px;
    display: none;
}
.modal-success.show { display: block; }
.modal-success h4 { font-size: 18px; font-weight: 700; color: #1a3c8f; margin-bottom: 8px; }
.modal-success p { color: #555; font-size: 14px; }

/*RESPONSIVE*/
@media (max-width: 1024px) {
    .course-cards-grid { grid-template-columns: repeat(3, 1fr); }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .scholarship-grid { grid-template-columns: 1fr; }
    .schol-img { display: none; }
}
@media (max-width: 768px) {
    #top-bar .tb-left { display: none; }
    .header-inner { flex-wrap: wrap; gap: 10px; }
    .header-logo-text { font-size: 18px; }
    #navbar { display: none; }
    #navbar.mobile-open { display: block; }
    #navbar ul { flex-direction: column; }
    #navbar ul li .nav-dropdown,
    #navbar ul li .nav-dropdown.wide { position: static; min-width: 100%; box-shadow: none; border-top: none; background: #112d7a; }
    #navbar ul li .nav-dropdown.wide .dd-inner { grid-template-columns: 1fr 1fr; }
    .nav-hamburger { display: flex; flex-direction: column; }
    .hero-slide img { height: 260px; }
    .hero-caption h2 { font-size: 22px; }
    .hero-caption { left: 4%; }
    #home-about .ha-grid { grid-template-columns: 1fr; }
    .course-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr 1fr; }
    .partners-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .about-page-grid { grid-template-columns: 1fr; }
    .contact-page-grid { grid-template-columns: 1fr; }
    .course-page-grid { grid-template-columns: 1fr; }
    .courses-list-item { grid-template-columns: 1fr; }
    .cli-banner { padding: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    #app-section .app-inner { grid-template-columns: 1fr; }
    .course-info-boxes { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .course-cards-grid { grid-template-columns: 1fr 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .hero-slide img { height: 200px; }
    .hero-caption { display: none; }
    .course-info-boxes { grid-template-columns: 1fr; }
    #floating-btns { bottom: 14px; right: 12px; }
    .float-btn { padding: 9px 14px; font-size: 12px; }
}
