:root {
  --brand-primary: #143F5F;
  --brand-secondary: #61CE70;
  --brand-accent: #0FD28A;
}
h2{

  font-size: 2.6rem;
  font-weight: 800;
}
/* NAVBAR BASE */
.dsh-navbar {
  padding: 18px 0;
  transition: all 0.35s ease;
  background: transparent;
}

/* FIXED SCROLL STATE */
.dsh-navbar.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 12px 0;
}

/* LOGOS */
.logo {
  height: 80px;
  transition: opacity 0.3s ease;
}

.logo-color {
  display: none;
}

/* WHEN SCROLLED */
.dsh-navbar.scrolled .logo-white {
  display: none;
}

.dsh-navbar.scrolled .logo-color {
  display: inline-block;
}

/* NAV LINKS */
.nav-link {
  font-weight: 500;
  color: #fff !important;
  transition: color 0.3s ease;
}

.dsh-navbar.scrolled .nav-link {
  color: var(--brand-primary) !important;
}

.nav-link:hover {
  color: var(--brand-secondary) !important;
}

/* ACTIVE NAV LINK */
.nav-link.active {
  color: var(--brand-secondary) !important;
  font-weight: 700;
  position: relative;
}

/* OPTIONAL underline indicator */
 

/* Highlight special nav item */
.nav-highlight {
  position: relative;
  }

 
.nav-highlight:hover::after,
.nav-highlight.active::after {
  width: 60%;
}

/* Small pulse dot (very subtle) */
.nav-highlight::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 0px;
  width: 6px;
  height: 6px;
  background: var(--brand-secondary) !important;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}


/* CTA BUTTON */
.btn-brand {
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-accent));
  border: none;
  color: #f6f6f6;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  z-index:5;
}
/* HERO */
.dsh-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.dsh-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.4s ease, transform 6s ease;
}

.dsh-slide.active {
  opacity: 1;
  transform: scale(1);
}

.dsh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,46,69,0.85), rgba(11,46,69,0.45));
  z-index: 1;
}

.dsh-hero-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  max-width: 720px;
}

.dsh-hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
}

.dsh-hero-content h1 span {
  color: var(--brand-secondary);
}

.dsh-hero-content p {
  margin: 25px 0 40px;
  font-size: 1.15rem;
  color: #E6F1F7;
}

.dsh-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .dsh-hero-content h1 {
    font-size: 2.3rem;
  }
}



/*introduction section */

/* INTRO SECTION */
.dsh-intro {
  padding: 100px 0;
  background: #F5F9FC;
}

.dsh-badge {
  display: inline-block;
  background: rgba(97, 206, 112, 0.15);
  color: #143F5F;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.dsh-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #143F5F;
  line-height: 1.2;
}

.dsh-title span {
  color: #61CE70;
}

.dsh-text {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #4a5a6a;
  line-height: 1.7;
}

/* FEATURES */
.dsh-features {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-item {
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: #143F5F;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* CTA */
.dsh-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ILLUSTRATION */
.dsh-illustration img {
  max-width: 90%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .dsh-title {
    font-size: 2.1rem;
  }

  .dsh-features {
    grid-template-columns: 1fr;
  }
}


/* Who shoul */
.dsh-who {
  padding: 90px 0;
  background: #ffffff;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #143F5F;
}

.section-title span {
  color: #61CE70;
}

.section-subtitle {
  margin-top: 12px;
  color: #5f6f7f;
}

.who-card {
  height: 100%;
  padding: 28px;
  border-radius: 14px;
  background: #F5F9FC;
  transition: all 0.3s ease;
}

.who-card h5 {
  font-weight: 700;
  color: #143F5F;
  margin-bottom: 12px;
}

.who-card p {
  color: #4e5d6c;
  line-height: 1.6;
}

.who-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #61CE70, #0FD28A);
  color: #0B2E45;
}

.who-card:hover h5,
.who-card:hover p {
  color: #0B2E45;
}


/* career path */
.dsh-path {
  padding: 90px 0;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
}

.path-slider {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.path-step {
  width: 220px;
  padding: 25px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: all 0.3s ease;
}

.path-step h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.path-step.active {
  background: linear-gradient(135deg, #61CE70, #0FD28A);
  color: #0B2E45;
}

/* salary growth */
.dsh-salary {
  padding: 90px 0;
  background: #F5F9FC;
}

.salary-bars {
  margin-top: 30px;
}

.salary-bar {
  margin-bottom: 22px;
}

.salary-bar span {
  font-weight: 600;
  color: #143F5F;
}

.bar {
  height: 10px;
  background: #dfe7ee;
  border-radius: 6px;
  margin: 6px 0;
  overflow: hidden;
}

.fill {
  height: 100%;
  border-radius: 6px;
}

.fill.low { width: 30%; background: #61CE70; }
.fill.mid { width: 60%; background: #0FD28A; }
.fill.high { width: 85%; background: #143F5F; }



/* come back */

.dsh-second-start {
  padding: 110px 0;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #F5F9FC 100%
  );
}

.second-title {
  font-size: 3rem;
  font-weight: 800;
  color: #143F5F;
}

.second-title span {
  color: #61CE70;
}

.second-subtitle {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #5f6f7f;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* JOURNEY STEPS */
.journey-step {
  background: #ffffff;
  padding: 30px 26px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
}

.journey-step.active {
  background: linear-gradient(135deg, #61CE70, #0FD28A);
  color: #0B2E45;
  transform: translateY(-8px);
}

.journey-step h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.journey-step p {
  line-height: 1.6;
}

.step-number {
  position: absolute;
  top: -18px;
  right: 20px;
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(0,0,0,0.06);
}

/* SUPPORT STRIP */
.support-strip {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.support-item {
  padding: 10px 18px;
  background: rgba(97,206,112,0.15);
  border-radius: 30px;
  font-weight: 600;
  color: #143F5F;
}

/* career council */
.dsh-counselling {
  padding: 90px 0;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
}

.counselling-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.counselling-points li {
  margin-bottom: 10px;
  color: #E6F1F7;
  font-weight: 500;
}


/* course section */
.dsh-courses {
  padding: 100px 0;
  background: #F5F9FC;
}

.course-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 14px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.course-card h5 {
  font-weight: 700;
  color: #143F5F;
}

.course-card p {
  margin: 12px 0;
  color: #4e5d6c;
}

.course-card span {
  font-weight: 600;
  color: #61CE70;
}

.course-card:hover {
  transform: translateY(-6px);
}


.dsh-soft-cta {
  
  background: #F5F9FC;
}

.soft-cta-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 40px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.soft-cta-box h4 {
  font-weight: 700;
  color: #143F5F;
  margin-bottom: 8px;
}

.soft-cta-box p {
  margin: 0;
  color: #5f6f7f;
  line-height: 1.6;
}




/* program section */
.dsh-programs {
  padding: 110px 0;
  background: #ffffff;
}

.program-card {
  background: #F5F9FC;
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.program-card h5 {
  font-weight: 700;
  color: #143F5F;
  margin-bottom: 12px;
}

.program-card p {
  color: #4e5d6c;
  margin-bottom: 15px;
}

.program-card ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.program-card ul li {
  margin-bottom: 8px;
  color: #143F5F;
  font-weight: 500;
}

.program-outcome {
  display: inline-block;
  background: rgba(97,206,112,0.18);
  color: #143F5F;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Highlight card */
.program-card.highlight {
  background: linear-gradient(135deg, #61CE70, #0FD28A);
  color: #0B2E45;
}

.program-card.highlight h5,
.program-card.highlight p,
.program-card.highlight ul li {
  color: #0B2E45;
}

/* Hover */
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}


/* course listing */

.dsh-course-listing {
  padding: 110px 0;
  background: #f6f6f6;
}

.course-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 8px 26px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.course-box h5 {
  font-weight: 700;
  color: #143F5F;
}

.course-desc {
  margin: 12px 0 18px;
  color: #4e5d6c;
}

.course-meta span {
  display: block;
  font-weight: 600;
  color: #143F5F;
  margin-bottom: 6px;
}

.course-tags {
  margin-top: 14px;
}

.course-tags span {
  display: inline-block;
  background: rgba(97,206,112,0.18);
  color: #143F5F;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 6px;
  margin-bottom: 6px;
}

.course-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  color: #143F5F;
  text-decoration: none;
}

.course-link:hover {
  text-decoration: underline;
}

.course-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 45px rgba(0,0,0,0.12);
}



/* placement support */
.dsh-modern-cta {
  padding-bottom: 120px;
  background: #F5F9FC;
}

/* MAIN CARD */
.cta-card {
  background: linear-gradient(
    135deg,
    #143F5F 0%,
    #0B2E45 100%
  );
  border-radius: 26px;
  padding: 60px 55px;
  color: #ffffff;
  box-shadow: 0 25px 70px rgba(0,0,0,0.18);
}

/* TAG */
.cta-tag {
  display: inline-block;
  background: rgba(97,206,112,0.18);
  color: #61CE70;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

/* TEXT */
.cta-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
}

.cta-title span {
  color: #61CE70;
}

.cta-text {
  margin: 20px 0 35px;
  font-size: 1.1rem;
  color: #E6F1F7;
  max-width: 620px;
}

/* BUTTONS */
.cta-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* STATS */
.cta-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}

.stat-box {
  background: rgba(255,255,255,0.1);
  padding: 26px 18px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.stat-box h4 {
  font-size: 2rem;
  font-weight: 800;
  color: #61CE70;
  margin-bottom: 6px;
}

.stat-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #E6F1F7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-card {
    padding: 45px 30px;
  }

  .cta-title {
    font-size: 2.2rem;
  }
}
/* testimonials */
.dsh-testimonials {
  padding: 100px 0;
  background: #ffffff;
}

.testimonial-card {
  background: #F5F9FC;
  padding: 30px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.testimonial-card p {
  font-style: italic;
  color: #4e5d6c;
  margin-bottom: 15px;
}

.testimonial-card h6 {
  font-weight: 700;
  color: #143F5F;
}

/* cta */

.dsh-final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #61CE70, #0FD28A);
  color: #0B2E45;
}

.dsh-final-cta h2 {
  font-size: 3rem;
  font-weight: 800;
}

.dsh-final-cta span {
  color: #143F5F;
}

.dsh-final-cta p {
  margin: 20px auto 35px;
  max-width: 650px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* footer */
/* FOOTER */
.dsh-footer {
  background: #0B2E45;
  color: #E6F1F7;
  padding: 90px 0 40px;
}

.footer-logo {
  height: 88px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cfd8df;
}

.footer-sub {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #9fb4c3;
}

/* TITLES */
.footer-title {
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfd8df;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #61CE70;
}

/* CONTACT */
.footer-contact {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-contact a {
  color: #cfd8df;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #61CE70;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #9fb4c3;
}



/* whatsapp button */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}



/* about us page start here */

/* banner */

.dsh-inner-hero {
  padding: 140px 0 90px;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
}

.dsh-inner-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
}

.dsh-inner-hero p {
  margin-top: 14px;
  font-size: 1.1rem;
  color: #E6F1F7;
}


/* strip */
.dsh-strip {
  background: #F5F9FC;
  padding: 22px 0;
  font-weight: 600;
  color: #143F5F;
}

/* who we are */
.dsh-about {
  padding: 110px 0;
  background: #ffffff;
}

.section-text {
  margin-top: 18px;
  color: #4e5d6c;
  line-height: 1.7;
}

.about-highlight {
  background: #F5F9FC;
  padding: 35px;
  border-radius: 18px;
}

.about-highlight h4 {
  font-weight: 700;
  color: #143F5F;
  margin-bottom: 14px;
}

.about-highlight ul {
  padding-left: 18px;
}

.about-highlight ul li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #143F5F;
}


/* why choose us */
.dsh-why {
  padding: 100px 0;
  background: #F5F9FC;
}

.why-box {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.why-box h5 {
  font-weight: 700;
  color: #143F5F;
  margin-bottom: 10px;
}

.why-box p {
  color: #4e5d6c;
}

/* vission */

.dsh-vmv {
  padding: 100px 0;
  background: #ffffff;
}

.vmv-box {
  background: #F5F9FC;
  padding: 32px;
  border-radius: 18px;
  height: 100%;
}

.vmv-box h5 {
  font-weight: 700;
  color: #143F5F;
  margin-bottom: 12px;
}

.vmv-box p {
  color: #4e5d6c;
  line-height: 1.6;
}


/* credit */
.dsh-parent {
  padding: 90px 0;
   color: #ffffff;
}

.dsh-parent .section-title span {
  color: #61CE70;
}

.dsh-parent .section-subtitle {
  margin-top: 14px;
  color: #333;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}




/* program page */
/* =============================
   PROGRAM HERO
============================= */
.program-hero {
  padding: 150px 0 110px;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
}

.program-hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
}

.program-hero h1 span {
  color: #61CE70;
}

.program-hero p {
  margin-top: 16px;
  font-size: 1.15rem;
  color: #E6F1F7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================
   PROGRAMS GRID
============================= */
.programs-main {
  padding: 110px 0;
  background: #F5F9FC;
}

.program-card {
  background: #ffffff;
  padding: 34px 30px;
  border-radius: 22px;
  height: 100%;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 15px 45px rgba(0,0,0,0.06);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

/* Highlight Card */
.program-card.highlight {
  background: linear-gradient(135deg, #61CE70, #0FD28A);
  color: #0B2E45;
}

.program-card.highlight h4,
.program-card.highlight p,
.program-card.highlight ul li {
  color: #0B2E45;
}

/* Tag */
.program-tag {
  display: inline-block;
  background: rgba(97,206,112,0.2);
  color: #143F5F;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}

/* Card Content */
.program-card h4 {
  font-weight: 800;
  color: #143F5F;
  margin-bottom: 12px;
}

.program-card p {
  color: #4e5d6c;
  line-height: 1.6;
  margin-bottom: 18px;
}

.program-card ul {
  padding-left: 18px;
  margin-bottom: 26px;
}

.program-card ul li {
  margin-bottom: 8px;
  font-weight: 500;
  color: #143F5F;
}

/* Footer */
.program-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.program-footer span {
  font-weight: 700;
  color: #61CE70;
}

.program-footer a {
  font-weight: 700;
  text-decoration: none;
  color: #143F5F;
}

/* =============================
   CTA
============================= */
.program-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
}

.program-cta h2 {
  font-size: 2.8rem;
  font-weight: 800;
}

.program-cta p {
  margin: 18px auto 35px;
  font-size: 1.1rem;
  max-width: 640px;
  color: #E6F1F7;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {
  .program-hero h1 {
    font-size: 2.4rem;
  }

  .program-cta h2 {
    font-size: 2rem;
  }
}



/* program inner page */

/* ===============================
   PROGRAM DETAIL HERO
=============================== */
.program-detail-hero {
  padding: 150px 0 110px;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
}

.pd-badge {
  display: inline-block;
  background: rgba(97,206,112,0.2);
  color: #61CE70;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.program-detail-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
}

.program-detail-hero h1 span {
  color: #61CE70;
}

.program-detail-hero p {
  margin: 18px 0 24px;
  color: #E6F1F7;
  font-size: 1.1rem;
}

.pd-meta div {
  margin-bottom: 6px;
  font-size: 1rem;
}

.pd-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right Box */
.pd-highlight {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 20px;
}

.pd-highlight h4 {
  font-weight: 700;
  margin-bottom: 14px;
}

.pd-highlight ul {
  padding-left: 18px;
}

.pd-highlight ul li {
  margin-bottom: 10px;
}

/* ===============================
   OVERVIEW
=============================== */
.pd-overview {
  padding: 110px 0;
  background: #ffffff;
}

.pd-overview h2 span {
  color: #61CE70;
}

.pd-overview p {
  color: #4e5d6c;
  line-height: 1.7;
  margin-top: 16px;
}

.pd-outcomes {
  background: #F5F9FC;
  padding: 35px;
  border-radius: 20px;
}

.pd-outcomes h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

/* ===============================
   CURRICULUM
=============================== */
.pd-curriculum {
  padding: 110px 0;
  background: #F5F9FC;
}

.curriculum-box {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.curriculum-box h6 {
  font-weight: 800;
  color: #143F5F;
  margin-bottom: 8px;
}

/* ===============================
   SUPPORT
=============================== */
.pd-support {
  padding: 110px 0;
  background: #ffffff;
}

.pd-support ul {
  padding-left: 18px;
  margin-top: 16px;
}

.pd-support ul li {
  margin-bottom: 10px;
  list-style: none;
  font-weight: 500;
}

.pd-support-box {
  background: linear-gradient(135deg, #61CE70, #0FD28A);
  padding: 40px;
  border-radius: 24px;
  color: #0B2E45;
}

/* ===============================
   FINAL CTA
=============================== */
.pd-final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
}

.pd-final-cta h2 {
  font-size: 2.8rem;
  font-weight: 800;
}

.pd-final-cta h2 span {
  color: #61CE70;
}

.pd-final-cta p {
  margin: 18px auto 35px;
  max-width: 620px;
  color: #E6F1F7;
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 768px) {
  .program-detail-hero h1 {
    font-size: 2.3rem;
  }

  .pd-final-cta h2 {
    font-size: 2rem;
  }
}


/* course main page */

/* =============================
   COURSES HERO
============================= */
.courses-hero {
  padding: 150px 0 110px;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
}

.courses-hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
}

.courses-hero h1 span {
  color: #61CE70;
}

.courses-hero p {
  margin-top: 16px;
  font-size: 1.15rem;
  color: #E6F1F7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================
   COURSES GRID
============================= */
.courses-main {
  padding: 110px 0;
  background: #F5F9FC;
}

.course-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 22px;
  height: 100%;
  box-shadow: 0 14px 45px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

/* Highlight card */
.course-card.highlight {
  background: linear-gradient(135deg, #61CE70, #0FD28A);
  color: #0B2E45;
}

.course-card.highlight h4,
.course-card.highlight p {
  color: #0B2E45;
}

.course-card h4 {
  font-weight: 800;
  color: #143F5F;
  margin-bottom: 12px;
}

.course-card p {
  color: #4e5d6c;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Meta */
.course-info span {
  display: block;
  font-weight: 600;
  color: #143F5F;
  margin-bottom: 6px;
}

/* Tags */
.course-tags {
  margin-top: 14px;
}

.course-tags span {
  display: inline-block;
  background: rgba(97,206,112,0.18);
  color: #143F5F;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* Link */
.course-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #143F5F;
}

/* =============================
   CTA
============================= */
.courses-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
}

.courses-cta h2 {
  font-size: 2.8rem;
  font-weight: 800;
}

.courses-cta p {
  margin: 18px auto 35px;
  max-width: 640px;
  color: #E6F1F7;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {
  .courses-hero h1 {
    font-size: 2.4rem;
  }

  .courses-cta h2 {
    font-size: 2rem;
  }
}


/* course inner page */
/* ===============================
   COURSE HERO
=============================== */

.course-detail-hero {
  padding: 160px 0 120px;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.course-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(97,206,112,0.15), transparent 60%);
}

.cd-badge {
  display: inline-block;
  background: rgba(97,206,112,0.2);
  color: #61CE70;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.course-detail-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
}

.course-detail-hero h1 span {
  color: #61CE70;
}

.course-detail-hero p {
  margin: 20px 0 26px;
  color: #E6F1F7;
  font-size: 1.1rem;
  max-width: 640px;
}

.cd-meta {
  margin-top: 10px;
}

.cd-meta div {
  margin-bottom: 6px;
  font-size: 1rem;
  opacity: 0.9;
}

.cd-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cd-quick-box {
  background: rgba(255,255,255,0.12);
  padding: 36px;
  border-radius: 24px;
  backdrop-filter: blur(6px);
}

.cd-quick-box h5 {
  font-weight: 700;
  margin-bottom: 14px;
}

.cd-quick-box ul {
  padding-left: 18px;
}

.cd-quick-box ul li {
  margin-bottom: 10px;

}

.cd-overview {
  padding: 110px 0;
  background: #ffffff;
}

.cd-overview h2 {
  font-size: 2.4rem;
  font-weight: 800;
}

.cd-overview h2 span {
  color: #61CE70;
}

.cd-overview p {
  color: #4e5d6c;
  line-height: 1.8;
  margin-top: 16px;
  font-size: 1.05rem;
}

.cd-benefits {
  background: #F5F9FC;
  padding: 38px;
  border-radius: 24px;
}

.cd-benefits h5 {
  font-weight: 700;
  margin-bottom: 14px;
}

.cd-syllabus {
  padding: 110px 0;
  background: linear-gradient(180deg, #F5F9FC, #ffffff);
}

.syllabus-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 22px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0,0,0,0.07);
  transition: all 0.35s ease;
}

.syllabus-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.syllabus-box h6 {
  font-weight: 800;
  color: #143F5F;
  margin-bottom: 10px;
}

.cd-support {
  padding: 110px 0;
  background: #ffffff;
}

.cd-support h2 {
  font-size: 2.4rem;
  font-weight: 800;
}

.cd-support h2 span {
  color: #61CE70;
}

.cd-support ul {
  padding-left: 18px;
  margin-top: 18px;
}

.cd-support ul li {
  margin-bottom: 10px;
  font-weight: 500;
}

.cd-support-box {
  background: linear-gradient(135deg, #61CE70, #0FD28A);
  padding: 44px;
  border-radius: 28px;
  color: #0B2E45;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}
.cd-final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
}

.cd-final-cta h2 {
  font-size: 2.8rem;
  font-weight: 800;
}

.cd-final-cta h2 span {
  color: #61CE70;
}

.cd-final-cta p {
  margin: 20px auto 36px;
  max-width: 640px;
  color: #E6F1F7;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .course-detail-hero h1 {
    font-size: 2.3rem;
  }

  .cd-final-cta h2 {
    font-size: 2rem;
  }

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


/* career restart page */


/* ===============================
   GLOBAL
=============================== */
 
.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #143F5F;
}

.section-title span {
  color: #61CE70;
}

/* ===============================
   HERO
=============================== */
.sc-hero {
  padding: 160px 0;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
}

.sc-hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
}

.sc-hero h1 span {
  color: #61CE70;
}

.sc-hero p {
  max-width: 760px;
  margin: 18px auto;
  font-size: 1.1rem;
  color: #E6F1F7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 16px;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ===============================
   SECTION SPACING
=============================== */
.sc-reality,
.sc-who,
.sc-journey,
.sc-skills,
.sc-income,
.sc-plans,
.sc-trust {
  padding: 110px 0;
}

/* ===============================
   REALITY SECTION
=============================== */
.sc-reality {
  background: linear-gradient(180deg, #F5F9FC, #ffffff);
}

.section-intro {
  max-width: 720px;
  margin: 16px auto 0;
  color: #5f6f7f;
  font-size: 1.05rem;
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.reality-item {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

.reality-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.reality-item h5 {
  color: #143F5F;
  font-weight: 700;
  margin-bottom: 6px;
}

.reality-footer-text {
  margin-top: 40px;
  font-weight: 600;
  color: #143F5F;
}

/* ===============================
   SUPPORT STRIP
=============================== */
.support-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.support-item {
  background: rgba(97,206,112,0.15);
  color: #143F5F;
  padding: 10px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===============================
   SOFT CTA
=============================== */
.soft-cta-box {
   padding: 40px;
  border-radius: 24px;
  color: #0B2E45;
}

.soft-cta-box h4 {
  font-weight: 800;
}

/* ===============================
   WHO SECTION
=============================== */
.sc-who {
  background: #ffffff;
}

.who-card {
  background: #F5F9FC;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.35s ease;
}

.who-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.who-card h5 {
  font-weight: 700;
  color: #143F5F;
}

/* ===============================
   JOURNEY
=============================== */
.sc-journey {
  background: #0B2E45;
  color: #ffffff;
}

.sc-journey .section-title {
  color: #ffffff;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 32px;
  border-radius: 22px;
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

.step:hover {
  background: rgba(97,206,112,0.25);
  transform: translateY(-6px);
}

.step span {
  font-size: 2.4rem;
  font-weight: 800;
  color: #61CE70;
}

.step h5 {
  font-weight: 700;
}

/* ===============================
   SKILLS
=============================== */
.sc-skills {
  background: #ffffff;
}

.skills-intro {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
  color: #5f6f7f;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.skills-list span {
  background: #F5F9FC;
  padding: 12px 22px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.skills-list span:hover {
  background: #61CE70;
  color: #0B2E45;
  transform: scale(1.05);
}

.skills-note {
  font-style: italic;
  color: #7a8a9a;
}

/* ===============================
   INCOME SECTION
=============================== */
.sc-income {
  background: #143F5F;
  color: #ffffff;
}

.income-intro {
  max-width: 760px;
  margin: 20px auto 30px;
  color: #E6F1F7;
}

.income-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.income-box {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 28px;
  border-radius: 20px;
  text-align: left;
  transition: all 0.35s ease;
}

.income-box:hover {
  background: #61CE70;
  color: #0B2E45;
}

.income-box h5 {
  font-weight: 700;
}

.income-note {
  margin-top: 32px;
  font-size: 0.95rem;
  opacity: 0.85;
  font-style: italic;
}

/* ===============================
   PLANS
=============================== */
.sc-plans {
  background: linear-gradient(180deg, #F5F9FC, #ffffff);
}

.plans-intro {
  max-width: 680px;
  margin: 0 auto 30px;
  color: #5f6f7f;
}

.plan-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 26px;
  height: 100%;
  box-shadow: 0 14px 45px rgba(0,0,0,0.08);
}

.plan-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #61CE70;
}

.plan-card ul {
  padding-left: 18px;
}

.plan-card.highlight {
  background: linear-gradient(135deg, #61CE70, #0FD28A);
  color: #0B2E45;
}

/* ===============================
   TRUST
=============================== */
.sc-trust {
  background: #ffffff;
  border-top: 1px solid #eef2f6;
}

.trust-text {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4e5d6c;
}

.trust-text strong {
  color: #143F5F;
}

.trust-note {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #7a8a9a;
  font-style: italic;
}

/* ===============================
   FINAL CTA
=============================== */
.sc-final {
  padding: 120px 0;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
}

.final-note {
  font-size: 0.9rem;
  opacity: 0.85;
}


/* contact us page */

/* ===============================
   HERO
=============================== */
.contact-hero {
  padding: 140px 0 110px;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
}

.contact-hero h1 span {
  color: #61CE70;
}

.contact-hero p {
  max-width: 680px;
  margin: 18px auto 0;
  color: #E6F1F7;
  font-size: 1.05rem;
}

/* ===============================
   INFO CARDS
=============================== */
.contact-info {
  padding: 90px 0;
  background: #ffffff;
}

.contact-card {
  background: #F5F9FC;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
}

.contact-card h5 {
  font-weight: 700;
  color: #143F5F;
  margin-bottom: 10px;
}

/* ===============================
   FORM + MAP
=============================== */
.contact-main {
  padding: 110px 0;
  background: linear-gradient(180deg, #F5F9FC, #ffffff);
}

.contact-form-box {
  background: #ffffff;
  padding: 42px;
  border-radius: 26px;
  box-shadow: 0 16px 45px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-form-box p {
  color: #5f6f7f;
  margin-bottom: 26px;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
  border-radius: 12px;
  padding: 12px 14px;
}

.contact-map {
  height: 100%;
  min-height: 420px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0,0,0,0.1);
}

/* ===============================
   FINAL CTA
=============================== */
.contact-cta {
  padding: 110px 0;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
  text-align: center;
}

.contact-cta h2 {
  font-size: 2.6rem;
  font-weight: 800;
}

.contact-cta h2 span {
  color: #61CE70;
}

.contact-cta p {
  max-width: 640px;
  margin: 18px auto 34px;
  color: #E6F1F7;
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.3rem;
  }

  .contact-cta h2 {
    font-size: 2rem;
  }
}

/* contact us page ends here */

/* placements page */

/* ===============================
   HERO
=============================== */
.placements-hero {
  padding: 150px 0 120px;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
}

.placements-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
}

.placements-hero h1 span {
  color: #61CE70;
}

.placements-hero p {
  max-width: 720px;
  margin: 18px auto 28px;
  color: #E6F1F7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===============================
   PHILOSOPHY
=============================== */
.pl-philosophy {
  padding: 110px 0;
  background: #ffffff;
}

.pl-philosophy h2 span {
  color: #61CE70;
}

.ph-card {
  background: #F5F9FC;
  padding: 32px;
  border-radius: 22px;
  height: 100%;
}

/* ===============================
   ELIGIBLE
=============================== */
.pl-eligible {
  padding: 100px 0;
  background: linear-gradient(180deg, #F5F9FC, #ffffff);
}

.eligible-box {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  font-weight: 700;
  text-align: center;
}

/* ===============================
   PROCESS
=============================== */
.pl-process {
  padding: 110px 0;
  background: #0B2E45;
  color: #ffffff;
}

.pl-process h2 span {
  color: #61CE70;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.process-step {
  background: rgba(255,255,255,0.1);
  padding: 32px;
  border-radius: 22px;
}

.process-step span {
  font-size: 2.2rem;
  font-weight: 800;
  color: #61CE70;
}

/* ===============================
   OPPORTUNITIES
=============================== */
.pl-opportunities {
  padding: 110px 0;
  background: #143F5F;
  color: #ffffff;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.opportunity-grid div {
  background: rgba(255,255,255,0.12);
  padding: 22px;
  border-radius: 18px;
  font-weight: 600;
}

/* ===============================
   TRUST
=============================== */
.pl-trust {
  padding: 110px 0;
  background: #ffffff;
}

.trust-text {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4e5d6c;
}

.trust-note {
  font-style: italic;
  color: #7a8a9a;
}

/* ===============================
   FINAL CTA
=============================== */
.pl-final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #143F5F, #0B2E45);
  color: #ffffff;
}

.pl-final-cta h2 {
  font-size: 2.6rem;
  font-weight: 800;
}

.pl-final-cta h2 span {
  color: #61CE70;
}


.ph-card {
  background: #F5F9FC;
  padding: 36px;
  border-radius: 24px;
  height: 100%;
  transition: all 0.35s ease;
}

.ph-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.ph-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.ph-note {
  font-size: 0.9rem;
  font-style: italic;
  color: #7a8a9a;
  margin-top: 10px;
}


.eligible-box {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.eligible-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.eligible-box h6 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #143F5F;
}


 .pl-opportunities h2 span{
  color: #61CE70 !important;

}
.pl-opportunities .section-intro{
  max-width: 720px !important;
  margin: 16px auto 0;
  color: #5f6f7f !important;
  font-size: 1.05rem !important;

}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 768px) {
  .placements-hero h1 {
    font-size: 2.2rem;
  }

  .pl-final-cta h2 {
    font-size: 2rem;
  }
}
