/* ═══════════════════════════════════════════════════════════════
   Placement Cell – Custom CSS
   Used by: public/placement_cell_content.html
            (inserted via extended_contents blade process)
   Project fonts, Bootstrap 5 & Font Awesome already loaded by layout.
═══════════════════════════════════════════════════════════════ */

/* ── Extra CSS variables (supplement project's site_styles) ── */
:root {
    --svc-blue:     #1d4ed8;
    --svc-blue-mid: #1e56c9;
    --svc-navy:     #12336b;
    --svc-ink:      #1f2937;
    --svc-surface:  #ffffff;
    --svc-soft:     #eff6ff;
    --svc-line:     rgba(29,78,216,0.12);
    --svc-shadow:   0 18px 45px rgba(15,23,42,0.08);
    --svc-muted:    #64748b;
}

/* ── HERO ── */
.pc-hero {
    background: linear-gradient(135deg, #0f2554 0%, #12336b 35%, #1d4ed8 75%, #2563eb 100%);
    padding: 3.5rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}
.pc-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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%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/g%3E%3C/svg%3E");
}
.pc-hero-inner { position: relative; z-index: 1; }
.pc-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    color: rgba(255,255,255,0.92);
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.07em; text-transform: uppercase;
    margin-bottom: 1rem;
}
.pc-hero-title {
    color: #fff;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.pc-hero-subtitle {
    color: rgba(255,255,255,0.78);
    font-size: 1rem; line-height: 1.6;
    max-width: 640px; margin-bottom: 1.5rem;
}
.pc-hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.pc-hero-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.65rem; font-weight: 700; color: #fff;
    line-height: 1;
}
.pc-hero-stat-lbl {
    font-size: 0.78rem; color: rgba(255,255,255,0.72);
    margin: 0;
}

/* ── WRAPPER ── */
.pc-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.25rem 3rem;
}

/* ── SECTION HEADER ── */
.pc-section { margin-bottom: 3rem; }
.pc-section-hd {
    display: flex; align-items: center; gap: 0.9rem;
    margin-bottom: 1.6rem;
    padding-bottom: 0.85rem;
    border-bottom: 2px solid var(--svc-line);
}
.pc-section-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--svc-navy) 0%, var(--svc-blue) 100%);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
    box-shadow: 0 8px 18px rgba(29,78,216,0.22);
}
.pc-section-title {
    color: var(--svc-navy);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 700; margin: 0;
}
.pc-section-badge {
    margin-left: auto; flex-shrink: 0;
    background: var(--svc-soft);
    border: 1px solid var(--svc-line);
    border-radius: 999px;
    padding: 0.28rem 0.85rem;
    font-size: 0.75rem; font-weight: 600;
    color: var(--svc-blue); white-space: nowrap;
}

/* ── ABOUT ── */
.pc-about-card {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 60%);
    border: 1px solid var(--svc-line);
    border-radius: 1.5rem;
    padding: 2rem 2.25rem;
    box-shadow: var(--svc-shadow);
}
.pc-about-card p {
    font-size: 1rem; line-height: 1.9;
    color: #334155; text-align: justify; margin: 0;
}
.pc-about-card p + p { margin-top: 1rem; }

/* ── TEAM CARD ── */
.pc-team-card {
    background: var(--svc-surface);
    border: 1px solid var(--svc-line);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--svc-shadow);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pc-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 56px rgba(15,23,42,0.14);
}
.pc-team-photo-wrap {
    background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 100%);
    padding: 1.75rem 1.5rem 0;
    text-align: center; position: relative;
}
.pc-team-photo {
    width: 115px; height: 138px;
    object-fit: cover; object-position: top center;
    border-radius: 12px;
    border: 3px solid #fff;
    box-shadow: 0 10px 24px rgba(29,78,216,0.18);
}
.pc-team-placeholder {
    width: 115px; height: 138px;
    border-radius: 12px;
    border: 3px solid #fff;
    box-shadow: 0 10px 24px rgba(29,78,216,0.18);
    background: linear-gradient(135deg, #bfdbfe 0%, #dbeafe 100%);
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 2.8rem; color: var(--svc-blue);
}
.pc-team-badge {
    position: absolute; bottom: -13px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--svc-navy) 0%, var(--svc-blue-mid) 100%);
    color: #fff;
    padding: 0.32rem 0.95rem;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 14px rgba(29,78,216,0.28);
    white-space: nowrap;
}
.pc-team-body {
    padding: 1.9rem 1.25rem 1.35rem;
    text-align: center;
}
.pc-team-name {
    color: var(--svc-navy);
    font-size: 1rem; font-weight: 700;
    margin-bottom: 0.7rem;
}
.pc-team-contact {
    display: flex; flex-direction: column; gap: 0.35rem;
    margin-bottom: 1rem;
}
.pc-team-contact a {
    display: inline-flex; align-items: center;
    justify-content: center; gap: 0.38rem;
    color: var(--svc-muted);
    font-size: 0.82rem; text-decoration: none;
    transition: color 0.2s;
}
.pc-team-contact a:hover { color: var(--svc-blue); }
.pc-team-quote {
    font-size: 0.83rem; line-height: 1.7;
    color: #64748b; text-align: justify;
    border-top: 1px solid var(--svc-line);
    padding-top: 0.85rem;
    font-style: italic;
}

/* ── COUNCIL ── */
.pc-council-card {
    background: var(--svc-surface);
    border: 1px solid var(--svc-line);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15,23,42,0.06);
    height: 100%;
}
.pc-council-card-hd {
    background: linear-gradient(135deg, var(--svc-navy) 0%, var(--svc-blue-mid) 100%);
    padding: 0.85rem 1.25rem;
    display: flex; align-items: center; gap: 0.6rem;
    color: #fff;
}
.pc-council-card-hd-icon {
    width: 32px; height: 32px; border-radius: 9px;
    background: rgba(255,255,255,0.18);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
}
.pc-council-card-hd-title {
    font-size: 0.88rem; font-weight: 700;
    letter-spacing: 0.02em; margin: 0;
}
.pc-council-card-body { padding: 0.5rem 0; }
.pc-council-member {
    display: flex; align-items: center; gap: 0.65rem;
    padding: 0.65rem 1.25rem;
    border-bottom: 1px solid rgba(29,78,216,0.06);
    transition: background 0.18s;
}
.pc-council-member:last-child { border-bottom: 0; }
.pc-council-member:hover { background: var(--svc-soft); }
.pc-council-avatar {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--svc-blue); font-size: 0.82rem; font-weight: 700;
}
.pc-council-name {
    font-size: 0.88rem; font-weight: 600;
    color: var(--svc-navy); margin: 0;
}

/* ── FACULTY ── */
.pc-faculty-card {
    background: linear-gradient(135deg, #fff 0%, #eff6ff 100%);
    border: 1px solid var(--svc-line);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--svc-shadow);
    display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap;
}
.pc-faculty-photo {
    width: 120px; height: 144px; flex-shrink: 0;
    border-radius: 14px;
    object-fit: cover; object-position: top center;
    border: 3px solid #fff;
    box-shadow: 0 10px 24px rgba(29,78,216,0.18);
}
.pc-faculty-placeholder {
    width: 120px; height: 144px; flex-shrink: 0;
    border-radius: 14px;
    border: 3px solid #fff;
    box-shadow: 0 10px 24px rgba(29,78,216,0.18);
    background: linear-gradient(135deg, #bfdbfe 0%, #dbeafe 100%);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 3rem; color: var(--svc-blue);
}
.pc-faculty-role {
    display: inline-flex; align-items: center; gap: 0.35rem;
    background: var(--svc-blue); color: #fff;
    padding: 0.28rem 0.85rem; border-radius: 999px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.pc-faculty-name {
    color: var(--svc-navy);
    font-size: 1.25rem; font-weight: 700;
    margin-bottom: 0.25rem;
}
.pc-faculty-desig { color: #475569; font-size: 0.9rem; margin-bottom: 0.15rem; }
.pc-faculty-dept { color: var(--svc-blue-mid); font-size: 0.88rem; font-weight: 600; }

/* ── CONNECT ── */
.pc-connect-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--svc-surface);
    border: 1px solid var(--svc-line);
    border-radius: 1rem;
    text-decoration: none; color: var(--svc-ink);
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    margin-bottom: 0.85rem;
}
.pc-connect-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(15,23,42,0.12);
    border-color: rgba(29,78,216,0.28);
    color: var(--svc-blue);
}
.pc-connect-icon {
    width: 46px; height: 46px; border-radius: 13px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.25rem; flex-shrink: 0;
}
.pc-connect-label { font-size: 0.9rem; font-weight: 600; margin: 0; }
.pc-connect-sub { font-size: 0.78rem; color: var(--svc-muted); margin: 0; }

/* ── IMPACT BANNER ── */
.pc-impact {
    background: linear-gradient(135deg, #0f2554 0%, var(--svc-navy) 40%, var(--svc-blue) 100%);
    border-radius: 1.5rem;
    padding: 2.25rem 2rem;
    color: #fff;
    box-shadow: 0 24px 48px rgba(18,51,107,0.28);
}
.pc-impact-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem; font-weight: 800; color: #fff;
}
.pc-impact-lbl { font-size: 0.85rem; color: rgba(255,255,255,0.76); margin: 0; }

/* ── PROCESS TIMELINE ── */
.pc-process-wrap { position: relative; padding-left: 2.75rem; }
.pc-process-wrap::before {
    content: ""; position: absolute;
    left: 19px; top: 6px; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--svc-blue) 0%, #bfdbfe 100%);
}
.pc-process-item { position: relative; margin-bottom: 1.5rem; }
.pc-process-dot {
    position: absolute; left: -2.75rem; top: 0;
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--svc-navy) 0%, var(--svc-blue) 100%);
    color: #fff; font-size: 0.72rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(29,78,216,0.3);
}
.pc-process-card {
    background: var(--svc-surface);
    border: 1px solid var(--svc-line);
    border-radius: 1rem;
    padding: 1.15rem 1.35rem;
    box-shadow: 0 8px 20px rgba(15,23,42,0.05);
}
.pc-process-title {
    color: var(--svc-navy);
    font-size: 0.97rem; font-weight: 700;
    margin-bottom: 0.45rem;
}
.pc-process-body { font-size: 0.9rem; color: #475569; line-height: 1.75; margin: 0; }

/* ── POLICY ── */
.pc-policy-card {
    background: var(--svc-surface);
    border-left: 4px solid var(--svc-blue);
    border-radius: 0 1rem 1rem 0;
    padding: 1.1rem 1.35rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 16px rgba(15,23,42,0.05);
}
.pc-policy-title {
    color: var(--svc-blue); font-size: 0.88rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
    display: flex; align-items: center; gap: 0.4rem;
}
.pc-policy-card ul, .pc-policy-card p {
    color: #475569; font-size: 0.9rem; line-height: 1.75; margin: 0;
}
.pc-policy-card ul { padding-left: 1.3rem; }
.pc-policy-card li { margin-bottom: 0.35rem; }

/* ── DISCLAIMER ── */
.pc-disclaimer {
    background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
    border: 1px solid rgba(220,38,38,0.18);
    border-radius: 1rem; padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
}
.pc-disclaimer-hd {
    color: #dc2626; font-size: 0.88rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 0.65rem;
    display: flex; align-items: center; gap: 0.4rem;
}
.pc-disclaimer ul { padding-left: 1.3rem; margin: 0; }
.pc-disclaimer li { color: #7f1d1d; font-size: 0.86rem; line-height: 1.65; margin-bottom: 0.35rem; }

/* ── DIVISION CARD ── */
.pc-div-card {
    background: var(--svc-surface);
    border: 1px solid var(--svc-line);
    border-radius: 1.25rem;
    padding: 1.4rem;
    box-shadow: 0 10px 24px rgba(15,23,42,0.06);
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}
.pc-div-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15,23,42,0.1);
}
.pc-div-icon {
    width: 54px; height: 54px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 1rem;
}
.pc-div-title { color: var(--svc-navy); font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.pc-div-body { font-size: 0.88rem; color: var(--svc-muted); line-height: 1.75; margin: 0; }

/* ── FAQ ACCORDION ── */
.pc-faq-accordion .accordion-item {
    border: 1px solid var(--svc-line) !important;
    border-radius: 0.85rem !important;
    margin-bottom: 0.6rem;
    overflow: hidden;
}
.pc-faq-accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600; font-size: 0.88rem;
    color: var(--svc-navy);
    background: #f8faff; border-radius: 0 !important;
    box-shadow: none !important;
}
.pc-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--svc-blue); background: var(--svc-soft);
}
.pc-faq-accordion .accordion-body { font-size: 0.88rem; color: #475569; line-height: 1.75; }

/* ── ARTICLE ── */
.pc-article {
    background: var(--svc-surface);
    border: 1px solid var(--svc-line);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--svc-shadow);
    margin-bottom: 1.5rem;
}
.pc-article-hd {
    background: linear-gradient(135deg, var(--svc-navy) 0%, var(--svc-blue-mid) 100%);
    padding: 1.25rem 1.5rem;
    color: #fff;
}
.pc-article-num {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.07em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); margin-bottom: 0.4rem;
}
.pc-article-title { font-size: 1.05rem; font-weight: 700; margin: 0; }
.pc-article-body { padding: 1.5rem; }
.pc-article-body p { font-size: 0.92rem; line-height: 1.8; color: #334155; text-align: justify; margin-bottom: 1rem; }
.pc-article-body h6 { color: var(--svc-navy); font-weight: 700; font-size: 0.9rem; margin: 1.25rem 0 0.5rem; }
.pc-article-body ul { font-size: 0.9rem; color: #475569; line-height: 1.75; padding-left: 1.3rem; }
.pc-article-body ul li { margin-bottom: 0.35rem; }

/* ── RECRUITER LOGO CARDS ── */
.pc-logo-card {
    background: #fff;
    border: 1px solid rgba(29,78,216,0.09);
    border-radius: 1rem;
    padding: 1rem 0.65rem 0.7rem;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.55rem;
    box-shadow: 0 6px 18px rgba(15,23,42,0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
    min-height: 96px; width: 100%;
}
.pc-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15,23,42,0.12);
    border-color: rgba(29,78,216,0.26);
}
.pc-logo-img {
    width: 100%; max-width: 80px; height: 38px;
    object-fit: contain; object-position: center;
    filter: grayscale(15%);
    transition: filter 0.22s;
}
.pc-logo-card:hover .pc-logo-img { filter: grayscale(0%); }
.pc-logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.66rem; font-weight: 600;
    color: #64748b; text-align: center;
    line-height: 1.25; margin: 0;
}

/* ── DESK CARD ── */
.pc-desk-card {
    background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
    border: 1px solid var(--svc-line);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--svc-shadow);
}
.pc-desk-role {
    display: inline-flex; align-items: center; gap: 0.35rem;
    background: var(--svc-navy); color: #fff;
    padding: 0.28rem 0.85rem; border-radius: 999px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 1rem;
}
.pc-desk-quote {
    border-left: 4px solid var(--svc-blue);
    padding: 1rem 1.25rem;
    background: var(--svc-soft);
    border-radius: 0 0.85rem 0.85rem 0;
    font-size: 0.95rem; line-height: 1.8;
    color: #334155; font-style: italic;
    margin-bottom: 1rem;
}

/* ── GALLERY ── */
.pc-gallery-item {
    border-radius: 1rem; overflow: hidden;
    box-shadow: 0 12px 28px rgba(15,23,42,0.1);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--svc-blue); font-size: 1.5rem;
}
.pc-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── EVENT CARD ── */
.pc-event-card {
    background: var(--svc-surface);
    border: 1px solid var(--svc-line);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--svc-shadow);
}
.pc-event-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: linear-gradient(135deg, #1e3a5f 0%, var(--svc-blue) 100%);
    color: #fff; padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 767.98px) {
    .pc-hero { padding: 2.25rem 1.25rem 2rem; }
    .pc-hero-stats { gap: 1.25rem; }
    .pc-hero-stat-num { font-size: 1.4rem; }
    .pc-about-card { padding: 1.35rem 1.25rem; }
    .pc-faculty-card { gap: 1.25rem; }
    .pc-team-body { padding: 1.6rem 1rem 1.1rem; }
    .pc-impact-num { font-size: 1.9rem; }
    .pc-process-wrap { padding-left: 2.25rem; }
}
@media (max-width: 575.98px) {
    .pc-section-title { font-size: 1.1rem; }
    .pc-section-icon { width: 40px; height: 40px; font-size: 0.95rem; }
    .pc-team-photo, .pc-team-placeholder { width: 100px; height: 120px; }
    .pc-faculty-card { flex-direction: column; align-items: flex-start; }
    .pc-impact { padding: 1.5rem 1rem; }
}
