
/* ===== Original JSP CSS ===== */
:root {
  /* Updated Career Launcher Orange Theme */
  --cl-orange: #ff4500;
  --cl-orange-dark: #d95517;
  --cl-orange-light: #fef0ea;

  /* Red alias (used by lc-* and mentors-* components) */
  --cl-red: #C8102E;
  --cl-red-l: #fce8ec;

  /* Core Colors */
  --navy: #0D1B3E;
  --gold: #D4A017;
  --gold-l: #FBF4E0;
  --g50: #F4F5F8;
  --g100: #E8EAEF;
  --g200: #C8CDD8;
  --g400: #8892A4;
  --g600: #4A5568;
  --g800: #1A202C;

  /* Muted text */
  --muted: #4A5568;

  /* Border radius */
  --radius: 10px;

  /* Typography & Shadows */
  --fd: 'DM Serif Display', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
  --sh-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --sh-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --sh-hover: 0 8px 24px rgba(0,0,0,.12);
  --r-md: 10px;
  --r-lg: 16px;
}

/* =========================================================
   EXISTING STYLES PRESERVED
   ========================================================= */
#bannerzone .item > a {
  pointer-events: none;
}
#bannerzone .carousel-control {
  pointer-events: auto;
  cursor: pointer;
}

/* =========================================================
   PEDAGOGY SECTION
   ========================================================= */
.pedagogy-section {
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  padding: 80px 20px;
}
.pedagogy-wrapper {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.pedagogy-title {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 26px;
  font-weight: 600;
}
.pedagogy-connector-vertical {
  width: 2px;
  height: 40px;
  background: #fff;
  margin: 0 auto 30px;
}
.pedagogy-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pedagogy-card {
  background: #fff;
  border-radius: 14px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.card-title {
  background: #fff;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 18px;
  margin: -18px auto 10px;
  width: fit-content;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.card-body {
  padding: 16px 20px 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #333;
}
.pedagogy-connector-horizontal {
  width: 40px;
  height: 2px;
  background: #fff;
}



/* =========================================================
   NEW: FREE RESOURCES SECTION
   ========================================================= */

.free-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.free-resource-card {
  background: #fff;
  border: 1.5px solid #E8EAEF;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.free-resource-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  transform: translateY(-3px);
  border-color: #C8102E;
}
.free-resource-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0D1B3E;
  margin-bottom: 8px;
}
.free-resource-card p {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* =========================================================
   NEW: ADVANTAGES SECTION
   ========================================================= */
.advantages-section {
  background: #fff;
  padding: 60px 20px;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.advantage-card {
  background: #F7F8FC;
  border: 1px solid #E8EAEF;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #C8102E;
  transition: box-shadow .2s, transform .2s;
}
.advantage-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.advantage-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0D1B3E;
  margin-bottom: 8px;
}
.advantage-card p {
  font-size: 13.5px;
  color: #4A5568;
  line-height: 1.7;
}

/* =========================================================
   MISSING UTILITY & BASE RULES
   ========================================================= */

/* Fix: section-subtitle used on multiple sections, no rule defined */

/* Fix: mt-30 used throughout, not defined in page CSS */
.mt-30 { margin-top: 30px !important; }

/* Fix: why-cl-section base bg missing - only had @media rule */

/* Fix: Bootstrap 3 lacks d-flex, d-block, flex-wrap, d-lg-flex, align-items-center */
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
@media (min-width: 1200px) {
  .d-lg-flex { display: flex !important; }
}

/* new css */

.btn-custom-white{
    background: #fff;
    border: 1px solid #d0d5dd;
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
    border-radius: var(--radius);
    box-shadow: 0 4px 14px rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.gap-12{
  gap: 12px;
}

.prog-box {
    background: #fff;
    border: 1px solid #ffd8ca;
    border-radius: 12px;
    padding: 20px 24px;
    gap: 16px;
    margin-top: 32px;
}

/* slider student */

.program-boxs {
    overflow: hidden;
    position: relative;
    text-align: center;
    margin: 0 5px;
    flex: 0 0 auto;
    margin-right: 40px;
}
.program-boxs img {
    width: 130px;
    transition: 0.3s ease;
    border-radius: 50%;
    height: 130px;
}
.program-boxs:hover img {
transform: scale(1.1);
}

.bg-danger-subtle {
    background-color: #e85222 !important;
    padding: 7px 20px;
}
.program-boxs .bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgb(232 82 34) !important;
}
.program-boxs h3 {
    font-size: 16px;
    text-align: center;
}
.program-boxs h5 {
text-align: center;
color: #101828;
background: #ffe3d9;
padding: 5px;
border-radius: 0px;
border: 0px;
border-bottom: 2px solid #ffa888;
margin-bottom: 15px;
border-top: 2px solid #ffa888;
}
.d-block {
    display: block !important;
}
.pb-2 {
    padding-bottom: .5rem !important;
}
.fs-13 {
    font-size: 13px;
}
.mt-3 {
    margin-top: 1rem !important;
}
.bg-light {
    background-color: #f8f9fa !important;
}
.marquee-wrapper {
      overflow: hidden;
      position: relative;
      padding: 0px 0;
    margin: 0 auto;
}
    .marquee-content {
      display: flex;
      width: max-content;
      animation: scroll-left 35s linear infinite;
    }

    /* Pause on hover */
    .marquee-wrapper:hover .marquee-content {
      animation-play-state: paused;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

/* Layout & Typography */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--fb); color: var(--g800); line-height: 1.7; }
a { text-decoration: none; color: inherit; }

.sh { margin-bottom: 3rem; }
.sh-c { text-align: center; }
.sh-c .ss { margin: 0 auto; }
.ss { font-size: 16px; color: var(--g600); max-width: 640px; line-height: 1.7; }

/* Headings & Tags */
.stag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cl-orange); background: var(--cl-orange-light); padding: 5px 12px; border-radius: 100px; margin-bottom: 1rem; }
h2.st { font-family: var(--fd); font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--navy); font-weight: 400; line-height: 1.2; margin-bottom: .75rem; }
h2.st em { font-style: italic; color: var(--cl-orange); }

/* Fee Cards Grid */
.fg4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.fec { background: #fff; border-radius: var(--r-lg); padding: 1.5rem; border: 1.5px solid var(--g100); text-align: center; box-shadow: var(--sh-sm); transition: box-shadow .2s, transform .2s; }
.fec:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.fep { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.fed { font-size: 12px; color: var(--g400); margin-bottom: 1rem; }
.fea { font-family: var(--fd); font-size: 1.9rem; color: var(--cl-orange); margin-bottom: 10px; line-height: 1;font-weight: bold; }
.fes { font-size: 12px; color: #7A5C00; background: var(--gold-l); padding: 5px 10px; border-radius: 100px; font-weight: 600; display: inline-block; }

/* Buttons */
.btn {align-items: center; gap: 8px; border: none; cursor: pointer; transition: all .2s; font-family: var(--fb); }
.btn-p { background: var(--cl-orange); color: #fff; padding: 14px 28px; border-radius: var(--r-md); font-size: 15px; font-weight: 600; box-shadow: 0 4px 14px rgba(242, 101, 34, 0.35); }
.btn-p:hover { background: var(--cl-orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(242, 101, 34, 0.45); }
.btn-n { background: transparent; color: var(--navy); border: 1.5px solid var(--g200); padding: 12px 22px; border-radius: var(--r-md); font-size: 14px; font-weight: 500; }
.btn-n:hover { background: var(--g50); border-color: var(--g400); }



/* ---------- Section Wrapper ---------- */
 
/* ---------- Left Panel ---------- */
 
/* Badge pill */
.why-cl-badge {
  display: inline-block;
  background-color: #8B1A2B;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  width: fit-content;
}
 
/* Heading */
.why-cl-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 18px 0;
}
 
/* Italic gold accent */
.why-cl-heading em {
  font-style: italic;
  color: #E8A020;
  font-weight: 700;
}
 
/* Sub-text */
.why-cl-sub {
  font-size: 14px;
  line-height: 1.7;
  color: #C5CDE0;
  margin-bottom: 30px;
}
 
/* CTA Button */
.why-cl-cta {
  display: inline-block;
  background-color: #E8380D;
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: fit-content;
  align-self: flex-start;
}
 
.why-cl-cta:hover,
.why-cl-cta:focus {
  background-color: #c42e0a;
  color: #FFFFFF;
  text-decoration: none;
}
 
/* ---------- Right Grid ---------- */
 
/* Card wrapper spacing */
 
/* Card */
.why-cl-card-wrap{
    margin-bottom: 15px;
}
.why-cl-card {
background: #fff;
    border: 1px solid #ffd8ca;
    border-radius: 10px;
    padding: 16px;
    height: 100%;
    position: relative;
    transition: border-color 0.2s ease, transform 0.2s ease;
    min-height: 165px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-height: auto;
}
 
.why-cl-card:hover {
  border-color: #E8380D;
  transform: translateY(-2px);
}
 
/* Large ghost number */
.card-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #ffa06c;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
 
/* Card heading */
.why-cl-card h4 {
  font-size: 18px;
  font-weight: 700;
    color: #101828;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
 
/* Card body text */
.why-cl-card p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}


 /* ---------- Header ---------- */
.lc-header {
margin-bottom: 40px;
}

/* Tag pill */
.lc-stag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cl-red);
  background: var(--cl-red-l);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* Serif heading */
.lc-title {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 14px 0;
}

/* Italic orange accent */
.lc-title em {
  font-style: italic;
  color: var(--cl-red);
}

/* Subtitle */
.lc-subtitle {
  font-size: 16px;
  color: var(--g600);
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Cards Row ---------- */
.lc-cards-row {
  position: relative;
  display: flex;
  align-items: stretch;
}

.lc-col {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}

/* ---------- Arrow ---------- */
.lc-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.lc-arrow-1 { left: calc(33.333% - 18px); }
.lc-arrow-2 { left: calc(66.666% - 18px); }

.lc-arrow {
  font-size: 22px;
  color: var(--g400);
  line-height: 1;
  display: block;
}

/* ---------- Card ---------- */
.lc-card {
  background: #FFFFFF;
  border: 1.5px solid var(--g100);
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lc-card:hover {
    border-color: #E8380D;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200,16,46,.12);
}

/* Ghost number */
.lc-ghost-num {
  display: block;
  font-family: var(--fd);
  font-size: 72px;
  font-weight: 400;
  color: #ffa06c;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

/* Card title */
.lc-card-title {
  font-family: var(--fb);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

/* Card description */
.lc-card-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--g600);
  margin: 0;
}

/* Center card subtle highlight */
.lc-card-center {
      border-color: #ffd8ca;
  /* border-color: var(--g100);
  background: var(--g50); */
}

.lc-card-center:hover {
  border-color: #E8380D;
  background: #FFFFFF;
}

 /* ---------- Section ---------- */

/* ---------- Header ---------- */
.mentors-header {
  margin-bottom: 52px;
}

.mentors-stag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cl-red);
  background: var(--cl-red-l);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.mentors-title {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 14px 0;
}

.mentors-title em {
  font-style: italic;
  color: var(--cl-red);
}

/* ---------- Grid ---------- */
.mentors-grid {
  margin-top: 8px;
}

.mentor-col {
  margin-bottom: 24px;
}

/* ---------- Card ---------- */
.mentor-card {
  background: #FFFFFF;
  border: 1.5px solid var(--g100);
  border-radius: var(--r-lg);
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  height: 100%;
  box-shadow: var(--sh-sm);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 203px;
}
.mentor-card .mCustomScrollbar{
height: 75px;
}

.mentor-card:hover {
    border-color: #E8380D;
  transform: translateY(-3px);
  box-shadow: var(--sh-hover);
}

/* ---------- Avatar ---------- */
.mentor-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.mentor-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: #FFFFFF;
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  line-height: 1;
}

/* IIM badge pill */
.mentor-iim-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cl-red);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
  line-height: 1.6;
}

/* ---------- Info Block ---------- */
.mentor-info {
  flex: 1;
  min-width: 0;
}

.mentor-name {
  font-family: var(--fb);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 5px 0;
  line-height: 1.3;
}

/* Specialty / credential line */
.mentor-spec {
  font-size: 13px;
  font-weight: 600;
  color: var(--cl-red);
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.mentor-desc {
  font-size: 13.5px;
  line-height: 1.7;
}

/* ---------- CTA ---------- */
.mentors-cta {
  margin-top: 44px;
}

/* Reuse existing page btn style if present, fallback here */
.btn-primary-custom {
  display: inline-block;
  background: var(--cl-orange);
  color: #FFFFFF !important;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(255, 69, 0, 0.35);
}

.know-mentor {
  width: 60px !important;
  height: 60px !important;
}
.choose-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
  }
  .choose-steps-grid .why-cl-card{
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    border-top: 4px solid #ff4500;

  }


  .ipm-result {
        width: 100%;
        background: #ffffff;
        color: #000;
        padding: 20px 0;
        border-top: 2px solid #ffe5ea;
      }

      .ipm-result h3 {
        margin-top: 0px;
        font-size: 20px;
        margin-bottom: 15px;
      }

      .trop {
        position: relative;
      }

      .trop img {
        position: absolute;
        left: 0;
        min-width: 30px;
        max-width: 30px;
        top: 7px;
      }

      .trop p {
        padding-left: 45px;
        margin-bottom: 0;
      }

      .trop p span {
        font-size: 20px;
        font-weight: 800;
        display: block;
      }

      .trop p b {
        padding-left: 20px;
        font-size: 12px;
        font-weight: 400;
        font-style: italic;
      }

      p.bright-small {
        font-size: 13px;
        margin-top: 10px;
      }

/* =========================================================
   RESPONSIVE FIXES — EXISTING + NEW
   ========================================================= */
@media (max-width: 992px) {
  .pedagogy-row {
    flex-direction: column;
  }
  .pedagogy-connector-horizontal {
    width: 2px;
    height: 30px;
  }
  .cl-stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .cl-stat-divider:nth-child(3) {
    border-left: none;
  }
  .free-resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pedagogy-card {
    width: 100%;
    max-width: 340px;
  }
  .fg4 { grid-template-columns: repeat(2, 1fr); }

    .why-cl-left {
    min-height: 500px;
  }
  .choose-steps-grid { grid-template-columns: repeat(2, 1fr); }
  
}

/* 768–991px — tablet landscape: left col full width above grid */
@media (min-width: 768px) and (max-width: 991px) {
 
  .why-cl-cta {
    align-self: center;
  }
 
  .why-cl-badge {
    margin-left: auto;
    margin-right: auto;
  }
 
  .why-cl-heading {
    font-size: 28px;
  }

    .lc-card {
    padding: 28px 18px 26px;
  }

  .lc-ghost-num {
    font-size: 56px;
  }

  .lc-arrow {
    font-size: 18px;
  }

  .lc-card-title {
    font-size: 16px;
  }

  .lc-card-desc {
    font-size: 13.5px;
  }

  .mentor-card {
    padding: 22px 18px;
    gap: 16px;
  }

  .mentor-avatar {
    width: 54px;
    height: 54px;
    font-size: 17px;
  }

  .mentor-name {
    font-size: 16px;
  }

  .mentor-spec {
    font-size: 12px;
  }

  .mentor-desc {
    font-size: 13px;
  }

  .mentors-title {
    font-size: 2rem;
  }
}
 

@media (max-width: 600px) {
  .cl-stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .cl-stat-divider {
    border-left: none;
  }
  .free-resources-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .pedagogy-title {
    font-size: 20px;
    padding: 12px 24px;
  }
  .fg4 { grid-template-columns: 1fr; }

  .why-cl-heading {
    font-size: 26px;
  }
 
  .why-cl-card {
    min-height: auto;
    padding: 18px 16px;
    margin-bottom: 10px;
  }
 
  .card-num {
    font-size: 28px;
  }
.lc-section {
    padding: 48px 0 56px;
  }

  .lc-header {
    margin-bottom: 36px;
  }

  .lc-title {
    font-size: 1.75rem;
  }

  .lc-cards-row {
    flex-direction: column;
    align-items: center;
  }

  /* Hide horizontal arrows on mobile, show vertical connector */
  .lc-arrow-wrap {
    display: none;
  }

  .lc-col {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 24px;
    float: none;
  }

  .lc-card {
    padding: 30px 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
  }

  .lc-ghost-num {
    font-size: 48px;
    margin-bottom: 6px;
    text-align: left;
  }

  /* Mobile vertical step connector */
  .lc-col:not(:last-child)::after {
    content: '↓';
    display: block;
    text-align: center;
    font-size: 22px;
    color: var(--g400);
    margin-top: 4px;
    margin-bottom: -12px;
  }
  .mentors-section {
    padding: 48px 0 56px;
  }

  .mentors-header {
    margin-bottom: 36px;
  }

  .mentors-title {
    font-size: 1.75rem;
  }

  .mentor-col {
    width: 100%;
    margin-bottom: 16px;
  }

  .mentor-card {
    padding: 20px 16px;
    gap: 14px;
  }

  .mentor-avatar {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

  .mentor-name {
    font-size: 16px;
  }

  .mentor-spec {
    font-size: 12px;
  }

  .mentor-desc {
    font-size: 13.5px;
  }
}

@media (max-width: 479px) {
  .lc-col {
    padding-left: 10px;
    padding-right: 10px;
  }

  .lc-card {
    padding: 22px 18px 20px;
  }

  .lc-title {
    font-size: 1.55rem;
  }

  .lc-subtitle {
    font-size: 14px;
  }

  .lc-ghost-num {
    font-size: 40px;
  }

  .lc-card-title {
    font-size: 16px;
  }
  .mentors-subtitle {
    font-size: 14px;
  }

  .mentor-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .mentor-avatar {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }

  .mentor-iim-badge {
    font-size: 8px;
    padding: 2px 5px;
  }

  .btn-primary-custom {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
  }
  .choose-steps-grid { grid-template-columns: 1fr; }
}

.bottom-offer-bar{ display:none;}
.toppers {
    margin: 0 0px;
}
.persona-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}
.nome {
    font-size: 18px;
    color: #4c4c4c;
    margin-bottom: 40px;
}
.achievers-speak-testmonials {
    background: #ffffff !important;
}
.regular-achievers-speak .slick-list {
    margin: 0 0px!important;
}
.achievers-speak-testmonials .slick-arrow {
    background-color: transparent !important;
    background-size: contain!important;

}
.achievers-speak-testmonials .slick-prev {
    left: -30px !important;
}
.achievers-speak-testmonials .slick-next {
    right: -30px !important;
}


.persona-desc {
  max-height: 140px;
  overflow-y: auto;
  padding-right: 6px;
  line-height: 1.6;
}


.persona-desc::-webkit-scrollbar {
  width: 4px;
}

.persona-desc::-webkit-scrollbar-thumb {
  background-color: #bdbdbd;
  border-radius: 4px;
}

.persona-desc::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Free resources responsive */
@media (max-width: 768px) {
  .free-resources-grid {
    grid-template-columns: 1fr 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .why-cl-card-wrap {
    margin-bottom: 15px;
}
.mentor-card {
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .free-resources-grid {
    grid-template-columns: 1fr;
  }
  .cl-stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Additional CSS ===== */
@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;
color: #444!important;
font-weight: normal;
line-height: 24px !important;
}

.mt-5 { margin-top: 5px; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* Margin Bottom */
.mb-5 { margin-bottom: 5px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.p-0  { padding: 0 !important; }
.p-5  { padding: 5px !important; }
.p-10 { padding: 10px !important; }
.p-15 { padding: 15px !important; }
.p-20 { padding: 20px !important; }
.p-30 { padding: 30px !important; }
.p-50 { padding: 50px !important; }


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold!important;
  line-height: 1.3;
  color: #000;
}
.gry-bg{ background: #fbfbfb;}

:root {
--primary: #ff4500;
--primary-hover: #e63e00;
--primary-light: #fff5f0;
--secondary: #ff4500;
--foreground: #1a1a2e;
--muted: #4c4c4c;
--background: #ffffff;
--card-bg: #ffffff;
--border: #e5e7eb;
--gradient-hero: linear-gradient(135deg, #ff4500 0%, #cc2200 100%);
--gradient-cta: linear-gradient(135deg, #ff4500 0%, #e63900 100%);
--shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
--shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
--shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
--radius: 12px;
}

* {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

.title-orange {
    color: #ff4500;
}

body {
font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
color: var(--foreground);
background: var(--background);
line-height: 1.6;
margin: 0;
padding: 0;
}

.nav-cta {
    background: var(--gradient-cta);
    color: #fff !important;
    padding: 10px 15px !important;
    border-radius: 8px;
    font-weight: 700;
}

a {
text-decoration: none;
transition: all 0.3s ease;
}

img {
max-width: 100%;
height: auto;
}

/* ========== Utility Classes ========== */
.section-padding {
padding: 50px 0;
}

@media (max-width: 768px) {
.section-padding {
padding: 50px 0;
}
}

.section-tag {
display: inline-block;
padding: 8px 16px;
background: var(--primary-light);
color: var(--primary);
border-radius: 50px;
font-size: 14px;
font-weight: 600;
margin-bottom: 16px;
}

.section-tag-light {
background: rgba(255,255,255,0.15);
color: #fff;
}



@media (min-width: 768px) {
}

.section-title-light {
color: #fff;
}

.section-subtitle {
    /* font-size: 17px; */
    color: var(--muted);
    max-width: 860px;
    margin: 0 auto 20px;
}

.section-subtitle-light {
color: rgba(255,255,255,0.85);
}

.bg-light-gray {
background: linear-gradient(100deg, #fdf7f7 45%, #fffbf3 60%);
}

.text-center {
text-align: center;
}

/* ========== Buttons ========== */
.btn-primary-custom {
background: var(--gradient-cta);
color: #fff;
border: none;
padding: 14px 32px;
font-size: 16px;
font-weight: 700;
border-radius: var(--radius);
box-shadow: 0 4px 14px rgba(255,69,0,0.4);
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 8px;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
opacity: 0.9;
transform: translateY(-2px);
color: #fff;
box-shadow: 0 6px 20px rgba(255,69,0,0.5);
}

.btn-outline-custom {
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
padding: 12px 28px;
font-size: 15px;
font-weight: 600;
border-radius: var(--radius);
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 8px;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
background: var(--primary);
color: #fff;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #eb3b00;
    border: 2px solid rgb(242 63 0);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-outline:hover,
.btn-hero-outline:focus {
background: rgba(255,255,255,0.2);
color:#eb3b00;
}

.btn-block {
display: block;
width: 100%;
}

.btn-lg {
padding: 16px 36px;
font-size: 16px;
}

/* ========== Header/Navigation ========== */
.main-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: transparent;
transition: all 0.3s ease;
padding: 10px 0;
}

.main-header.scrolled {
background: rgba(255,255,255,0.98);
box-shadow: var(--shadow-md);
backdrop-filter: blur(10px);
}

.header-container {
display: flex;
align-items: center;
justify-content: space-between;
}

.logo img {
height: 48px;
width: auto;
}


/* ========== Hero Section ========== */
.baner-region {
background: linear-gradient(100deg, #fdf7f7 45%, #fff 60%) !important;
/* padding: 140px 0 80px;
position: relative;
overflow: hidden; */
}
.hero-section .hero-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    margin-bottom: 12px;
    font-size: 14px;
    background: #fff;
    padding: 8px 12px;
}

.faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

@media (min-width: 768px) {
.hero-section {
padding: 20px 0 30px;
}
}

.hero-decoration {
position: absolute;
border-radius: 50%;
filter: blur(60px);
pointer-events: none;
}

.hero-decoration-1 {
top: -100px;
right: -100px;
width: 300px;
height: 300px;
background: rgba(255,200,100,0.2);
}

.hero-decoration-2 {
bottom: -100px;
left: -100px;
width: 400px;
height: 400px;
background: rgba(255,255,255,0.1);
}

.hero-content {
position: relative;
z-index: 1;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    backdrop-filter: blur(4px);
    color: #ef3d00;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 2px solid #f33f00;
}

.hero-title {
font-size: 32px;
color: #000;
margin-bottom: 20px!important;
line-height: 1.2;
}

@media (min-width: 768px) {
.hero-title {
font-size: 42px;
}
}

@media (min-width: 992px) {
.hero-title {
font-size: 39px;
}
}

.hero-subtitle {
font-size: 18px;
color: var(--muted);
margin-bottom: 5px!important;
max-width: 600px;
line-height:26px;
}

.hero-highlights {
list-style: none;
padding: 0;
margin: 0 0 10px;
}

.hero-highlights li {
display: flex;
align-items: flex-start;
gap: 12px;
color: var(--muted);
margin-bottom: 12px;
font-size: 15px;
}

.hero-highlights li i {
    color: #9e284f;
    margin-top: 3px;
    font-size: 15px;
}
#programs {
    background: linear-gradient(100deg, #fdf7f7 45%, #fffbf3 60%);
}
#enquiry .hero-buttons {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;}



.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    justify-content: flex-start;
}

.hero-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border: 1px solid #f9edd5;
}

.hero-form-title {
font-size: 22px;
color: var(--foreground);
margin-bottom: 10px;
margin-top: 0;
text-align: center;
}

.hero-form-subtitle {
font-size: 14px;
color: var(--muted);
text-align: center;
margin-bottom: 15px;
}

.form-group {
margin-bottom: 16px;
position: relative;
}

button.btnotp-2 {
    right: 6px;
    top: 5px;
}

.form-group label {
display: block;
font-size: 14px;
font-weight: 600;
color: var(--foreground);
margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    height: 38px;
    box-shadow: none;
}
.form-control:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(255,69,0,0.1);
}

.form-help {
font-size: 12px;
color: var(--muted);
text-align: center;
margin-top: 16px;
}

/* ========== Programs Section ========== */
.program-card {
background: #fff;
border-radius: var(--radius);
padding: 28px;
box-shadow: var(--shadow-lg);
transition: all 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
position: relative;
margin-bottom: 24px;
}

.program-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
}

.program-card.featured {
border: 2px solid rgba(255,69,0,0.2);
}

.program-badge {
position: absolute;
top: -12px;
left: 24px;
background: var(--primary);
color: #fff;
padding: 4px 12px;
border-radius: 50px;
font-size: 11px;
font-weight: 700;
}

.program-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}

.program-icon {
width: 48px;
height: 48px;
background: var(--primary-light);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
font-size: 22px;
transition: all 0.3s ease;
}

.program-card:hover .program-icon {
background: var(--primary);
color: #fff;
}

.program-tag {
font-size: 11px;
font-weight: 700;
color: var(--primary);
text-transform: uppercase;
letter-spacing: 0.5px;
}

.program-title {
font-size: 20px;
color: var(--foreground);
margin-bottom: 12px;
transition: color 0.3s ease;
}

.program-card:hover .program-title {
color: var(--primary);
}

.program-desc {
font-size: 14px;
color: var(--muted);
margin-bottom: 20px;
}

.program-highlights {
list-style: none;
padding: 0;
margin: 0 0 24px;
flex-grow: 1;
}

.program-highlights li {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
color: rgba(26,26,46,0.8);
margin-bottom: 8px;
}

.program-highlights li::before {
content: '';
width: 6px;
height: 6px;
background: var(--primary);
border-radius: 50%;
flex-shrink: 0;
}

/* ========== Why CL Section ========== */
.why-card {
background: #fff;
border-radius: var(--radius);
padding: 12px;
box-shadow: var(--shadow-lg);
transition: all 0.3s ease;
min-height: 203px;
margin-top:10px;
}
.prep{
min-height: 210px;
}
.why-card:hover {
box-shadow: 0 0 40px rgba(255,69,0,0.15);
}

.why-card-inner {
display: flex;
align-items: flex-start;
gap: 20px;
}

.why-prep-inner {
    display: inline-grid;
    align-items: flex-start;
    gap: 20px;
}
.why-icon {
width: 56px;
height: 56px;
min-width: 56px;
background: var(--gradient-hero);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 24px;
transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
transform: scale(1.1);
}

.why-title {
font-size: 20px;
color: var(--foreground);
margin-bottom: 8px;
transition: color 0.3s ease;
margin-top: 0px;
}

.why-card:hover .why-title {
color: var(--primary);
}

.why-desc {
font-size: 15px;
color: var(--muted);
margin: 0;
line-height: 1.6;
}

/* ========== Features Section ========== */
.feature-card {
background: #fff;
border-radius: var(--radius);
padding: 24px;
box-shadow: var(--shadow-lg);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
margin-bottom: 24px;
min-height:250px;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 100px;
height: 100px;
background: var(--primary-light);
border-radius: 50%;
transform: translate(30%, -30%);
transition: background 0.3s ease;
}

.feature-card:hover::before {
background: rgba(255,69,0,0.15);
}

.feature-icon {
width: 48px;
height: 48px;
background: var(--primary-light);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
font-size: 22px;
margin-bottom: 16px;
transition: all 0.3s ease;
position: relative;
z-index: 1;
}

.feature-card:hover .feature-icon {
background: var(--primary);
color: #fff;
transform: scale(1.1);
}

.feature-title {
font-size: 18px;
color: var(--foreground);
margin-bottom: 8px;
transition: color 0.3s ease;
position: relative;
z-index: 1;
}

.feature-card:hover .feature-title {
color: var(--primary);
}

.feature-desc {
font-size: 14px;
color: var(--muted);
margin: 0;
position: relative;
z-index: 1;
}

/* ========== Results Section ========== */
.results-section {
position: relative;
overflow: hidden;
}

.results-decoration {
position: absolute;
border-radius: 50%;
filter: blur(60px);
pointer-events: none;
}

.results-decoration-1 {
top: 50px;
right: 50px;
width: 250px;
height: 250px;
background: rgba(255,200,100,0.2);
}

.results-decoration-2 {
bottom: 50px;
left: 50px;
width: 300px;
height: 300px;
background: rgba(255,255,255,0.1);
}

.result-card {
background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
border-radius: var(--radius);
padding: 28px;
box-shadow: var(--shadow-lg);
text-align: left;
transition: all 0.3s ease;
margin-bottom: 24px;
position: relative;
z-index: 1;
}

.result-card:hover {
transform: scale(1.02);
}

.result-icon {
width: 64px;
height: 64px;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 28px;
margin-bottom: 20px;
transition: transform 0.3s ease;
}

.result-card:hover .result-icon {
transform: scale(1.1);
}

.result-icon.gold {
background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.result-icon.blue {
background: var(--gradient-hero);
}

.result-icon.green {
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.result-metric {
font-size: 28px;
font-weight: 800;
color: var(--foreground);
margin-bottom: 0;
}

.result-metric-sub {
font-size: 14px;
font-weight: 700;
color: var(--primary);
margin-bottom: 12px;
}

.result-title {
font-size: 20px;
color: var(--foreground);
margin-bottom: 8px;
}

.result-desc {
font-size: 14px;
color: var(--muted);
margin: 0;
}

/* ========== Who Is It For Section ========== */
.persona-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px 10px;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0 0px;
    border: 2px solid #e2e8f0;
}
.persona-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
}
.know-mentor {
    box-shadow: 0 0 17px rgb(255 7 0 / 25%);
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 3px solid #f73f00a3;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 15px;
}

.persona-header {
margin-bottom: 5px;
}

.persona-icon {
width: 56px;
height: 56px;
background: var(--gradient-hero);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 24px;
transition: transform 0.3s ease;
}

.persona-card:hover .persona-icon {
transform: scale(1.1);
}

.persona-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.persona-title {
font-size: 20px;
color: var(--foreground);
margin-bottom: 0px;
transition: color 0.3s ease;
margin-top: 0;
}

.persona-card:hover .persona-title {
color: var(--primary);
}

.persona-desc {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 0px;
}

.persona-benefits {
list-style: none;
padding: 0;
margin: 0 0 24px;
flex-grow: 1;
}

.persona-benefits li {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 14px;
color: rgba(26,26,46,0.8);
margin-bottom: 8px;
}

.persona-benefits li::before {
content: '';
width: 6px;
height: 6px;
background: var(--primary);
border-radius: 50%;
flex-shrink: 0;
margin-top: 7px;
}

/* ========== FAQ Section ========== */
.faq-item {
background: #fff;
border-radius: var(--radius);
margin-bottom: 16px;
box-shadow: var(--shadow-lg);
overflow: hidden;
transition: all 0.3s ease;
}

.faq-item.active {
box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,69,0,0.2);
}

.faq-question {
padding: 20px 24px;
font-size: 16px;
font-weight: 600;
color: var(--foreground);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: color 0.3s ease;
}

.faq-question:hover {
color: var(--primary);
}

.faq-question i {
font-size: 14px;
color: var(--muted);
transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
transform: rotate(180deg);
}

.faq-answer {
display: none;
padding: 0 24px 20px;
color: var(--muted);
font-size: 15px;
line-height: 1.7;
}

.faq-item.active .faq-answer {
display: block;
}

/* ========== Enquiry Section ========== */
.enquiry-benefits {
list-style: none;
padding: 0;
margin: 0 0 32px;
}

.enquiry-benefits li {
display: flex;
align-items: center;
gap: 12px;
font-size: 16px;
color: var(--foreground);
margin-bottom: 12px;
}

.enquiry-benefits li i {
color: var(--primary);
font-size: 18px;
}

.enquiry-tip {
background: #fff;
border-radius: var(--radius);
padding: 16px 20px;
box-shadow: var(--shadow-md);
font-size: 14px;
color: var(--muted);
}

.enquiry-tip strong {
color: var(--foreground);
}

.enquiry-form-card {
background: #fff;
border-radius: var(--radius);
padding: 32px;
box-shadow: var(--shadow-xl);
}

.form-row {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.form-row .form-group {
flex: 1;
min-width: 200px;
}

.form-disclaimer {
font-size: 12px;
color: var(--muted);
text-align: center;
margin-top: 16px;
}

/* ========== Sticky Bar ========== */
.sticky-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(255,255,255,0.98);
backdrop-filter: blur(10px);
border-top: 1px solid var(--border);
box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
padding: 16px 0;
z-index: 900;
display: none;
}

@media (min-width: 768px) {
.sticky-bar {
display: block;
}
}

.sticky-bar-inner {
display: flex;
align-items: center;
justify-content: space-between;
}

.sticky-bar-text {
font-size: 16px;
font-weight: 600;
color: var(--foreground);
}

.sticky-bar-text span {
color: var(--muted);
font-weight: 400;
}

/* ========== Footer ========== */
.main-footer {
background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
padding: 32px 0;
padding-bottom: 100px;
}

.box-area.with-img .feature-content {
    margin-right: 15px;
    padding: 10px 15px;
    margin-top: 15px;
     margin-bottom: 15px;
}
.box-area.with-img .feature-content h4 {
    background-color: transparent;
    min-height: inherit;
    padding: 5px 0 5px 24px;
}

.box-area.with-img .program-box h5 {

}
.hide {

}
.box-area .pricetbtn {
    margin: 10px 15px;

}
.box-area.with-img .program-box {
    padding: 0px;
    margin: 0 0px;
}
.feature-content {
    height: 200px;
    overflow: auto;
}

.slick-prev {
    background-image: url(/cat-mba/images/left-arrow-angle.png) !important;
    right: inherit;
    left: -30px;
}
.slick-next{right: -30px;left: inherit;}


.slick-arrow{top: 50%;    background-size: 35px;}
.carousel-control-next-icon, .carousel-control-prev-icon {
    background-color: #e83a00;
    border-radius: 30px;
        background-size: 69%;
}
.carousel-control-next, .carousel-control-prev{opacity: 0.9;}

.carousel-control-next, .carousel-control-prev{width: 5%;}

.service {
    min-height: 140px;
}
.service {
    background-color: #fff8f4;
    margin: 0 auto;
    min-height: 160px;
    padding: 15px;
    transition: .5s ease;
    position: relative;
    margin-top: 10px;
    border-radius: 30px;
}
.blri1 {
    background: #ffe9e9;
}

.blri2 {
    background: #e9eaff;
}
.preparation h5 {
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 0px;
}
.bullet ul {
    list-style: outside none none;
    padding: 0;
    margin-bottom: 0;
}

.bullet ul li {
list-style: outside none none;
margin: 0;
padding: 2px 0 2px 25px;
position: relative;
text-align: left;
width: 100%;
}

.bullet ul li::before {
color: #e85222;
content: "\f00c";
font-family: "FontAwesome";
font-size: 14px;
left: 0;
position: absolute;
top: 3px;
text-align: center;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 14px rgb(0 0 0 / 13%);
    padding: 5px;
    background: #fff;
    border-radius: 10px;
}
.carousel-inner img {
    border-radius: 10px;
}

.service p {
    margin-bottom: 0;
}

#enquiry {
    background: linear-gradient(100deg, #fdf7f7 45%, #fffbf3 60%);
}
.yourcall {
    border: 1px solid #ee622f4d;
    background: #fff;
    margin: 0 auto;
    max-width: 1030px;
    border-radius: .75rem;
}
.usp-box {
    background-image: linear-gradient(135deg, #fef7f5, #fffcfc);
    border-radius: .75rem;
    padding: 13px 12px;
    border: 1px solid #ee622f1a;
    font-weight: 400;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;margin-bottom: 20px;
}
.usp-box svg {
    color: #e4551d !important;
}

@media (min-width: 768px) {
.main-footer {
padding-bottom: 32px;
}
}

.footer-inner {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
text-align: center;
}

@media (min-width: 768px) {
.footer-inner {
flex-direction: row;
justify-content: space-between;
text-align: left;
}
}

.footer-logo img {
height: 32px;
filter: brightness(0) invert(1);
}

.footer-links {
display: flex;
gap: 24px;
}

.footer-links a {
color: rgba(255,255,255,0.7);
font-size: 14px;
}

.footer-links a:hover {
color: #fff;
}

.footer-copyright {
color: rgba(255,255,255,0.5);
font-size: 14px;
margin: 0;
}
.form-group select {
    background: url(https://www.careerlauncher.com/images/br_down.png) no-repeat right #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position-x: 98%;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.animate-fade-in-up {
animation: fadeInUp 0.6s ease forwards;
}


@media only screen and (max-width: 767px) {
    .hero-section {
        padding: 20px 0 20px;
    }
.hero-section h5{ font-size: 16px;}
.hero-form-card {
    padding: 20px 20px 25px;margin-top: 20px;
}
.hero-form-title {
    font-size: 17px;
}
.btn-lg {
    padding: 8px 20px;
    font-size: 15px;
}
.btn-primary-custom {
    padding: 8px 20px;
    font-size: 15px;
}
.service {
min-height: inherit;
padding: 15px;
margin-top: 10px;
border-radius: 15px;
}
.section-padding {
padding: 25px 0;
}

.slick-prev {
left: -5px;
}
.slick-next {
right: -5px;
}
.slick-arrow {
background-color: #fd4400ab !important;
background-size: 24px;
}

.why-card {
padding: 15px;

}
.why-icon {
width: 40px;
height: 40px;
min-width: 40px;
font-size: 19px;
}

.why-title {
    font-size: 17px;
}
.feature-title {
    font-size: 17px;
}

#who-is-it-for .slick-next {
right: 16px;
}
#who-is-it-for .slick-prev {
left: 16px;
}
.faq-question {
    padding: 20px 15px;
    font-size: 15px;
}
.faq-answer {
    padding: 0 15px 15px;
    font-size: 15px;
    line-height: 1.5;
}

.hero-highlights li {
    margin-bottom: 5px;
}
.hero-highlights {
    margin: 0 0 0px;
}
.hero-section .hero-buttons {
    margin-top: 15px;
}

.hero-title {
    font-size: 28px;
}

.hero-section .hero-highlights li {
    margin-bottom: 5px;
    padding: 6px 12px;
}

}
