
:root {
  --o:  #f26a23;   /* brand orange */
  --ol: #F47B44;   /* orange light */
  --od: #B8471A;   /* orange dark  */
  --w:  #FFFFFF;
  --ow: #F8F5F0;   /* off-white */
  --ow: #F2EDE5;   /* cream */
  --db: #1A1A1A;   /* near-black */
  --db: #1C2B20;   /* dark green (hero bg) */
  --db: #2D2D2D;   /* charcoal */
  --gr: #6B6B6B;   /* grey text */
  --lg: #E8E4DF;   /* light grey border */
  --fd: 'Playfair Display', serif;
  --fb: 'DM Sans', sans-serif;
   --ju-orange: #F4640A;
    --ju-orange-dark: #d6540a;
    --ju-charcoal: #393939;
    --ju-text: #4a4a4a;
    --ju-bg: #FAFAFA;
    --ju-border: #EAEAEA;
}

.bg-orange{
  background-color:var(--o);
}

/* -----------------------------------------------------------
   2. Reset & Base
   ----------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fb);
  background: var(--w);
  color: var(--db);
  overflow-x: hidden;
  isolation: isolate;
}

h2 {
    font-size: 40px;
}

/* -----------------------------------------------------------
   3. Accessibility — Skip Link
   ----------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--o);
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  z-index: 10000;
  transition: top .15s;
}
ul>li{
  list-style-type:none;
}
.bg-dark{
  background-color:var(--db) !important;
}
.bg-white{
  background-color:var(--w) !important;
}
.text-dark{
  color:var(--db) !important;
}
.d-block{
  display:block;
}
.mt-2{
  margin-top:14px;
}
.mt-3{
  margin-top:20px;
}

.widget_container{
    padding: 0px !important;
}

.sticky-cta.change-sta {
       position: static;
    width: fit-content;
    padding: 14px 34px;
    margin: 0 auto;
    margin-top: 35px;
}
.text-center{
  text-align:center;
}

.widget_container{
  padding:0 !important;
}

.hero-form-wrap iframe, .modal-overlay iframe, #counseling iframe {
    height: 542px;
}

.skip-link:focus {
  top: 16px;
}

.w-100{
  width:100%;
}

.accred-item {
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 10px;
    border-radius: 10px;
}

.accred-item span {
    color: var(--db);
    font-weight: 500;
}


/* -----------------------------------------------------------
   4. Focus Styles (WCAG 2.4.7)
   ----------------------------------------------------------- */
.sticky-cta:focus-visible,
.nav-cta:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-form:focus-visible,
.spec-apply-btn:focus-visible,
.modal-submit-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.field-input:focus-visible,
.modal-input:focus-visible {
  outline: 2px solid var(--o);
  outline-offset: 0;
}

/* -----------------------------------------------------------
   5. Accreditation Bar
   ----------------------------------------------------------- */
.accred-bar {
  padding: 40px 0;
  border-bottom: 1px solid #fff;
  overflow: hidden;
}

#accredation-approval {
    margin-top: 30px;
}

.mt-1{
  margin-top:10px;
}


#accredation-approval .carousel-track{
  align-items:center;
}

.accred-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px;
}
/* .accred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--db);
  font-weight: 500;
  white-space: nowrap;
} */

.accred-item{
  text-align:center;
}

.accred-badge {
  background: var(--o);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: .5px;
}

/* -----------------------------------------------------------
   6. Navigation
   ----------------------------------------------------------- */
nav {
  background: var(--w);
  border-bottom: 1px solid var(--lg);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.logo {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 900;
  color: var(--db);
  text-decoration: none;
}
.logo span {
  color: var(--o);
}
.text-white{
  color:#fff;
}
.nav-cta {
  background: var(--o);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover {
  background: var(--od);
}

/* -----------------------------------------------------------
   7. Hero Section
   ----------------------------------------------------------- */
.hero {
  background:url('../assets/images/slider-1.webp');
  background-repeat:no-repeat;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
 background: #2d2d2deb;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.d-flex{
  display:flex;
}
.align-items-center{
  align-items:center;
}
.gap-2{
  gap:10px;
}

.font-13{
  font-size:13px;
}

.hero-btns {
    margin-top: 28px;
}

.crse {
    background: #fff;
    padding: 10px 15px;
    border-radius: 7px;
    font-size: 17px;
    font-weight: 600;
}

.hero-content {
  padding: 0px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.btn
 {
    background: var(--o);
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .15s;
    width: fit-content;
}

.mt-3 {
    margin-top: 15px;
}

/* Eyebrow label (reused across sections) */
.eyebrow {
  color: var(--o);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--fd);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--w);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 .highlight {
  color: var(--o);
  font-style: italic;
}

.float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--o);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(224, 92, 32, .4);
    z-index: 999;
    display: flex;
    /* align-items: center; */
    gap: 8px;
    transition: transform .2s, box-shadow .2s;
    transform: rotate(90deg);
    bottom: 43%;
    right: -35px;
    /* top: 0; */
    margin: 0;
    width: fit-content;
}

/* Hero badge pills */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 23px;
  margin-top: 44px;
}
.badge-pill {
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-pill::before {
  content: '✦';
  color: var(--o);
  font-size: 10px;
}

/* Hero fee highlight box */
.hero-fee-box {
  display: inline-block;
  background: rgba(224,92,32,.15);
  border: 1px solid rgba(224,92,32,.4);
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 28px;
  width: fit-content;
  margin-top: 21px;
}
.hero-fee-text {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.hero-desc {
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* -----------------------------------------------------------
   8. Buttons
   ----------------------------------------------------------- */
.btn-primary {
  background: var(--o);
  color: #fff;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover {
  background: var(--od);
  transform: translateY(-1px);
}
.btn-primary .sub {
  font-size: 11px;
  font-weight: 400;
  opacity: .85;
}
.btn-primary--nowrap {
  white-space: nowrap;
}

.btn-secondary {
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover {
  border-color: var(--o);
  background: rgba(224,92,32,.1);
}
.btn-secondary .sub {
  font-size: 11px;
  font-weight: 400;
  opacity: .7;
}

/* -----------------------------------------------------------
   9. Hero Form Panel
   ----------------------------------------------------------- */
.hero-form-wrap {
  background: var(--w);
  padding: 20px 25px;
  position: relative;
  z-index: 2;
  box-shadow: -8px 0 40px rgba(0,0,0,.3);
}
.form-eyebrow {
  color: var(--o);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-title {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--db);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 13px;
  color: var(--gr);
  margin-bottom: 0px;
  line-height: 1.5;
}


/* Form fields */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.field-full {
  margin-bottom: 12px;
}
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--db);
  margin-bottom: 6px;
}
.field-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--lg);
  border-radius: 7px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--db);
  background: var(--w);
  transition: border-color .2s;
  outline: none;
}
.field-input:focus {
  border-color: var(--o);
}
.field-input::placeholder {
  color: #BBBBB8;
}

.btn-form {
  width: 100%;
  background: var(--o);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.btn-form:hover {
  background: var(--od);
}
.form-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--gr);
  margin-top: 10px;
}
.fees-note {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: var(--o);
  font-weight: 600;
}
.program-title{
  margin-bottom:20px !important;
}
.text-white{
  color:#fff !important;
}
/* -----------------------------------------------------------
   10. Stats Bar
   ----------------------------------------------------------- */
.stats-bar {
  background: var(--o);
  padding: 32px 40px;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  color: #fff;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.3);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--fd);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  opacity: .85;
  font-weight: 400;
}

/* -----------------------------------------------------------
   11. Shared Section Styles
   ----------------------------------------------------------- */
section {
  padding: 60px 40px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  color: var(--o);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--fd);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  color: var(--db);
  line-height: 1.2;
  margin-bottom: 35px;
}
.section-title .italic {
  color: var(--o);
  font-style: italic;
}
.mb-2{
  margin-bottom:10px;
}

.section-desc {
  font-size: 16px;
  color: var(--db);
  line-height: 1.7;
  margin-bottom: 48px;
}
.section-desc--mb40 {
  margin-bottom: 40px;
}

#accredation-approval .slide-card>img {
    margin: 0 auto;
    display: block;
}
#accredation-approval .slide-card{
  text-align:center;
}
.accred-bar .carousel-dots {
    margin-top: 25px;
}
/* -----------------------------------------------------------
   12. Program Section
   ----------------------------------------------------------- */
.program-section {
  background: var(--ow);
}
.program-text {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.program-text .section-title {
  font-size: 38px;
}
.program-text p {
  font-size: 16px;
  color: var(--gr);
  line-height: 1.6;
  margin-top: 20px;
}
p{
    line-height: 1.6;
}
.program-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--db);
  margin-bottom: 16px;
}

.npfWidgetButton {
padding-left: 11px !important;
flex: right;
position: fixed !important;
right: -50px !important;
transform: rotate(270deg) !important;
top: 50% !important;
background-color: #17a43b !important;
z-index: 999999;
border-radius: 5px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
font-size: 18px;
color: #fff;
line-height: 1.33;
padding: 8px 18px;
font-weight: bold;
cursor: pointer;
border: 0;
}

.npfWidget-092307e344efcebf5d81a9df177e0ff2.npfWidgetButton {
padding-left: 11px !important;
flex: right;
position: fixed !important;
right: -52px !important;
transform: rotate(270deg) !important;
top: 50% !important;
background-color: #038137 !important;
z-index: 999999;
border-radius: 5px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
font-size: 18px;
color: #fff;
line-height: 1.33;
padding: 8px 18px;
font-weight: bold;
cursor: pointer;
border: 0;
}

npfTitle-092307e344efcebf5d81a9df177e0ff2 {
font-size: 22px;
text-align: center;
}
.npfTitle-092307e344efcebf5d81a9df177e0ff2 {
font-size: 20px;
text-align: center;
color: #000;
}
div#popup-092307e344efcebf5d81a9df177e0ff2 {
z-index: 99999;
}
@media(max-width:768px){
.npfWidget-092307e344efcebf5d81a9df177e0ff2.npfWidgetButton {
right: -52px;
z-index: 99999;
}
}

/* -----------------------------------------------------------
   13. Specialisation Cards
   ----------------------------------------------------------- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spec-card {
  background: var(--w);
  border: 1.5px solid var(--lg);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: pointer;
}
.spec-card:hover {
  border-color: var(--o);
  box-shadow: 0 8px 32px rgba(224,92,32,.12);
  transform: translateY(-3px);
}
.spec-icon {
  width: 48px;
  height: 48px;
  background: var(--ow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.spec-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--db);
  margin-bottom: 8px;
}
.spec-card p {
  font-size: 13px;
  color: var(--gr);
  line-height: 1.6;
  margin-bottom: 14px;
}
.spec-tag {
  display: inline-block;
  background: var(--ow);
  color: var(--o);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(224,92,32,.2);
}
.spec-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--lg);
  font-size: 18px;
  transition: color .2s;
}
.spec-card:hover .spec-arrow {
  color: var(--o);
}
.spec-apply-btn {
  display: block;
  width: 100%;
  margin-top: 14px;
  background: var(--o);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 0;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.spec-apply-btn:hover {
  background: var(--od);
  transform: translateY(-1px);
}

/* -----------------------------------------------------------
   14. Advantage Cards
   ----------------------------------------------------------- */
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.adv-card {
  background: var(--ow);
  border: 1.5px solid var(--lg);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .2s, box-shadow .2s;
}
.adv-card:hover {
  border-color: var(--o);
  box-shadow: 0 4px 20px rgba(224,92,32,.09);
}
.adv-icon {
  width: 44px;
  height: 44px;
  background: var(--ow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  flex-shrink: 0;
}
.adv-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--db);
  margin-bottom: 6px;
}
.adv-text p {
  font-size: 13px;
  color: var(--gr);
  line-height: 1.6;
}

/* -----------------------------------------------------------
   15. Steps / Timeline
   ----------------------------------------------------------- */
.steps-section {
  background: var(--ow);
}
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 48px;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--o);
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--o);
  background: var(--w);
  color: var(--o);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background .2s, color .2s;
}
.step-item:first-child .step-circle {
  background: var(--o);
  color: #fff;
}
.step-item:hover .step-circle {
  background: var(--o);
  color: #fff;
}
.step-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--db);
  margin-bottom: 8px;
}
.step-item p {
  font-size: 13px;
  color: var(--gr);
  line-height: 1.6;
}

/* -----------------------------------------------------------
   16. Credential / Certificate Section
   ----------------------------------------------------------- */
.credential-section {
  background: var(--ow);
}
.credential-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.cred-gray-txt {
  font-size: 15px;
  color: var(--gr);
  line-height: 1.7;
  margin-bottom: 24px;
}
.cred-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cred-list li {
  display: flex;
  gap: 14px;
}
.cred-num {
  width: 32px;
  height: 32px;
  background: var(--o);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cred-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--db);
  margin-bottom: 4px;
}
.cred-text p {
  font-size: 13px;
  color: var(--gr);
  line-height: 1.6;
}

/* Certificate mockup */
.cert-mockup {
  background: var(--w);
  border: 1.5px solid var(--lg);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 12px 48px rgba(0,0,0,.1);
  position: relative;
  overflow: hidden;
}
.cert-mockup::before {
  content: 'SAMPLE';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  color: var(--lg);
  font-weight: 700;
  letter-spacing: 2px;
}
.cert-university {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 900;
  color: #1A3A8F;
  margin-bottom: 4px;
}
.cert-location {
  font-size: 12px;
  color: var(--gr);
  margin-bottom: 12px;
}
.cert-ugc-badge {
  display: inline-block;
  border: 1px solid var(--o);
  color: var(--o);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 24px;
  letter-spacing: .5px;
}
.cert-certify {
  font-size: 13px;
  color: var(--gr);
  text-align: center;
  margin-bottom: 8px;
}
.cert-name {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 700;
  color: var(--db);
  text-align: center;
  margin-bottom: 4px;
}
.cert-parent {
  font-size: 12px;
  color: var(--gr);
  text-align: center;
  margin-bottom: 12px;
}
.cert-award {
  font-size: 13px;
  color: var(--gr);
  text-align: center;
  margin-bottom: 4px;
}
.cert-degree {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: #1A3A8F;
  text-align: center;
  margin-bottom: 4px;
}
.cert-spec {
  font-style: italic;
  font-size: 13px;
  color: #1A3A8F;
  text-align: center;
  margin-bottom: 20px;
}
.cert-seal {
  width: 48px;
  height: 48px;
  background: var(--od);
  border-radius: 50%;
  margin: 0 auto 20px;
}
.cert-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gr);
  padding-top: 16px;
  border-top: 1px solid var(--lg);
}
.cert-foot-center {
  text-align: center;
}
.cert-foot-mode {
  font-size: 11px;
  color: var(--gr);
}

/* -----------------------------------------------------------
   17. Virtual Campus / Video Cards
   ----------------------------------------------------------- */
.virtual-section {
  background: var(--db);
}
.virtual-section .section-title {
  color: var(--w);
}
.virtual-section .section-desc {
  color: rgba(255,255,255,.6);
}
.virtual-section .section-eyebrow {
  color: var(--o);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.justify-content-center{
  justify-content:center;
}

/* .video-card:nth-child(1) { background: linear-gradient(135deg, #4B2060 0%, #2D1040 100%); }
.video-card:nth-child(2) { background: linear-gradient(135deg, #5C1A1A 0%, #2D0D0D 100%); }
.video-card:nth-child(3) { background: linear-gradient(135deg, #7A3A10 0%, #4A1A05 100%); } */
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: var(--o);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: transform .2s, background .2s;
}
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--od);
}
.video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 100%);
}
.video-label h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.video-label p {
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

/* -----------------------------------------------------------
   18. LMS Platform Cards
   ----------------------------------------------------------- */
.lms-section {
  background:var(--db);
}
.lms-section .section-title {
  color: var(--w);
}
.lms-section .section-eyebrow {
  color: var(--o);
}
.lms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lms-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.lms-card:nth-child(1) { background: linear-gradient(135deg, #5C2090 0%, #2D1060 100%); }
.lms-card:nth-child(2) { background: linear-gradient(135deg, #901A1A 0%, #400808 100%); }
.lms-card:nth-child(3) { background: linear-gradient(135deg, #8A4010 0%, #502010 100%); }
.lms-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: var(--o);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.lms-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, transparent 100%);
}
.lms-label h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.lms-label p {
  color: rgba(255,255,255,.6);
  font-size: 12px;
}

/* -----------------------------------------------------------
   19. Testimonials
   ----------------------------------------------------------- */
.testimonials-section {
  background: var(--w);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--w);
  border: 1.5px solid var(--lg);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
  height:100%;
}

.testimonials-section .carousel-dots {
    margin-top: 34px;
}

.testi-card:hover {
  border-color: var(--o);
  box-shadow: 0 4px 20px rgba(224,92,32,.09);
}
.testi-quote {
  font-size: 36px;
  line-height: 1;
  color: var(--lg);
  font-family: var(--fd);
  margin-bottom: 12px;
}
.testi-stars {
  color: var(--o);
  font-size: 16px;
  margin-bottom: 14px;
}
.testi-text {
  font-size: 14px;
  color: var(--gr);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--o);
}
.testi-batch {
  font-size: 13px;
  color: var(--gr);
}

/* -----------------------------------------------------------
   20. Recruiters
   ----------------------------------------------------------- */
.recruiters-section {
  background: var(--ow);
}
.recruiters-inner {
  text-align: center;
  margin: 0 auto;
}
.recruiters-inner .section-title {
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.recruiters-inner .section-desc {
  margin: 12px auto 40px;
  max-width: 560px;
}
.recruiter-logos {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid var(--lg);
  border-bottom: 1px solid var(--lg);
}
.recruiter-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--db);
  opacity: .75;
  transition: opacity .2s, color .2s;
}
.recruiter-logo:hover {
  opacity: 1;
  color: var(--o);
}
.recruiter-logo.infosys  { color: #007CC3; }
.recruiter-logo.jellyfish { color: #1D7BBD; }
.recruiter-logo.sp       { color: #D41F2C; }
.recruiter-logo.axis     { color: #810017; }
.recruiter-logo.bosch    { color: #EA0016; }

/* -----------------------------------------------------------
   21. FAQ Section
   ----------------------------------------------------------- */
.faq-section {
  background: var(--w);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.faq-card {
  background: var(--w);
  border: 1.5px solid var(--lg);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color .2s;
}
.faq-card:hover {
  border-color: var(--o);
}
.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--o);
  margin-bottom: 10px;
}
.faq-a {
  font-size: 14px;
  color: var(--gr);
  line-height: 1.7;
}

/* -----------------------------------------------------------
   22. Urgency Bar & Countdown
   ----------------------------------------------------------- */
.urgency-bar {
  background: var(--db);
  padding: 20px 40px;
}
.urgency-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
}
.urgency-text .eyebrow {
  color: var(--o);
  font-size: 11px;
  margin-bottom: 6px;
}
.urgency-text h2 {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 700;
  color: var(--w);
  line-height: 1.2;
}
.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.countdown-unit {
  text-align: center;
}
.countdown-num {
  font-family: var(--fd);
  font-size: 36px;
  font-weight: 900;
  color: var(--o);
  line-height: 1;
  display: block;
  min-width: 52px;
  will-change: contents;
}
.countdown-label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.countdown-sep {
  color: var(--o);
  font-size: 28px;
  font-weight: 900;
  align-self: flex-start;
  margin-top: 4px;
}

/* -----------------------------------------------------------
   23. Final CTA Section
   ----------------------------------------------------------- */
.final-cta {
  background: var(--db);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(224,92,32,.15) 0%, transparent 60%);
}
.final-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.final-cta .eyebrow {
  color: var(--o);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.final-cta h2 {
  font-family: var(--fd);
  font-size: 40px;
  font-weight: 900;
  color: var(--w);
  margin-bottom: 20px;
  line-height: 1.2;
}
.final-cta h2 .italic {
  color: var(--o);
  font-style: italic;
}
.final-cta p {
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-pill {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cta-form-card {
  background: var(--w);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.cta-form-card .form-title {
  font-size: 24px;
}
.cta-form-card .section-eyebrow {
  margin-bottom: 4px;
}

/* -----------------------------------------------------------
   24. Footer
   ----------------------------------------------------------- */
footer {
  background: var(--db);
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
}
footer .logo {
  color: var(--w);
  font-size: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-legal {
  margin-top: 8px;
}

/* -----------------------------------------------------------
   25. Sticky CTA Button
   ----------------------------------------------------------- */

/* -----------------------------------------------------------
   26. Modal
   ----------------------------------------------------------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay--open {
  display: flex;
}
.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow-y: auto;
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #888;
  line-height: 1;
}
.modal-eyebrow {
  color: var(--o);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.modal-title {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--db);
  margin-bottom: 4px;
}
.modal-sub {
  font-size: 13px;
  color: var(--gr);
  margin-bottom: 6px;
}
.modal-fee-box {
  background: #FFF8F5;
  border: 1px solid rgba(224,92,32,.2);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--db);
}
.modal-field-wrap {
  margin-bottom: 12px;
}
.modal-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--db);
  margin-bottom: 6px;
}
.modal-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--lg);
  border-radius: 7px;
  font-size: 14px;
  outline: none;
  font-family: var(--fb);
}
.modal-input:focus {
  border-color: var(--o);
}
.modal-select-wrap {
  margin-bottom: 20px;
}
.modal-submit-btn {
  width: 100%;
  background: var(--o);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--fb);
  transition: background .2s;
}
.modal-submit-btn:hover {
  background: var(--od);
}
.modal-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--gr);
  margin-top: 10px;
}

/* -----------------------------------------------------------
   27. Utility Classes
   ----------------------------------------------------------- */
.txt-o  { color: var(--o);  }
.txt-gr { color: var(--gr); }
.txt-w  { color: var(--w);  }
.txt-dk { color: var(--db); }
.bg-ow  { background: var(--ow); }

.section-desc.text-white {
    color: rgba(255, 255, 255, .6);
}

/* carousel css */

.carousel-wrap {
    width: 100%;
    padding-bottom: 4px
}

.carousel-viewport {
    width: 100%;
    overflow: hidden
}

.testimonial .carousel-viewport {
    padding-top: 100px
}

.awrad-content > ul > li {
    background-color: var(--navy);
    color: #fff;
    padding: 10px;
    margin-bottom: 18px;
    border-radius: 5px;
    width: fit-content
}

a, li {
    color: #01366a
}

.carousel-track {
    display: flex;
    gap: 14px;
    cursor: grab;
    user-select: none;
    will-change: transform
}

    .carousel-track .slide-card {
        flex: 0 0 auto
    }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 10px
}

    .carousel-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        background: #ccc;
        cursor: pointer;
        padding: 0;
        transition: background .25s,transform .25s
    }

        .carousel-dots .dot.active {
            background: #1f4b9c;
            transform: scale(1.3)
        }

      .card-icon .accre-img {
    width: 190px;
    margin: 0 auto;
}

.testi-avatar >img {
    width: 100%;
    border-radius: 50%;
}

.copyright {
    background-color:var(--db) !important;
    padding: 16px;
}

 .close-btn{
  display:none;
 }

/* carousel css */
/* -----------------------------------------------------------
   28. Responsive — Mobile ≤ 900px
   ----------------------------------------------------------- */
@media (max-width: 900px) {
  .hero                   { grid-template-columns: 1fr; }
  .hero-form-wrap         { padding: 18px; }
  .stats-inner            { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .spec-grid              { grid-template-columns:1fr; }
  .advantage-grid         { grid-template-columns: 1fr; }
  .steps-timeline         { grid-template-columns: 1fr; gap: 32px; }
  .steps-timeline::before { display: none; }
  .credential-inner       { grid-template-columns: 1fr; }
  .video-grid,
  .lms-grid,
  .testimonials-grid,
  .faq-grid               { grid-template-columns: 1fr; }
  .urgency-inner          { grid-template-columns: 1fr; gap: 20px; }
  .final-cta-inner        { grid-template-columns: 1fr; }
  nav                     { padding: 14px 20px; }
  section                 { padding: 35px 20px; }
  .hero-content           { padding: 0 }
  .stats-bar              { padding: 32px 20px; }
}
@media(max-width:767.98px){
  .accred-inner{
    gap: 11px;
  }


  .bottom-form {
        position: fixed;
        left: 0;
        bottom: -100%;
        width: 100%;
        background: #fff;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
        transition: bottom 0.4s ease-in-out;
        z-index: 9;
        padding: 20px;
        box-sizing: border-box;
    }
        .bottom-form.active {
        bottom: 0;
    }

    nav {
        position: static;
    }
    .close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 35px !important;
}

    #closeFormBtn {
        color: #f26a23;
        border: none;
        font-size: 28px;
        cursor: pointer;
    }

  .program-text .section-title {
    font-size: 30px;
}
}


 