:root {
  --p2c-primary: #2563eb;
  --p2c-secondary: #0f172a;
  --p2c-accent: #f97316;
  --p2c-ink: #0f172a;
  --p2c-muted: #64748b;
  --p2c-line: #e2e8f0;
  --p2c-soft: #f8fafc;
  --p2c-card-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
  --p2c-radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--p2c-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body:not(.p2c-home) {
  background: var(--p2c-soft);
}

main {
  min-height: 62vh;
}

a {
  color: var(--p2c-primary);
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
}

.btn-primary {
  --bs-btn-bg: var(--p2c-primary);
  --bs-btn-border-color: var(--p2c-primary);
  --bs-btn-hover-bg: #1d4ed8;
  --bs-btn-hover-border-color: #1d4ed8;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

.btn-outline-primary {
  --bs-btn-color: var(--p2c-primary);
  --bs-btn-border-color: rgba(37, 99, 235, 0.28);
  --bs-btn-hover-bg: var(--p2c-primary);
  --bs-btn-hover-border-color: var(--p2c-primary);
}

.btn-light {
  color: var(--p2c-secondary);
  border: 1px solid var(--p2c-line);
  box-shadow: var(--p2c-card-shadow);
}

.btn-accent {
  --bs-btn-bg: var(--p2c-accent);
  --bs-btn-border-color: var(--p2c-accent);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #ea580c;
  --bs-btn-hover-border-color: #ea580c;
}

.btn-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--p2c-secondary);
  border: 1px solid var(--p2c-line);
  background: #fff;
}

.p2c-navbar {
  background: var(--p2c-secondary);
}

.p2c-site-header{
  position:sticky;
  top:0;
  left:0;
  right:0;
  z-index:1030;
  background:#fff;
  box-shadow:0 12px 30px rgba(15,23,42,.08);
  backdrop-filter:blur(16px);
  transition:.3s;
}

.p2c-site-header.scrolled{
  background:#fff;
  box-shadow:0 12px 30px rgba(15,23,42,.08);
}

.p2c-site-header.is-sticky{
  position:sticky;
}

.p2c-site-header .navbar {
  min-height: 76px;
}

.p2c-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--p2c-secondary);
  font-weight: 900;
}

.p2c-brand:hover,
.p2c-site-header .nav-link:hover {
  color: var(--p2c-primary);
}

.p2c-brand img {
  width: auto;
  height: 72px;
  /* border-radius: 12px; */
  object-fit: cover;
}

.p2c-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--p2c-primary);
  border-radius: 12px;
}

.p2c-site-header .nav-link {
  color: var(--p2c-secondary);
  font-weight: 600;
  font-size: 0.85rem;
  padding-inline: 0.7rem;
}

.p2c-mega-menu {
  min-width: 520px;
  columns: 2;
  border: 0;
  border-radius: var(--p2c-radius);
  box-shadow: var(--p2c-card-shadow);
  padding: 1rem;
}

.dropdown-menu {
  border-radius: var(--p2c-radius);
  border-color: var(--p2c-line);
  box-shadow: var(--p2c-card-shadow);
}

.dropdown-item {
  border-radius: 10px;
  font-weight: 650;
}

.dropdown-item i {
  color: var(--p2c-primary);
  margin-right: 0.5rem;
}

.p2c-mobile-drawer .list-group-item {
  border: 0;
  border-radius: 12px;
  font-weight: 750;
  margin-bottom: 0.25rem;
}

.p2c-hero {
  padding: 40px 0 40px;
  min-height: 720px;
  /* display: flex; */
  align-items: center;
  background:
    radial-gradient(circle at 86% 18%, rgba(37, 99, 235, 0.12), transparent 26%),
    linear-gradient(180deg, #eff6ff 0%, #fff 60%);
}

.p2c-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--p2c-primary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
  margin-bottom: 0.85rem;
}

.p2c-hero h1 {
  max-width: 720px;
  color: var(--p2c-secondary);
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 950;
  margin-bottom: 1.25rem;
}

.p2c-hero-copy {
  max-width: 620px;
  color: var(--p2c-muted);
  font-size: 1.2rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.p2c-trust-row {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.6rem;
  color: var(--p2c-secondary);
}

.p2c-avatar-stack {
  display: inline-flex;
}

.p2c-avatar-stack span {
  width: 32px;
  height: 32px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p2c-primary), var(--p2c-accent));
  margin-left: -8px;
}

.p2c-avatar-stack span:first-child {
  margin-left: 0;
}

.p2c-hero-media {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.p2c-hero-media > img,
.p2c-hero-media > video {
  width: min(100%, 560px);
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.p2c-student-visual {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background: linear-gradient(145deg, #dbeafe, #fff7ed);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.p2c-student-visual::before {
  content: "";
  position: absolute;
  inset: 16% 20% 0;
  border-radius: 48% 48% 0 0;
  background: linear-gradient(180deg, #2563eb, #0f172a);
}

.visual-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--p2c-card-shadow);
  font-weight: 900;
}

.visual-card.main {
  left: 10%;
  bottom: 12%;
  color: var(--p2c-primary);
}

.visual-card.small {
  color: var(--p2c-secondary);
}

.visual-card.one {
  right: 10%;
  top: 18%;
}

.visual-card.two {
  left: 8%;
  top: 34%;
}

.p2c-floating-card {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: min(260px, 58vw);
  padding: 1rem;
  border-radius: var(--p2c-radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--p2c-card-shadow);
  backdrop-filter: blur(16px);
}

.p2c-floating-card div {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--p2c-secondary);
  font-weight: 850;
  padding: 0.45rem 0;
}

.p2c-floating-card i {
  color: var(--p2c-accent);
  font-size: 1.15rem;
}

.p2c-floating-card small {
  color: var(--p2c-muted);
  margin-left: auto;
}

.p2c-section {
  padding: 40px 0;
}

.p2c-action-strip,
.p2c-card-slider {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.p2c-action-card,
.p2c-college-card,
.p2c-story-card,
.p2c-blog-card,
.p2c-empty-card,
.p2c-recommendation-card,
.p2c-counselling,
.p2c-insight-card,
.p2c-stat,
.p2c-card,
.p2c-panel {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--p2c-radius);
  box-shadow: var(--p2c-card-shadow);
}

.p2c-card,
.p2c-panel {
  padding: 1.25rem;
}

.p2c-page-hero {
  padding: 40px 0 58px;
  background:
    radial-gradient(circle at 88% 18%, rgba(249, 115, 22, 0.16), transparent 24%),
    linear-gradient(135deg, #eff6ff 0%, #fff 62%, #fff7ed 100%);
}

.p2c-page-hero h1 {
  max-width: 820px;
  color: var(--p2c-secondary);
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.p2c-page-hero p {
  max-width: 680px;
  color: var(--p2c-muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.p2c-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.p2c-filter-grid,
.p2c-feature-grid,
.p2c-step-grid,
.p2c-metric-grid {
  display: grid;
  gap: 1rem;
}

.p2c-filter-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.p2c-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p2c-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.p2c-metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p2c-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  color: var(--p2c-primary);
  background: #eff6ff;
  font-weight: 850;
  font-size: 0.82rem;
}

.p2c-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.p2c-timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: start;
}

.p2c-timeline-year {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-radius: 16px;
  color: #fff;
  background: var(--p2c-primary);
  font-weight: 950;
}

.p2c-compare-table {
  overflow-x: auto;
}

.p2c-compare-table table {
  min-width: 760px;
}

.p2c-form-shell {
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.p2c-auth-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: #fff;
}

.p2c-auth-aside {
  display: grid;
  align-content: center;
  padding: clamp(2rem, 6vw, 5rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(37, 99, 235, 0.88)),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.p2c-auth-card {
  display: grid;
  align-content: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.p2c-dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.p2c-admin-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.p2c-action-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.9rem;
  color: var(--p2c-secondary);
  padding: 1.2rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.p2c-action-card i {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--p2c-primary);
  background: #eff6ff;
  border-radius: 14px;
  font-size: 1.25rem;
}

.p2c-action-card span {
  font-weight: 850;
  line-height: 1.2;
}

.p2c-action-card:hover,
.p2c-college-card:hover,
.p2c-story-card:hover,
.p2c-blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.p2c-section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.p2c-section-heading h2,
.p2c-title-row h2,
.p2c-counselling h2 {
  color: var(--p2c-secondary);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.p2c-section-heading p {
  color: var(--p2c-muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

.p2c-recommendation-card {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.8), #fff 45%),
    #fff;
}

.form-label {
  color: var(--p2c-secondary);
  font-weight: 800;
}

.form-control,
.form-select,
.select2-container .select2-selection--single {
  min-height: 48px;
  border-radius: 14px;
  border-color: var(--p2c-line);
}

.p2c-recommendation-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.p2c-result-card {
  padding: 1rem;
  border: 1px solid var(--p2c-line);
  border-radius: 14px;
  background: #fff;
}

.p2c-result-card h4 {
  font-size: 1rem;
  color: var(--p2c-secondary);
  font-weight: 900;
}

.p2c-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.7rem;
}

.p2c-card-slider {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p2c-college-card,
.p2c-story-card,
.p2c-blog-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.p2c-college-image,
.p2c-story-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--p2c-soft);
  overflow: hidden;
}

.p2c-college-image img,
.p2c-story-media img,
.p2c-blog-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p2c-card-actions {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  gap: 0.4rem;
}

.p2c-card-actions button,
.p2c-play-btn {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--p2c-secondary);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--p2c-card-shadow);
}

.p2c-card-body {
  padding: 1.15rem;
}

.p2c-card-body h3 {
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 0 0.4rem;
  color: var(--p2c-secondary);
}

.p2c-card-body h3 a {
  color: inherit;
}

.p2c-card-body p {
  color: var(--p2c-muted);
}

.p2c-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.8rem 0;
}

.p2c-tags span {
  color: var(--p2c-primary);
  background: #eff6ff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
}

.p2c-college-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.p2c-college-metrics strong {
  color: var(--p2c-secondary);
  font-size: 1.05rem;
}

.p2c-college-metrics small {
  display: block;
  color: var(--p2c-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.p2c-image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--p2c-primary);
  background: linear-gradient(135deg, #eff6ff, #fff7ed);
  font-size: 2.4rem;
}

.p2c-placement-band {
  background: var(--p2c-secondary);
  color: #fff;
}

.p2c-placement-band .p2c-title-row h2,
.p2c-placement-band .p2c-kicker {
  color: #fff;
}

.p2c-insight-card {
  min-height: 180px;
  padding: 1.25rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.p2c-insight-card i {
  color: var(--p2c-accent);
  font-size: 1.6rem;
}

.p2c-insight-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 950;
  margin-top: 1rem;
}

.p2c-insight-card span,
.p2c-insight-card small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

.p2c-logo-slider{
  width:100%;
  overflow:hidden;
  position:relative;
  margin-top:45px;
  padding:25px 0;
}


.recruiter-marquee{

  width:100%;
  overflow:hidden;
  padding:50px 0;

}

.recruiter-track{

  display:flex;
  align-items:center;
  gap:30px;
  width:max-content;

  animation:scrollLogos 25s linear infinite;

}

.logo-ball{

  width:90px;
  height:90px;

  flex:none;

  border-radius:50%;

  background:#fff;

  display:flex;
  justify-content:center;
  align-items:center;

  box-shadow:0 15px 35px rgba(0,0,0,.15);

  animation:rollingBall 8s linear infinite;

}

.logo-ball img{

  width:65%;
  height:65%;

  object-fit:contain;

}

@keyframes scrollLogos{

  from{

      transform:translateX(0);

  }

  to{

      transform:translateX(-50%);

  }

}

@keyframes rollingBall{

  from{

      transform:rotate(0deg);

  }

  to{

      transform:rotate(-360deg);

  }

}



.p2c-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  color: #fff;
  background: var(--p2c-accent);
  font-size: 2rem;
}

.p2c-story-college,
.p2c-blog-meta {
  color: var(--p2c-primary) !important;
  font-weight: 850;
}

.p2c-counselling {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.6rem, 5vw, 3rem);
  background: linear-gradient(135deg, #eff6ff, #fff);
}

.p2c-counselling-copy {
  color: var(--p2c-muted);
  font-size: 1.1rem;
  line-height: 1.9;
  margin: 1rem 0 1.6rem;
}

.p2c-counselling-media {
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--p2c-primary);
  color: #fff;
  overflow: hidden;
}

.p2c-counselling-media i {
  font-size: 6rem;
}

.p2c-counselling-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.p2c-stats {
  background: var(--p2c-soft);
}

.p2c-stat {
  min-height: 168px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.15rem;
}

.p2c-stat i {
  color: var(--p2c-accent);
  font-size: 1.6rem;
}

.p2c-stat strong {
  display: block;
  color: var(--p2c-secondary);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 950;
}

.p2c-stat span {
  color: var(--p2c-muted);
  font-weight: 800;
}

.p2c-blog-card > img,
.p2c-blog-card > .p2c-image-placeholder {
  display: block;
  width: 100%;
  height: 220px;
}

.p2c-read-link {
  font-weight: 900;
}

.p2c-empty-card {
  padding: 1.5rem;
  color: var(--p2c-muted);
  min-height: 160px;
  display: grid;
  place-items: center;
}

.p2c-footer {
  color: #cbd5e1;
  background: var(--p2c-secondary);
  padding: 20px 0 20px;
}

.p2c-footer h3,
.p2c-footer h4 {
  color: #fff;
  font-weight: 900;
}

.p2c-footer h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.p2c-footer a {
  display: block;
  color: #cbd5e1;
  margin-bottom: 0.55rem;
}

.p2c-socials {
  display: flex;
  gap: 0.6rem;
}

.p2c-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.p2c-newsletter {
  display: flex;
  gap: 0.6rem;
}

.p2c-newsletter .form-control {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.p2c-modal {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.skeleton {
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  animation: p2c-skeleton 1.4s infinite;
}

@keyframes p2c-skeleton {
  to {
    transform: translateX(100%);
  }
}

.image-preview {
  display: block;
  max-width: 180px;
  border: 1px solid var(--p2c-line);
  border-radius: 12px;
  margin-top: 0.5rem;
}

@media (prefers-color-scheme: dark) {
  body.dark-ready {
    --p2c-ink: #e5e7eb;
    --p2c-muted: #94a3b8;
    --p2c-line: #1e293b;
    background: #020617;
  }
}

@media (max-width: 1199.98px) {
  .p2c-action-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .p2c-site-header {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  }
}

@media (max-width: 991.98px) {
  .p2c-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .p2c-hero-media {
    min-height: 430px;
  }

  .p2c-card-slider,
  .p2c-recommendation-results {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.75rem;
  }

  .p2c-card-slider > *,
  .p2c-recommendation-results > * {
    min-width: 320px;
    scroll-snap-align: start;
  }

  .p2c-counselling {
    grid-template-columns: 1fr;
  }

  .p2c-filter-grid,
  .p2c-feature-grid,
  .p2c-step-grid,
  .p2c-metric-grid,
  .p2c-dashboard-grid,
  .p2c-auth-shell {
    grid-template-columns: 1fr;
  }

  .p2c-page-hero {
    padding-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .p2c-section {
    padding: 52px 0;
  }

  .p2c-hero h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .p2c-action-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.75rem;
  }

  .p2c-action-card {
    min-width: 180px;
    scroll-snap-align: start;
  }

  .p2c-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .p2c-floating-card {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 20px;
  }

  .p2c-newsletter {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .p2c-hero {
    padding-top: 40px;
  }

  .p2c-hero-copy {
    font-size: 1rem;
  }

  .p2c-card-slider > *,
  .p2c-recommendation-results > * {
    min-width: 88vw;
  }

  .p2c-login-btn,
  .p2c-register-btn {
    width: 100%;
  }
}

.p2c-hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  color: #081c3a;
  margin-bottom: 20px;
}

.p2c-hero-content h1 span {
  color: #f97316;
}

.p2c-hero-copy {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 30px;
}

.p2c-hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.p2c-hero-image-wrapper {
  position: relative;
}

.p2c-hero-image {
  width: 100%;
  max-width: 650px;
  display: block;
  margin-left: auto;
}

.p2c-floating-path-card {
  position: absolute;
  top: 40px;
  right: -10px;
  width: 240px;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.p2c-floating-path-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.p2c-floating-path-card div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.p2c-floating-path-card i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}

.p2c-trust-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.p2c-trust-row small {
  color: #64748b;
  font-weight: 600;
}

@media (max-width:991px) {
  .p2c-hero-content h1 {
      font-size: 2.5rem;
  }

  .p2c-floating-path-card {
      position: static;
      width: 100%;
      margin-top: 30px;
  }

  .p2c-hero-buttons {
      flex-direction: column;
  }
}

.p2c-story-card{
  overflow:hidden;
  border-radius:30px;
  background:#fff;
  box-shadow:0 20px 60px rgba(15,23,42,.08);
  transition:.4s;
  height:100%;
}

.p2c-story-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 70px rgba(15,23,42,.12);
}

.p2c-story-media{
  position:relative;
  height:260px;
  overflow:hidden;
}

.p2c-story-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.p2c-story-card:hover img{
  transform:scale(1.05);
}

.p2c-video-badge{
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 14px;

  background: rgba(15,23,42,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: #fff;
  border-radius: 999px;

  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;

  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

.p2c-video-badge i{
  font-size: 1rem;
  color: #f97316;
}

@media (max-width: 480px){

  .p2c-video-badge{
      width: 38px;
      height: 38px;
      padding: 0;
      border-radius: 50%;
      justify-content: center;
  }

  .p2c-video-badge span{
      display: none;
  }

  .p2c-video-badge i{
      font-size: 1rem;
      margin: 0;
  }
}

.p2c-stars{
  color:#fbbf24;
}

.p2c-read-story{
  color:var(--p2c-primary);
  font-weight:700;
}

.p2c-story-card:hover .p2c-read-story{
  color:var(--p2c-accent);
}

.p2c-story-college{
  color:var(--p2c-primary);
  font-weight:700;
}

.p2c-empty-card{
  padding:80px 30px;
  border-radius:30px;
  background:#fff;
  box-shadow:0 20px 60px rgba(15,23,42,.08);
}

[id^="testimonial-"]{
  scroll-margin-top:120px;
}

[id^="testimonial-"]:target article{
  border:3px solid var(--p2c-primary);
  box-shadow:0 25px 60px rgba(37,99,235,.25);
}

/*COUNSELLING*/

.p2c-counselling{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:60px;
    padding:60px;
    overflow:hidden;
    position:relative;
    border-radius:32px;
    background:linear-gradient(135deg,#f8fbff,#ffffff);
    box-shadow:0 30px 70px rgba(15,23,42,.08);

}

.p2c-counselling::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:-150px;
    top:-150px;
    border-radius:50%;
    background:rgba(37,99,235,.05);
}

.p2c-counselling-content{
    position:relative;
    z-index:2;
}

.p2c-counselling h2{
    font-size:clamp(2.2rem,4vw,3.4rem);
    font-weight:900;
    line-height:1.15;
    margin-bottom:20px;
}

.p2c-counselling-copy{
    color:#64748b;
    font-size:1.08rem;
    line-height:1.9;
    max-width:650px;
}

.p2c-counselling-features{
    margin-top:35px;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.p2c-counselling-features div{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:700;
    color:#0f172a;
}

.p2c-counselling-features i{
    color:#22c55e;
    font-size:1.15rem;
}

.p2c-counselling .btn{
    padding:15px 32px;
    font-size:1rem;
    border-radius:50px;
    box-shadow:0 15px 35px rgba(37,99,235,.25);
}

.p2c-counselling-media{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:2;
}

.p2c-counselling-media img{
    width:100%;
    max-width:470px;
    /* border-radius:24px;
    object-fit:contain; */
}
.p2c-counselling-media i{
    font-size:6rem;
    color:#2563eb;
}

/* Tablet */
@media(max-width:991px){
    .p2c-counselling{
        grid-template-columns:1fr;
        padding:45px;
        gap:40px;
        text-align:center;
    }
    .p2c-counselling-copy{
        margin:auto;
    }
    .p2c-counselling-features{
        grid-template-columns:1fr 1fr;
        text-align:left;
    }
}

/* Mobile */
@media(max-width:576px){
    .p2c-counselling{
        padding:30px 24px;
        border-radius:24px;
    }
    .p2c-counselling h2{
        font-size:2rem;
    }
    .p2c-counselling-features{
        grid-template-columns:1fr;
    }
    .p2c-counselling .btn{
        width:100%;
    }

}

/* Hero Video Audio Button */

.p2c-hero-video-wrapper{
    position:relative;
    width:min(100%,560px);
}

.p2c-hero-video-wrapper video{
    width:100%;
    height: 600px;
    object-fit: cover;
    display:block;
    border-radius:28px;
}

.p2c-video-audio-btn{
    position:absolute;
    left:20px;
    bottom:20px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border:none;
    border-radius:50px;
    background:rgba(15,23,42,.82);
    color:#fff;
    backdrop-filter:blur(15px);
    cursor:pointer;
    transition:.3s;
    font-weight:700;
    z-index:5;
}

.p2c-video-audio-btn:hover{
    background:var(--p2c-primary);
}

.p2c-video-audio-btn i{
    font-size:1.1rem;
}