/* ==========================================================================
   CORPORATE TRAINING PAGE - corporate.css
   Loaded AFTER style.css. Header, footer, buttons, container, section,
   .c-pink etc all come from style.css - not redefined here.
   ========================================================================== */

:root {
  --indigo: #4338CA;
  --purple: #7C3AED;
}


.corp-hero{

    margin-top: 90px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--pink); font-weight: 500; }
.breadcrumb i { font-size: 9px; color: #C6C6D6; }
.breadcrumb span { color: var(--navy); font-weight: 600; }

.section-label {
  display: inline-block;
  color: var(--pink);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-header.centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}
.section-header.centered h2 { font-size: 26px; }

/* Extra button variants unique to this page */
.btn-purple-solid {
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  color: #fff;
  box-shadow: 0 8px 20px rgba(76, 29, 210, 0.28);
}
.btn-white-solid {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ==========================================================================
   CORPORATE HERO
   ========================================================================== */
.corp-hero {
  padding: 20px 0 40px;
  overflow: hidden;
}
.corp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.corp-hero-title {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.22;
  margin-bottom: 16px;
}

.corp-hero-desc {
  font-size: 14px;
  color: var(--text-gray);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.corp-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 14px;
  margin-bottom: 26px;
}
.corp-feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}
.corp-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ECE5FC;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.corp-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.corp-hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(20,20,60,0.15);
}
.corp-hero-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
/* Decorative pink/purple clipped accent corner */
.corp-hero-media::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.corp-stats {
  background: #F7F6FC;
  padding: 26px 0;
  margin-bottom: 10px;
}
.corp-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 16px;
}
.cstat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cstat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
}
.icon-purple { background: var(--purple); }
.icon-pink   { background: var(--pink); }
.icon-indigo { background: var(--indigo); }
.icon-orange { background: var(--orange); }
.icon-pink2  { background: #E0227A; }

.cstat-item div { display: flex; flex-direction: column; line-height: 1.3; }
.cstat-num { font-size: 18px; font-weight: 800; color: var(--navy); }
.cstat-label { font-size: 11px; color: var(--text-gray); font-weight: 500; }

/* ==========================================================================
   TRAINING SOLUTIONS
   ========================================================================== */
.corp-solutions { padding: 40px 0; }
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.solution-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 14px rgba(20,20,50,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(20,20,50,0.08); }
.solution-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.icon-purple-soft { background: #ECE5FC; color: var(--purple); }
.icon-pink-soft   { background: #FFE3F1; color: var(--pink); }
.icon-orange-soft { background: #FFE9DC; color: var(--orange); }
.icon-blue-soft   { background: #E1EBFF; color: #2E5CE6; }
.icon-green-soft  { background: #E1F9EE; color: #12B76A; }

.solution-card h3 { font-size: 15px; margin-bottom: 8px; }
.solution-card p { font-size: 12.5px; color: var(--text-gray); line-height: 1.6; margin-bottom: 14px; }

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--purple);
}
.explore-link i { font-size: 10px; transition: transform 0.2s ease; }
.explore-link:hover i { transform: translateX(3px); }

/* ==========================================================================
   TRAINING PROCESS
   ========================================================================== */
.corp-process { padding: 20px 0 44px; background: #FCFCFE; }
.corp-process-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 16px;
}
.cprocess-step {
  text-align: center;
  position: relative;
}
.cstep-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}
.badge-purple { background: var(--purple); }
.badge-pink   { background: var(--pink); }
.badge-orange { background: var(--orange); }
.badge-blue   { background: #2E5CE6; }
.badge-green  { background: #12B76A; }

.cstep-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  margin: 0 auto 12px;
  border: 2px solid;
}
.icon-purple-ring { color: var(--purple); border-color: #ECE5FC; }
.icon-pink-ring   { color: var(--pink); border-color: #FFE3F1; }
.icon-orange-ring { color: var(--orange); border-color: #FFE9DC; }
.icon-blue-ring   { color: #2E5CE6; border-color: #E1EBFF; }
.icon-green-ring  { color: #12B76A; border-color: #E1F9EE; }

.cprocess-step h4 { font-size: 14px; margin-bottom: 6px; }
.cprocess-step p { font-size: 11.5px; color: var(--text-gray); line-height: 1.5; padding: 0 4px; }

/* ==========================================================================
   BENEFITS + POPULAR PROGRAMS
   ========================================================================== */
.corp-benefits { padding: 20px 0 44px; }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.benefits-card {
  background: #F5F3FC;
  border-radius: 20px;
  padding: 28px 24px;
}
.benefits-card h3 { font-size: 19px; margin-bottom: 20px; }
.benefits-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
}
.benefits-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}
.benefits-checklist i { color: var(--purple); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

.programs-card {
  position: relative;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 55%, #C0289C 100%);
  border-radius: 20px;
  padding: 28px 24px;
  overflow: hidden;
}
.programs-label {
  display: inline-block;
  color: #FFD6EF;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.programs-checklist {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.programs-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
}
.programs-checklist i { color: #6EE7B7; font-size: 14px; margin-top: 2px; flex-shrink: 0; }

.programs-card .btn-white-solid {
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.programs-photo {
  display: none; /* shown from tablet breakpoint up, mirrors reference design */
}

/* ==========================================================================
   TRUSTED BY LEADING COMPANIES (logo slider)
   ========================================================================== */
.corp-trusted { padding: 20px 0; text-align: center; }
.trusted-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 20px;
}
.trusted-wrap { overflow: hidden; }
.trusted-track {
  display: flex;
  gap: 14px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.trusted-logo {
  flex: 0 0 calc(50% - 7px);
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 18px 10px;
  font-weight: 700;
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tdots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.tdot { width: 8px; height: 8px; border-radius: 50%; background: #E2E2ED; border: none; cursor: pointer; padding: 0; transition: width 0.2s ease, background 0.2s ease; }
.tdot.active { background: var(--purple); width: 22px; border-radius: 6px; }

/* ==========================================================================
   WHAT OUR PARTNERS SAY
   ========================================================================== */
.corp-testimonials { padding: 30px 0 50px; text-align: center; }
.partners-say-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 24px;
}
.ctest-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ctest-track-outer { flex: 1; overflow: hidden; }
.ctest-grid {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.ctest-card {
  background: #F7F6FC;
  border-radius: 16px;
  padding: 26px 22px;
  flex-shrink: 0;
  width: 100%;
  text-align: left;
}
.quote-icon { color: var(--purple); font-size: 20px; opacity: 0.3; margin-bottom: 10px; }
.ctest-card p { font-size: 13.5px; color: #333; line-height: 1.7; margin-bottom: 20px; }
.ct-person { display: flex; align-items: center; gap: 12px; position: relative; }
.ct-person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.ct-person h4 { font-size: 13.5px; margin-bottom: 2px; }
.ct-person span { font-size: 11.5px; color: var(--text-gray); }
.ct-company {
  margin-left: auto;
  font-weight: 700;
  font-size: 13px;
  color: #B3B3C2;
}

.ctarrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-gray);
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.ctarrow:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.ctarrow:disabled { opacity: 0.35; cursor: not-allowed; }
.ctarrow:disabled:hover { background: #fff; color: var(--navy); border-color: var(--border-gray); }

/* ==========================================================================
   CTA BANNER (page-specific gradient variant)
   ========================================================================== */
.corp-cta {
  background: linear-gradient(100deg, var(--indigo) 0%, var(--purple) 50%, var(--pink) 100%);
  border-radius: 24px;
  max-width: 1200px;
  margin: 10px auto 50px;
  padding: 30px 22px;
}
.corp-cta .cta-inner {
  max-width: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.corp-cta .cta-left { display: flex; align-items: flex-start; gap: 16px; }
.corp-cta .cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  color: var(--yellow);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.corp-cta .cta-left h3 { color: #fff; font-size: 18px; margin-bottom: 6px; }
.corp-cta .cta-left p { color: rgba(255,255,255,0.85); font-size: 12.5px; }
.corp-cta .cta-buttons { display: flex; flex-direction: column; gap: 12px; }
.corp-cta .cta-buttons .btn { width: 100%; justify-content: center; }

/* ==========================================================================
   MOBILE STICKY ACTION BAR
   Hidden by default (desktop); shown as a fixed bottom bar on small screens.
   ========================================================================== */
.mobile-action-bar {
  display: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (min-width: 480px) {
  .corp-hero-title { font-size: 32px; }
  .corp-hero-buttons { flex-direction: row; }
  .trusted-logo { flex: 0 0 calc(33.333% - 10px); }
}

@media (min-width: 576px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .corp-process-track { grid-template-columns: repeat(3, 1fr); }
  .ctest-card { width: calc(50% - 8px); }
  .corp-stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .corp-hero-title { font-size: 36px; }
  .corp-hero-media img { height: 300px; }
  .corp-feature-grid { grid-template-columns: repeat(4, 1fr); }
  .solutions-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .corp-stats-grid { grid-template-columns: repeat(5, 1fr); }
  .trusted-logo { flex: 0 0 calc(25% - 11px); }

  .corp-cta .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .corp-cta .cta-buttons { flex-direction: row; }
  .corp-cta .cta-buttons .btn { width: auto; }
  .corp-cta { padding: 36px 40px; }

  .programs-photo {
    display: block;
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 140px;
    height: 190px;
    object-fit: cover;
    object-position: top;
    border-top-left-radius: 40px;
    opacity: 0.95;
  }
}

@media (min-width: 992px) {
  .corp-hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .corp-hero-media img { height: 360px; }
  .solutions-grid { grid-template-columns: repeat(5, 1fr); }
  .corp-process-track { grid-template-columns: repeat(5, 1fr); }
  .ctest-card { width: calc(33.333% - 11px); }
  .trusted-logo { flex: 0 0 calc(12.5% - 13px); }
  .programs-photo { width: 160px; height: 210px; }
}

@media (min-width: 1200px) {
  .corp-hero-title { font-size: 40px; }
}

/* ---- Tablet & below: mobile sticky bar appears, page gets bottom padding
       so the bar never covers content, and the floating WhatsApp bubble
       from style.css is hidden to avoid overlapping the new bar. ---- */
@media (max-width: 768px) {
  body { padding-bottom: 62px; }

  .whatsapp-float { display: none; }

  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: #fff;
    box-shadow: 0 -6px 20px rgba(20,20,50,0.10);
  }
  .mab-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 9px 4px;
    font-size: 10.5px;
    font-weight: 600;
    color: #fff;
  }
  .mab-btn i { font-size: 15px; }
  .mab-whatsapp { background: #25D366; }
  .mab-apply { background: var(--pink); }
  .mab-call { background: var(--navy); }
}

@media (max-width: 640px) {
  .corp-hero { padding: 16px 0 30px; }
  .corp-hero-title { font-size: 24px; }
  .corp-hero-desc { font-size: 13px; }
  .corp-hero-media img { height: 190px; }

  .cstat-icon { width: 38px; height: 38px; font-size: 15px; }
  .cstat-num { font-size: 16px; }
  .cstat-label { font-size: 10px; }

  .solution-card { padding: 18px 16px; }
  .benefits-card, .programs-card { padding: 22px 18px; }

  .cstep-icon { width: 46px; height: 46px; font-size: 16px; }
  .cprocess-step p { font-size: 10.5px; }

  .trusted-logo { padding: 14px 8px; font-size: 12px; }
  .ctest-card { padding: 20px 18px; }
}