/* ═══════════════════════════════════════════════════════════
   CAREER / PLACEMENT PAGE STYLES — career.css
   ═══════════════════════════════════════════════════════════ */

:root {
  --cp-primary: #1e3a5f;
  --cp-accent: #f97316;
  --cp-accent2: #4f46e5;
  --cp-green: #16a34a;
  --cp-text: #1e293b;
  --cp-muted: #64748b;
  --cp-border: #e2e8f0;
  --cp-bg: #f8fafc;
  --cp-radius: 14px;
  --cp-shadow: 0 4px 24px rgba(30, 58, 95, 0.09);
  --cp-shadow-lg: 0 16px 48px rgba(30, 58, 95, 0.15);
}

/* ═══════════════════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════════════════ */
.cp-hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #1e40af 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}

.cp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.cp-blob--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(249, 115, 22, .18), transparent 70%);
  top: -130px;
  right: -80px;
  animation: cpBlob1 9s ease-in-out infinite;
}

.cp-blob--2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(79, 70, 229, .2), transparent 70%);
  bottom: -80px;
  left: -60px;
  animation: cpBlob2 11s ease-in-out infinite;
}

.cp-blob--3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(22, 163, 74, .15), transparent 70%);
  top: 40%;
  left: 42%;
  animation: cpBlob3 13s ease-in-out infinite;
}

@keyframes cpBlob1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-25px, 18px) scale(1.1);
  }
}

@keyframes cpBlob2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(18px, -22px) scale(1.08);
  }
}

@keyframes cpBlob3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-15px, 12px) scale(1.05);
  }
}

.cp-hero__inner {
  position: relative;
  z-index: 2;
}

.cp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 163, 74, .15);
  border: 1px solid rgba(22, 163, 74, .35);
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.cp-hero__title {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin: 0 0 16px;
}

.cp-hero__title span {
  background: linear-gradient(90deg, #f97316, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cp-hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .72);
  max-width: 500px;
  line-height: 1.75;
  margin: 0 0 30px;
}

.cp-hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.cp-hero__badge i {
  color: #4ade80;
}

.cp-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all .25s;
  border: none;
  cursor: pointer;
}

.cp-btn--primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(249, 115, 22, .35);
}

.cp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, .45);
  color: #fff !important;
}

.cp-btn--outline {
  border: 2px solid rgba(255, 255, 255, .3) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
}

.cp-btn--outline:hover {
  border-color: rgba(255, 255, 255, .7) !important;
  background: rgba(255, 255, 255, .12);
  color: #fff !important;
}

/* Hero stats bar */
.cp-hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.cp-hero__stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #f97316;
  display: block;
  line-height: 1;
}

.cp-hero__stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
  display: block;
}

.cp-hero__stat-sep {
  width: 1px;
  background: rgba(255, 255, 255, .15);
  align-self: stretch;
}

/* Hero right — floating cards */
.cp-hero__right {
  position: relative;
}

.cp-hero__img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
  display: block;
}

.cp-float-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  animation: cpFloat 3s ease-in-out infinite;
}

.cp-float-card i {
  font-size: 20px;
}

.cp-float-card--tl {
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

.cp-float-card--br {
  bottom: -16px;
  right: -24px;
  animation-delay: 1.4s;
}

.cp-float-card--tl i {
  color: #16a34a;
}

.cp-float-card--br i {
  color: #f97316;
}

@keyframes cpFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ═══════════════════════════════════════════════════════════
   2. SECTION COMMONS
   ═══════════════════════════════════════════════════════════ */
.cp-section {
  padding: 40px 0;
}

.cp-section--alt {
  background: #f8fafc;
}

.cp-section--dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
}

.cp-section--dark .cp-section-title {
  color: #fff;
}

.cp-section--dark .cp-section-sub {
  color: rgba(255, 255, 255, .65);
}

.cp-section-head {
  text-align: center;
  margin-bottom: 48px;
}

.cp-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249, 115, 22, .1);
  border: 1px solid rgba(249, 115, 22, .25);
  color: #f97316;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  align-self: flex-start;
  width: fit-content;
}

.cp-section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--cp-primary);
  margin: 0 0 12px;
  line-height: 1.2;
}

.cp-section-sub {
  font-size: 16px;
  color: var(--cp-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   3. PLACEMENT STATS STRIP
   ═══════════════════════════════════════════════════════════ */
.cp-stats-strip {
  background: #fff;
  border-bottom: 1px solid var(--cp-border);
  padding: 28px 0;
}

.cp-stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

@media(max-width:768px) {
  .cp-stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media(max-width:400px) {
  .cp-stats-strip__grid {
    grid-template-columns: 1fr;
  }
}

.cp-stats-strip__item {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid var(--cp-border);
}

.cp-stats-strip__item:last-child {
  border-right: none;
}

.cp-stats-strip__num {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #f97316, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.cp-stats-strip__lbl {
  font-size: 12px;
  color: var(--cp-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 5px;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   4. PLACEMENT SUPPORT CARDS
   ═══════════════════════════════════════════════════════════ */
.cp-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media(max-width:991px) {
  .cp-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px) {
  .cp-support-grid {
    grid-template-columns: 1fr;
  }
}

.cp-support-card {
  background: #fff;
  border-radius: var(--cp-radius);
  padding: 28px 24px;
  border: 1.5px solid var(--cp-border);
  box-shadow: var(--cp-shadow);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.cp-support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--csc-accent, linear-gradient(90deg, #f97316, #ea580c));
  border-radius: 3px 3px 0 0;
}

.cp-support-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cp-shadow-lg);
}

.cp-support-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
}

.cp-support-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--cp-primary);
  margin: 0 0 8px;
}

.cp-support-card p {
  font-size: 14px;
  color: var(--cp-muted);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   5. HOW IT WORKS — STEPS
   ═══════════════════════════════════════════════════════════ */
.cp-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.cp-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(100% / 6 / 2);
  right: calc(100% / 6 / 2);
  height: 2px;
  background: linear-gradient(90deg, #f97316, #4f46e5);
  z-index: 0;
}

@media(max-width:768px) {
  .cp-steps {
    flex-direction: column;
    gap: 24px;
  }

  .cp-steps::before {
    display: none;
  }
}

.cp-step {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}

.cp-step__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--cp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: var(--cp-accent);
  box-shadow: 0 4px 18px rgba(249, 115, 22, .2);
  transition: all .3s;
  position: relative;
}

.cp-step:hover .cp-step__icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  box-shadow: 0 8px 26px rgba(249, 115, 22, .4);
  transform: scale(1.08);
}

.cp-step__num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--cp-accent2);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.cp-step h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--cp-primary);
  margin: 0 0 6px;
}

.cp-step p {
  font-size: 12px;
  color: var(--cp-muted);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   6. HIRING PARTNER LOGOS
   ═══════════════════════════════════════════════════════════ */
.cp-companies {
  background: #fff;
  padding: 70px 0;
}

.cp-logos-track {
  overflow: hidden;
  margin-top: 16px;
  -webkit-mask: linear-gradient(90deg, transparent, #fff 15%, #fff 85%, transparent);
  mask: linear-gradient(90deg, transparent, #fff 15%, #fff 85%, transparent);
}

.cp-logos-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: cpScroll 28s linear infinite;
}

.cp-logos-inner:hover {
  animation-play-state: paused;
}

@keyframes cpScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cp-logo-item {
  min-width: 160px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-right: 1px solid var(--cp-border);
  flex-shrink: 0;
}

.cp-logo-item span {
  font-size: 15px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: color .2s;
}

.cp-logo-item:hover span {
  color: var(--cp-accent);
}

/* Company grid for sectors */
.cp-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media(max-width:991px) {
  .cp-sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:480px) {
  .cp-sector-grid {
    grid-template-columns: 1fr;
  }
}

.cp-sector-card {
  background: var(--cp-bg);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--cp-border);
  text-align: center;
  transition: all .25s;
}

.cp-sector-card:hover {
  background: #fff;
  box-shadow: var(--cp-shadow);
  transform: translateY(-3px);
  border-color: var(--cp-accent);
}

.cp-sector-card i {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.cp-sector-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--cp-primary);
  margin: 0 0 4px;
}

.cp-sector-card p {
  font-size: 12px;
  color: var(--cp-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   7. SUCCESS STORIES
   ═══════════════════════════════════════════════════════════ */
.cp-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media(max-width:991px) {
  .cp-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px) {
  .cp-stories-grid {
    grid-template-columns: 1fr;
  }
}

.cp-story-card {
  background: #fff;
  border-radius: var(--cp-radius);
  overflow: hidden;
  border: 1.5px solid var(--cp-border);
  box-shadow: var(--cp-shadow);
  transition: transform .3s, box-shadow .3s;
}

.cp-story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cp-shadow-lg);
}

.cp-story-card__top {
  padding: 20px 20px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cp-story-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--cp-accent);
}

.cp-story-card__avatar-ph {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--cp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.cp-story-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--cp-primary);
  margin: 0 0 2px;
}

.cp-story-card__role {
  font-size: 12px;
  color: var(--cp-accent);
  font-weight: 600;
  margin: 0;
}

.cp-story-card__company {
  font-size: 11px;
  color: var(--cp-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
}

.cp-story-card__body {
  padding: 0 20px 18px;
}

.cp-story-card__quote {
  font-size: 13px;
  color: var(--cp-muted);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--cp-accent);
}

.cp-story-card__footer {
  background: var(--cp-bg);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cp-border);
}

.cp-story-card__course {
  font-size: 11px;
  font-weight: 700;
  color: var(--cp-accent2);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.cp-story-card__pkg {
  font-size: 13px;
  font-weight: 800;
  color: var(--cp-green);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ═══════════════════════════════════════════════════════════
   8. CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cp-cta-banner {
  background: linear-gradient(135deg, #f97316, #ea580c);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cp-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10S0 14.5 0 20s4.5 10 10 10 10-4.5 10-10zm10 0c0 5.5 4.5 10 10 10s10-4.5 10-10-4.5-10-10-10-10 4.5-10 10z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cp-cta-banner h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}

.cp-cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, .85);
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}

.cp-cta-banner__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cp-btn--white {
  background: #fff;
  color: #f97316 !important;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  transition: all .25s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.cp-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .2);
  color: #ea580c !important;
}

.cp-btn--ghost-white {
  border: 2px solid rgba(255, 255, 255, .6) !important;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  transition: all .25s;
  font-weight: 700;
  background: transparent;
}

.cp-btn--ghost-white:hover {
  border-color: #fff !important;
  background: rgba(255, 255, 255, .12);
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════
   9. ENQUIRY FORM SECTION
   ═══════════════════════════════════════════════════════════ */
.cp-enq {
  padding: 80px 0;
  background: var(--cp-bg);
}

.cp-enq__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

@media(max-width:991px) {
  .cp-enq__grid {
    grid-template-columns: 1fr;
  }
}

.cp-enq__info h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--cp-primary);
  margin: 0 0 12px;
}

.cp-enq__info p {
  font-size: 15px;
  color: var(--cp-muted);
  line-height: 1.75;
  margin: 0 0 26px;
}

.cp-enq__contact {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--cp-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  margin-bottom: 12px;
}

.cp-enq__ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.cp-enq__ci-lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--cp-muted);
  margin: 0 0 2px;
}

.cp-enq__ci-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--cp-primary);
  text-decoration: none;
}

.cp-enq__form {
  background: #fff;
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--cp-shadow-lg);
  border: 1px solid var(--cp-border);
}

.cp-enq__form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--cp-primary);
  margin: 0 0 4px;
}

.cp-enq__form-sub {
  font-size: 13px;
  color: var(--cp-muted);
  margin: 0 0 24px;
}

.cp-field {
  margin-bottom: 14px;
}

.cp-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--cp-primary);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px;
}

.cp-field input,
.cp-field select,
.cp-field textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--cp-border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--cp-text);
  background: #f8fafc;
  transition: all .2s;
  outline: none;
  font-family: inherit;
}

.cp-field input:focus,
.cp-field select:focus,
.cp-field textarea:focus {
  border-color: var(--cp-accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .12);
  background: #fff;
}

.cp-field textarea {
  resize: vertical;
  min-height: 90px;
}

.cp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media(max-width:480px) {
  .cp-form-row {
    grid-template-columns: 1fr;
  }
}

.cp-form-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .25s;
  margin-top: 6px;
}

.cp-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, .35);
}

.cp-form-note {
  text-align: center;
  font-size: 12px;
  color: var(--cp-muted);
  margin-top: 8px;
}

.cp-form-note i {
  color: var(--cp-green);
}

.cp-alert-success {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #15803d;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  display: none;
}

.cp-alert-error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #dc2626;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   10. RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media(max-width:991px) {
  .cp-hero__title {
    font-size: 36px;
  }

  .cp-section {
    padding: 56px 0;
  }

  .cp-stories-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:767px) {
  .cp-hero {
    padding: 56px 0 44px;
  }

  .cp-hero__title {
    font-size: 30px;
  }

  .cp-hero__right {
    display: none;
  }

  .cp-section-title {
    font-size: 26px;
  }

  .cp-enq__form {
    padding: 22px 16px;
  }

  .cp-cta-banner {
    padding: 44px 0;
  }

  .cp-cta-banner h2 {
    font-size: 26px;
  }

  .cp-stats-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:480px) {
  .cp-stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Scroll-reveal */
.cp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.cp-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =======================================
   Verify Certificate Page
   ======================================= */

/* ---- Page hero banner ---- */
.vp-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.vp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.vp-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.vp-hero__icon {
  width: 52px;
  height: 52px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fb923c;
  font-size: 22px;
  flex-shrink: 0;
}
.vp-hero__text h1 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.2;
}
.vp-hero__text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ---- Section layout ---- */
.vp-section {
  padding: 48px 0 64px;
  background: #f8fafc;
  min-height: 60vh;
}

/* ---- Card ---- */
.vp-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(30,58,95,0.07);
  padding: 36px 32px 32px;
  max-width: 540px;
  margin: 0 auto;
}

/* ---- Header inside card ---- */
.vp-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 24px;
}
.vp-card-head__icon {
  width: 44px;
  height: 44px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea580c;
  font-size: 18px;
  flex-shrink: 0;
}
.vp-card-head__title {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a5f;
  margin: 0 0 2px;
}
.vp-card-head__sub {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

/* ---- Label ---- */
.vp-label {
  display: block;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

/* ---- Input ---- */
.vp-input {
  display: block;
  width: 100%;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: #1e293b;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: border-color 0.18s, box-shadow 0.18s;
  margin-bottom: 0;
}
.vp-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
  letter-spacing: 0;
}
.vp-input:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
  outline: none;
  background: #fff;
}

/* ---- Submit button ---- */
.vp-form { text-align: center; }
.vp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  margin-top: 14px;
  padding: 11px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 4px 14px rgba(249,115,22,0.30);
  transition: all 0.2s;
}
.vp-btn:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  box-shadow: 0 6px 20px rgba(249,115,22,0.40);
  transform: translateY(-1px);
  color: #fff;
}
.vp-btn:active { transform: translateY(0); }

/* ---- Result card ---- */
.vp-result-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  margin-top: 24px;
}

.vp-result-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
  font-weight: 700;
}
.vp-result-head.success {
  background: #f0fdf4;
  color: #15803d;
}
.vp-result-head.success i {
  color: #16a34a;
  font-size: 17px;
}

/* ---- Certificate info grid ---- */
.vp-cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.vp-cert-cell {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  border-right: 1px solid #f1f5f9;
}
.vp-cert-cell:nth-child(even) { border-right: none; }
.vp-cert-cell--full {
  grid-column: 1 / -1;
  border-right: none;
}
.vp-cert-cell:last-child,
.vp-cert-cell:nth-last-child(-n+2):not(.vp-cert-cell--full) {
  border-bottom: none;
}
.vp-cert-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94a3b8;
  margin-bottom: 4px;
}
.vp-cert-value {
  font-size: 15px;
  font-weight: 700;
  color: #1e3a5f;
}
.vp-cert-value.grade {
  color: #ea580c;
  font-size: 18px;
}

/* ---- Not-found alert ---- */
.vp-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  margin-top: 24px;
}
.vp-alert-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #fee2e2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
  font-size: 15px;
}
.vp-alert-title {
  font-size: 14px;
  font-weight: 700;
  color: #991b1b;
  margin-bottom: 3px;
}
.vp-alert-body {
  font-size: 13px;
  color: #b91c1c;
  line-height: 1.6;
}
.vp-alert-body a {
  color: #dc2626;
  font-weight: 600;
  text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 576px) {
  .vp-hero { padding: 32px 0 28px; }
  .vp-hero__text h1 { font-size: 20px; }
  .vp-card { padding: 24px 18px 20px; }
  .vp-cert-grid { grid-template-columns: 1fr; }
  .vp-cert-cell { border-right: none; }
  .vp-cert-cell--full { grid-column: 1; }
}
