@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
margin: 0px;
padding: 0px;
}

body {
font-size: 15px;
font-family: "Montserrat", sans-serif!important;
font-weight: normal;
line-height: 24px !important;
color: var(--text-dark);
background-color: #ffffff;
}

:root {
--brand-orange: #e4551d;
--brand-orange-dark: #e4551d;
--navy: #1a1f2e;
--navy-light: #2d3548;
--text-dark: #1a1a1a;
--text-muted: #6b7280;
--bg-light: #f9fafb;
--bg-card: #ffffff;
--border-color: #e5e7eb;
--shadow-card: 0 4px 24px -4px rgba(0,0,0,0.08);
--shadow-elegant: 0 10px 40px -10px rgba(0,0,0,0.15);
}

* {
box-sizing: border-box;
}

.w-10 {
    width: 2em;
}
.h-10 {
    height: 2em;
}
.clar{display: block;}
.max-width{max-width: 42rem;}


/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.2;
margin-bottom: 15px;
}

h1 { font-size: 36px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }

@media (min-width: 768px) {
h1 {font-size: 45px;
        line-height: 45px;}
h1 sup {
    top: -1.2em;
}
h2 { font-size: 42px; }
h3 { font-size: 28px; }
}


span.con-icon {
    width: 30px;
    height: 30px;
    background: #e4561f;
    line-height: 30px;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
}
span.con-icon.gren {
    width: 30px;
    height: 30px;
    background: #20ab4b;
    line-height: 34px;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
}
span.con-icon.gren i {
    color: #fff;
    font-size: 18px;
}

.navbar-brand img {
    max-width: 220px;
}

.navbar .btn-cta-primary {
    background-color: var(--brand-orange);
    color: #ffffff;
    border: none;
    padding: 5px 15px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 2px solid #e4551d;
}

.text-brand { color: var(--brand-orange); }
.text-muted-custom { color: var(--text-muted); }

/* ========== Buttons ========== */
.btn-cta-primary {
    background-color: var(--brand-orange);
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(240, 100, 33, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #e4551d;
}
.btn-cta-primary:hover,
.btn-cta-primary:focus {
background-color: var(--brand-orange-dark);
color: #ffffff;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(240, 100, 33, 0.4);
}

.btn-cta-secondary {
background-color: transparent;
color: var(--brand-orange);
border: 2px solid var(--brand-orange);
padding: 8px 15px;
font-size: 15px;
font-weight: 600;
border-radius: 12px;
transition: all 0.3s ease;
}

.btn-cta-secondary:hover,
.btn-cta-secondary:focus {
background-color: rgba(240, 100, 33, 0.1);
color: var(--brand-orange);
border: 2px solid var(--brand-orange);
}

.btn-cta-support {
    background-color: #25D366;
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid #25D366;
}

.btn-cta-support:hover {
background-color: #1da851;
color: #ffffff;
}

.btn-cta-exploration {
background-color: transparent;
color: var(--brand-orange);
border: none;
padding: 12px 24px;
font-size: 16px;
font-weight: 600;
transition: all 0.3s ease;
}

.btn-cta-exploration:hover {
color: var(--brand-orange-dark);
text-decoration: underline;
}

/* ========== Cards ========== */
.card-custom {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 24px;
transition: all 0.3s ease;
}

.card-custom:hover {
box-shadow: var(--shadow-card);
border-color: rgba(240, 100, 33, 0.3);
}

.icon-box {
width: 56px;
height: 56px;
background: rgba(240, 100, 33, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 16px;
}

.icon-box i {
font-size: 24px;
color: var(--brand-orange);
}

/* ========== Sections ========== */
section {
padding: 60px 0;
}

@media (min-width: 768px) {
section {
padding: 80px 0;
}
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 830px;
    margin: 0 auto;
}

/* Submenu Position */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}

/* Optional caret icon alignment */
.dropdown-submenu > a::after {
  float: right;
  margin-left: .5rem;
}

/* ========== Hero Section ========== */
#hero {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    background: url(../images/banner-img.jpg) center left / cover no-repeat;
    color: #000;
    padding: 70px 0 50px;
    margin-top: 30px;
}
.hero-overlay {
    background: linear-gradient(100deg, #ffffff 50%, #00000000 60%);
    height: 100%;
    position: absolute;
    right: 0;
    opacity: inherit;
    top: 0;
    width: 100%;
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
margin-bottom: 0px;
}

.hero-badge i {
color: var(--brand-orange);
}

.hero-badge span {
font-weight: 500;
font-size: 14px;
}

.hero-content h1 {
margin-bottom: 20px;
}

.hero-content .lead {
    font-size: 22px;
    color: #4b4b4b;
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-content .description {
font-size: 17px;
color: var(--text-muted);
margin-bottom: 20px;
line-height: 1.7;
}

.hero-cta {
margin-bottom: 20px;
}

.hero-cta .btn {
margin-right: 12px;
margin-bottom: 12px;
}

.highlight-card {
background: rgba(255,255,255,0.9);
backdrop-filter: blur(10px);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 16px;
margin-bottom: 12px;
display: flex;
align-items: flex-start;
gap: 12px;
transition: all 0.3s ease;
}
.highlight-card svg {
    color: #f06421;
}
.highlight-card:hover {
background: #ffffff;
}

.highlight-card i {
font-size: 22px;
color: var(--brand-orange);
flex-shrink: 0;
margin-top: 2px;
}

.highlight-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 0;
}

.highlight-card p {
font-size: 12px;
color: var(--text-muted);
margin: 0;
line-height: 1.5;
}

/* ========== Stats Section ========== */
#gold-standard {
background: #ffffff;
}

.stat-card {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 30px 20px;
text-align: left;
transition: all 0.3s ease;
margin-bottom: 24px;
}

.stat-card:hover {
box-shadow: var(--shadow-card);
}

.stat-card i {
font-size: 36px;
color: var(--brand-orange);
margin-bottom: 16px;
}

.stat-card .number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    margin-top: 15px;
}

.stat-card .label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    padding: initial;
}

.stat-card .desc {
font-size: 14px;
color: var(--text-muted);
margin: 0;
}

.career-highlight-box {
background: rgba(249, 250, 251, 0.5);
border: 1px solid var(--border-color);
border-radius: 24px;
padding: 40px;
text-align: center;
    margin-top: 20px;
}

.career-highlight-box h3 {
font-size: 24px;
margin-bottom: 16px;
margin-top: 0;
}

@media (min-width: 768px) {
.career-highlight-box h3 {
font-size: 28px;
}
}

/* ========== Features Section ========== */
#why-cl {
background: #ffffff;
}

.feature-card {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 32px;
height: 100%;
transition: all 0.3s ease;
}

.feature-card:hover {
box-shadow: var(--shadow-card);
border-color: rgba(240, 100, 33, 0.3);
}

.feature-card:hover .icon-box{
background: #ffddd3;
}

.feature-card h4 {
font-size: 18px;
font-weight: 600;
margin-bottom: 12px;
}

.feature-card p {
color: var(--text-muted);
margin: 0;
}

/* ========== Programs Section ========== */
#programs {
background: #ffffff;
}

.nav-tabs-custom {
    border: none;
    display: flex;
    justify-content: center;
    background: #f5f5f5;
    padding: 10px 0px;
    max-width: 385px;
    margin: 0 auto 40px;
    border-radius: 5px;
}

.nav-tabs-custom > li {
margin: 0;
}

.nav-tabs-custom > li > button {
    border: none;
    border-radius: 5px;
    padding: 6px 35px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-light);
    margin: 0 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 0px !important;
        box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
}

.nav-tabs-custom > li > a:hover {
background: rgba(240, 100, 33, 0.1);
color: var(--brand-orange);
}

.nav-tabs-custom > li.active > a,
.nav-tabs-custom > li.active > a:hover,
.nav-tabs-custom > li.active > a:focus {
background: var(--brand-orange);
color: #ffffff;
border: none;
}

.program-title {
text-align: center;
font-size: 24px;
margin-bottom: 32px;
}

@media (min-width: 768px) {
.program-title {
font-size: 28px;
}
}

.program-card {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 20px;
margin-bottom: 16px;
display: flex;
align-items: flex-start;
gap: 16px;
transition: all 0.3s ease;
}

.program-card:hover {
border-color: rgba(240, 100, 33, 0.5);
}

.program-card .icon-box {
flex-shrink: 0;
margin-bottom: 0;
}

.program-card h4 {
font-size: 18px;
font-weight: 600;
margin-bottom: 8px;
}

.program-card p {
color: var(--text-muted);
margin: 0;
font-size: 15px;
}

.program-cta {
text-align: center;
margin-top: 32px;
}

.program-cta .btn {
margin: 0 8px 12px;
}

.counsellor-box {
text-align: center;
margin-top: 40px;
padding-top: 32px;
border-top: 1px solid var(--border-color);
}

.counsellor-box p {
color: var(--text-muted);
margin-bottom: 16px;
}

/* ========== Career Outcomes Section ========== */
#careers {
background: #ffffff;
}

.career-card {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 30px 20px;
height: 100%;
transition: all 0.3s ease;
}

.career-card:hover {
box-shadow: var(--shadow-elegant);
border-color: rgba(240, 100, 33, 0.3);
}

.career-card:hover .icon-box{
 background: #ffddd3;
}


.career-card h4 {
font-size: 18px;
font-weight: 600;
margin-bottom: 12px;
}

.career-card .desc {
color: var(--text-muted);
margin-bottom: 16px;
font-size: 15px;
}

.career-card .employers {
padding-top: 16px;
border-top: 1px solid var(--border-color);
}

.career-card .employers label {
font-size: 12px;
font-weight: 500;
color: var(--text-muted);
margin-bottom: 8px;
display: block;
}

.career-card .employer-tag {
    display: inline-block;
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
    margin: 4px 4px 4px 0;
}

.salary-box {
    background: rgba(249, 250, 251, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 40px 26px;
    text-align: center;
    margin-bottom: 32px;
    margin-top: 40px;
}
.salary-box h3 {
font-size: 24px;
margin-bottom: 16px;
}

h4.panel-title {
    margin-bottom: 0px;
}

@media (min-width: 768px) {
.salary-box h3 {
font-size: 28px;
}
}

.salary-card {
background: rgba(255,255,255,0.5);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 24px;
margin-bottom: 16px;
}

.salary-card .amount {
font-size: 28px;
font-weight: 700;
color: var(--brand-orange);
margin-bottom: 8px;
}

.salary-card .level {
font-size: 14px;
color: var(--text-muted);
}

/* ========== FAQ Section ========== */
#faq {
background: #ffffff;
}
#faq .accordion-item:not(:first-of-type) {
    border-top: 1px solid #dee2e6;
}
#faq .accordion-item {
    margin-bottom: 20px;
    border-radius: 15px;
}
#faq .accordion-button {
    background: none;
    border-bottom: 0px;
    box-shadow: none !important;
    font-weight: 600;
}
#faq .accordion-button:not(.collapsed) {
    color: #e4551d;
   }

.faq-contact-box {
background: rgba(249, 250, 251, 0.5);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 32px;
text-align: center;
margin-top: 40px;
}

.faq-contact-box h4 {
font-size: 22px;
margin-bottom: 12px;
}

.faq-contact-box p {
color: var(--text-muted);
margin-bottom: 24px;
}

.faq-contact-box .btn {
margin: 0 8px 12px;
}

/* ========== CTA Footer ========== */
#cta-footer {
background: #ffffff;
border-top: 1px solid var(--border-color);
position: relative;
overflow: hidden;
}

#cta-footer:before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 300px;
height: 300px;
background: var(--brand-orange);
border-radius: 50%;
opacity: 0.05;
filter: blur(60px);
}

#cta-footer:after {
content: '';
position: absolute;
bottom: -100px;
left: -100px;
width: 400px;
height: 400px;
background: var(--brand-orange);
border-radius: 50%;
opacity: 0.05;
filter: blur(60px);
}

.cta-content {
position: relative;
z-index: 1;
text-align: center;
}

.cta-content .icon-large {
font-size: 56px;
color: var(--brand-orange);
margin-bottom: 24px;
}

.cta-content h2 {
margin-bottom: 16px;
}

.cta-content .lead {
font-size: 18px;
color: var(--text-muted);
margin-bottom: 32px;
line-height: 1.7;
}

.value-props {
margin-bottom: 40px;
}

.value-prop-card {
background: rgba(249, 250, 251, 0.5);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 24px;
text-align: center;
margin-bottom: 16px;
}

.value-prop-card i {
font-size: 28px;
color: var(--brand-orange);
margin-bottom: 12px;
}

.value-prop-card p {
    font-weight: 500;
    margin: 10px 0 0;
}

.cta-buttons {
margin-bottom: 24px;
}

.cta-buttons .btn {
margin: 0 8px 12px;
}

.cta-content .subtext {
font-size: 14px;
color: var(--text-muted);
}

/* ========== Compliance Footer ========== */
.compliance-footer {
margin-top: 60px;
padding-top: 32px;
border-top: 1px solid var(--border-color);
position: relative;
z-index: 1;
}

.compliance-footer p {
font-size: 12px;
color: var(--text-muted);
text-align: center;
line-height: 1.8;
}

/* ========== Utilities ========== */
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-32 { margin-top: 32px !important; }

.max-w-800 {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.max-w-1000 {
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.animate-fade-in {
animation: fadeInUp 0.6s ease forwards;
}


/* Bottom fix bar */

.bottom-offer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 2px solid #ff6b47;
    padding: 12px 20px;
   
    z-index: 9999;
}
.ready-start {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.bottom-offer-bar p {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
}

.btn-group-offer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-offer {
    font-size: 35px;
    cursor: pointer;
}

/* Bottom fix bar */

.btnotp {
    background: #e85222;
    position: absolute;
    right: 5px;
    top:4px;
    border: inherit;
    padding: 3px 8px;
    border-radius: 3px 3px 3px 3px;
    color: #fff;
    font-size: 14px;
}
.credential label {
    font-size: .795rem;
    padding-bottom: 5px;
}
input::placeholder {
  font-size: 13px;
  color: #666;
  opacity: 1; /* important for Firefox */
}
.credential .form-select {
font-size: .795rem;}

.flatpickr-calendar {
font-size: 15px; /* Improve UI */
}

.arrow {
display: inline-block;
transition: transform 0.3s ease;
font-size: 18px;
line-height: 1;
}

.arrow.rotate {
transform: rotate(180deg);
}

.partner-card {
    border: 1px solid #ffded2;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0px 8px 20px rgba(255, 150, 120, 0.15);
    max-width: 450px;
    margin: auto;
    text-align: center;
}
.icon-circle {
width: 80px;
height: 80px;
background: #ffe7df;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: auto;
font-size: 32px;
color: #ff6433;
margin-bottom: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 40px;
}
.partner-card h3 {
    font-size: 1.5rem;
}
.credential .modal-dialog {
    width: 400px;
}
/* ========== Responsive ========== */
@media (max-width: 767px) {
section {
padding: 40px 0;
}

h1 { font-size: 28px; }
h2 { font-size: 26px; }
h3 { font-size: 20px; }

.hero-content .lead {
font-size: 18px;
}

.hero-content .description {
font-size: 15px;
}

.btn-cta-primary,
.btn-cta-secondary {
display: block;
width: 100%;
margin-right: 0;
}

.nav-tabs-custom > li {
        width: 48%;
    }

.nav-tabs-custom > li > a {
padding: 12px 16px;
font-size: 14px;
}

.hero-overlay {
background: linear-gradient(100deg, #ffffff 50%, #fbfbfbfa 60%);
}
.clar {
display: inline;
}
h1 {
font-size: 24px;
}
#hero {
padding: 60px 0 20px;
margin-top: 30px;
}
.nav-tabs-custom {
padding: 10px 5px;
max-width: 100%;
gap: 10px;
}
.nav-tabs-custom > li > button {
padding: 6px 10px;
font-size: 14px;    
width: 100%;
}
.width-100{width: 100%;}
.close-offer {
    left: 10px;
    font-size: 26px;
}
.hide-mob{display: none;}
.btn-group-offer span{display: none;}
.bottom-offer-bar p {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}
.bottom-offer-bar {
    text-align: center;
    gap: 5px;
    padding: 12px 10px;
}
.credential .modal-dialog {
        width: 96%;
    }
.salary-box {
padding: 40px 15px 26px;
}
.cta-buttons .btn {
    margin: 0 0px 12px;
}
.ready-start {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

}
