/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 18 2026 | 12:00:38 */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}
.hero {
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 2;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, .15);
    border: 1px solid rgba(245, 158, 11, .4);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 20px;
    animation: fadeIn .6s ease both;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    animation: pulse-ring 1.8s ease infinite
}

.hero h1 {
    font-weight: 800;
    color: #fff;
    animation: fadeUp .7s ease .1s both
}

.hero h1 span {
    color: #f59e0b
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.65;
    margin: 20px 0 32px;
    font-family: 'Inter', sans-serif;
    animation: fadeUp .7s ease .2s both
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp .7s ease .3s both
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn .9s ease .3s both
}

.cs-mockup {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(8px);
    animation: float 4s ease-in-out infinite
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px
}

.mockup-icon {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #fff
}

.mockup-title {
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px
}

.mockup-title span {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    font-weight: 400
}

.mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.mockup-stat {
    background: rgba(255, 255, 255, .07);
    border-radius: 8px;
    padding: 12px
}

.mockup-stat-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #f59e0b
}

.mockup-stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .6);
    font-family: 'Inter', sans-serif;
    margin-top: 2px
}

.mockup-bar-row {
    margin-top: 14px
}

.mockup-bar-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .6);
    font-family: 'Inter', sans-serif;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between
}

.mockup-bar {
    height: 6px;
    background: rgba(255, 255, 255, .1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px
}

.mockup-bar-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, #253c81, #f59e0b)
}

.breadcrumb {
    background: #f0f2f7;
    padding: 12px 0;
    font-size: 13px;
    color: #6b7280;
    font-family: 'Inter', sans-serif
}

.breadcrumb a {
    color: #1b4fa8;
    text-decoration: none
}

.breadcrumb span {
    margin: 0 6px
}

.animate-on-scroll {
    margin-top: 48px;
}

.cs-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: rgba(37, 60, 129, 0.08) 0px 2px 16px;
    border: 2px solid transparent;
    transition: border-color 0.25s, transform 0.25s;
    transform: translateY(0px);
}

.stat-card:hover {
    border-color: #F59E0B;
    transform: translateY(-4px);
}

.stat-number {
    font-size: 36px !important;
    margin-bottom: 10px;
}

.stat-number.amber {
    color: #F59E0B;
}

.stat-number.navy {
    color: #253C81;
}

.stat-text {
    color: #333;
    margin: 0;
}

.highlight-quote {
    background: #F0F2F7;
    border-left: 3px solid #F59E0B;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
}

.highlight-quote__text {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.7;
    margin: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(37, 60, 129, 0.09);
    border: 2px solid transparent;
    transition: all 0.28s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #253C81, #1B4FA8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-card:hover {
    border-color: rgba(37, 60, 129, 0.12);
    box-shadow: 0 8px 32px rgba(37, 60, 129, 0.18);
    transform: translateY(-4px);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card-img {
    width: 30%;
    min-height: 160px;
    background: #F0F2F7;
    border-right: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    transition: background 0.3s;
}

.why-card:hover .why-card-img {
    background: #EEF2FF;
}

.why-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-card-body {
    width: 70%;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-card-body h3 {
    font-weight: 600;
    color: #253C81;
    margin: 0 0 8px 0;
}

.why-card-body p {
    color: #333;
    line-height: 1.65;
    margin: 0;
}

.context-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px
}

.context-point {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.context-point-dot {
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px
}

.context-point p {
    color: #333;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0
}

.context-note {
    background: #f0f2f7;
    border-radius: 12px;
    padding: 20px 24px;
    color: #4b5563;
    line-height: 1.7;
    border-left: 3px solid #253c81;
    margin-top: 8px
}
.icon-sq svg {
    color: #253C81;
}
.stakes-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px
}

.stakes-col h3 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #f59e0b;
	margin-bottom: 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid #f59e0b
}

.stat-point {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: 12px
}

.stat-point:last-child {
	margin-bottom: 0
}
.stat-dot {
	width: 7px;
	height: 7px;
	min-width: 7px;
	background: #f59e0b;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 6px
}

.stat-point p {
	font-size: 16px;
	color: #333;
	line-height: 1.6;
	margin: 0
}
.context-text .highlight-box {
	background: #f0f2f7;
	border-left: 3px solid #f59e0b;
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	margin: 16px 0;
	font-size: 15px;
	color: #253c81;
	font-weight: 600;
	line-height: 1.6;
}

.context-stats {
	display: flex;
	flex-direction: column;
	gap: 14px
}

.context-stat-item {
	background: #f0f2f7;
	border-radius: 12px;
	padding: 18px 20px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	transition: all .25s
}

.context-stat-item:hover {
	background: #fff;
	box-shadow: 0 4px 16px rgba(37, 60, 129, .1);
	transform: translateX(4px)
}

.context-stat-num {

	font-size: 26px;
	font-weight: 800;
	color: #f59e0b;
	line-height: 1;
	flex-shrink: 0;
	min-width: 60px
}

.context-stat-text {
	font-size: 15px;
	color: #333;
	line-height: 1.6
}

.trusted-by {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #e5e7eb
}

.trusted-by p {
	font-size: 13px;
	color: #6b7280;
	font-style: italic;
	line-height: 1.6;
}

.trusted-by strong {
	color: #253c81;
	font-style: normal
}

.delivery-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
    
}

.delivery-card {
    background: #f0f2f7;
    border-radius: 12px;
    padding: 20px;
    height: 190px;
    min-height: 190px;
    transition: all .25s ease;
    border: 2px solid transparent
}

.delivery-card:hover {
    border-color: #f59e0b;
    background: #fff;
    box-shadow: 0 2px 16px rgba(37, 60, 129, .09);
    transform: translateY(-3px)
}

.delivery-card-icon {
    width: 40px;
    height: 40px;
    background: #253c81;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.delivery-card-icon svg {
    color: #fff
}

.delivery-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #253c81;
    margin-bottom: 6px;
    margin-top: 20px;
    letter-spacing: 0
}

.delivery-card p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.5
}
.pathway-track,
.pathway-track-1 {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
	text-align: center;
	justify-self: center;
}

.pathway-tracks {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.track-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.track-label.core {
    color: #1b4fa8;
    border-color: #1b4fa8;
}

.track-label.specialist {
    color: #253c81;
    border-color: #253c81;
}

.pathway-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
	justify-content: center;
}

.step-node {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #253c81;
    color: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.22s ease;
    position: relative;
}

.step-node:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.step-node.specialist-node {
    background: #253c81;
}

.step-node.specialist-node:hover {
    background: #f59e0b;
}

.step-arrow {
    color: #6b7280;
    font-size: 18px;
    line-height: 1;
}

.specialist-nodes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pathway-note {
    border-left: 3px solid #F59E0B;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-top: 28px;
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    max-width: 1160px;
}

.tabs-wrapper .el-nav {
    flex: 1;
    padding: 6px 0px;
    border: none;
    border-radius: 16px;
    background: #f0f2f7;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-left: 0px;
    margin-bottom: 20px;
}

.tabs-wrapper .el-nav li:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #253c81;
    border-radius: 5px;
    padding: 12px 10px;
}

.tabs-wrapper .el-nav li.uk-active {
    background: #253c81;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 60, 129, 0.25);
    border-radius: 5px;
    padding: 12px 10px;
}

.tabs-wrapper .tab-duration {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
}

.tabs-wrapper .el-nav:not(.active) .tab-duration {
    background: rgba(37, 60, 129, 0.08);
}

.tabs-wrapper .uk-tab>.uk-active>a {
    display: none;
}

.tabs-wrapper .uk-tab>.uk-active>a {
    display: block;
    animation: fadeIn 0.35s ease;
    color: #fff;
    border-color: transparent;
}

.tabs-wrapper .course-panel-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.tabs-wrapper .course-main {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.course-header {
    background: linear-gradient(135deg, #253c81 0%, #1b4fa8 100%);
    padding: 32px 36px;
    position: relative;
    overflow: hidden;
}
.course-header::after {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.course-level-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 14px;
}
.tabs-wrapper .uk-tab a{
	font-size: 12px;
}
.course-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
    margin-top: 8px;
}

 .course-header .course-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.tabs-wrapper .course-body {
    padding: 36px;
}

.tabs-wrapper .course-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #253c81;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f2f7;
}

.tabs-wrapper .course-body p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 14px;
}

.tabs-wrapper .outcomes-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.tabs-wrapper .outcomes-list li {
    display: flex;
    gap: 12px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    align-items: flex-start;
}

.tabs-wrapper .outcomes-list li::before{
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 8px;
    background: orange;
    border-radius: 100px;
}

.tabs-wrapper .delivery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.tabs-wrapper .delivery-pill {
    background: #f0f2f7;
    border-radius: 10px;
    padding: 14px 16px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.22s;
}

.tabs-wrapper .delivery-pill:hover {
    border-color: #f59e0b;
    background: #fff;
}

.tabs-wrapper .delivery-pill-icon {
    font-size: 22px;
    margin-bottom: 6px;
}

.tabs-wrapper .delivery-pill-label {
    font-size: 16px;
    font-weight: 700;
    color: #253c81;
    margin-bottom: 3px;
}

.tabs-wrapper .delivery-pill-desc {
    font-size: 13px;
    color: #333;
}

.tabs-wrapper .courseware-box {
    background: #f0f2f7;
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 16px;
    color: #333;
    line-height: 1.65;
    border-left: 3px solid #1b4fa8;
}

.tabs-wrapper .course-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tabs-wrapper .sidebar-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(37, 60, 129, 0.09);
}

.tabs-wrapper .sidebar-card-header {
    background: #253c81;
    padding: 18px 20px;
}

.tabs-wrapper .sidebar-card-header h4 {
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0px;
    text-transform: inherit;
    font-family: 'DM Sans';
    margin-bottom: 0px;
}

.tabs-wrapper .sidebar-card-body {
    padding: 20px;
}

.tabs-wrapper .glance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
}

.tabs-wrapper .glance-item:last-child {
    border-bottom: none;
}

.tabs-wrapper .glance-item label {
    color: #6b7280;
    font-weight: 500;
}

.tabs-wrapper .glance-item value {
    color: #253c81;
    font-weight: 700;
    text-align: right;
}

.tabs-wrapper .glance-item value .badge-tag {
    background: rgba(27, 79, 168, 0.1);
    color: #1b4fa8;
    border-radius: 100px;
    padding: 2px 10px;
    font-size: 12px;
}

.tabs-wrapper .sidebar-cta-card {
    background: linear-gradient(135deg, #f59e0b 0%, #e8a020 100%);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.35);
}

.tabs-wrapper .sidebar-cta-card p {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 16px;
}

.tabs-wrapper .btn-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tabs-wrapper .el-nav li {
    padding: 12px 10px !important;
}
.tabs-wrapper .uk-tab a:hover {
    border-color: transparent;
}
.course-pathway-core h3 {
    color: #253c81 !important;
    font-size: 21px !important;
    font-weight: 500;
    text-transform: inherit;
    padding-bottom: 11px;
    border-bottom: 2px solid #253c81;
    font-family: 'Inter';
}

.course-pathway-core .uk-card-default {
    border-radius: 16px;
}
li::marker {
    color: #f59e0a;
}

.tm-header-mobile .mega-sub-menu {
    background: #333 !important;
}

#mega-menu-wrap-mobile #mega-menu-mobile > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link{
    color : #fff;
}

#mega-menu-wrap-mobile #mega-menu-mobile > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    color: #ffffff;
}
.tm-header-mobile .uk-child-width-1-1.uk-grid.uk-grid-stack {
    margin-top: 30px;
}
.consultation-form div#gform_wrapper_2 {
    background: #fff;
    padding: 30px 30px;
    border: 1px solid #ddd;
}
.consultation-form h2.gform_title {
    display: none;
}
.consultation-form p.gform_required_legend {
    display: none;
}
.consultation-form .gform-footer.gform_footer.top_label {
    justify-content: center;
}
.consultation-form input#gform_submit_button_2 {
    background: #f59e0b;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 16px;
    font-family: 'Inter';
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgb(255 204 118 / 45%);
    outline: none;
}
.consultation-form input#gform_submit_button_2:hover {
    box-shadow: 0 10px 24px #f59e0b82;
    transform: translateY(-2px);
}
.consultation-form #gform_fields_2 {
    --gf-form-gap-y: 20px !important;
    row-gap: 20px !important;
    grid-row-gap: 24px !important;
}
.consultation-form .gform_heading {
    display: none;
}
.consultation-form .gform-theme--foundation .gfield input {
    border: 1px solid #ddd;
}
.consultation-form .gform-theme--foundation .gfield textarea {
    border: 1px solid #ccc;
    outline:  none !important;
}

.consultation-form .ginput_container.ginput_container_checkbox .gfield_checkbox  {
    grid-template-columns: repeat(2, 1fr);
}
.consultation-form .gform-theme--framework .gfield--type-choice .gfield_checkbox, .gform-theme--framework .gfield--type-choice .gfield_radio {
    display: grid;
}
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    flex-direction: column;
  }

  .why-card-img {
    width: 100%;
    min-height: 200px;
    border-right: none;
    border-bottom: 1px solid #E5E7EB;
  }

  .why-card-body {
    width: 100%;
  }
	.course-panel-grid {
        grid-template-columns: 1fr !important;
     }
	.cs-stat-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Mobile - small screens */
@media (max-width: 480px) {
  .why-card-img {
    max-height: 80px;
  }

  .why-card-body h3 {
    font-size: 16px;
  }

  .why-card-body p {
    font-size: 14px;
  }
}