/* PLACEMENT & CAREER CSS */

/* NEW HERO SECTION */
.placement-hero-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.mini-stat {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--teal);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* IMAGE STACKING */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 620px;
    height: 450px;
    margin-left: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heroZoomIn 4.5s ease-in-out infinite alternate;
    border-radius: 25px;
}

.image-stack {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes heroZoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}


@media (max-width: 576px) {
    .hero-image-wrapper {
        max-width: 100%;
        height: 420px;
        margin-left: 0;
    }

    .placement-hero-new .d-flex.flex-wrap {
        flex-direction: column;
        width: 100%;
    }

    .placement-hero-new .btn {
        width: 100%;
    }

    .placement-hero-new .display-3 {
        font-size: 2.5rem;
    }
}

/* STATS SECTION */
.stats-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--teal);
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy);
    display: block;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================
   PARTNERS SECTION
   ================================================ */
.partners {
  background: linear-gradient(180deg, #f0f4f8 0%, #e8edf3 100%);
  width: 100%;
}

.partner-section {
  padding: 80px 0;
  text-align: center;
  height: 350px;
  margin: auto;
  width: 90%;
}


/* Logo Slider */
.logo-slider {
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #f0f4f8, transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #e8edf3, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 90px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-track img {
  height: 100px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.4s ease;
  filter: grayscale(30%);
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.15);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partners-section-new {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f1f5f9;
}

.partner-card-modern {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    min-width: 280px;
    margin: 0 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.partner-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
    box-shadow: 0 15px 35px rgba(0, 128, 128, 0.1);
}

.partner-inner i {
    font-size: 1.8rem;
    display: block;
    transition: all 0.3s ease;
}

.partner-logo-img {
    max-width: 180px;
    max-height: 70px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.partner-card-modern:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

.partner-card-modern:hover .partner-inner i {
    opacity: 1 !important;
    transform: scale(1.1);
}

/* Override global marquee for placement page */
.partners-section-new .logo-track {
    animation-duration: 50s !important;
    gap: 0 !important;
    /* Handled by margins */
}

@media (max-width: 768px) {
    .partner-card-modern {
        min-width: 220px;
        padding: 20px;
    }
}

/* CAREER ROADMAP */
.career-roadmap-section {
    background:
        radial-gradient(circle at top left, rgba(0, 180, 216, 0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(240, 165, 0, 0.1), transparent 30%),
        linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
    position: relative;
    overflow: hidden;
}

.roadmap-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(7, 17, 17, 0.575);
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.roadmap-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.roadmap-grid::before {
    content: "";
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(0, 180, 216, 0.1), rgba(0, 31, 63, 0.18), rgba(240, 165, 0, 0.14));
}

.roadmap-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.roadmap-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 180, 216, 0.35);
}

.roadmap-card-offset {
    margin-top: 48px;
}

.roadmap-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.roadmap-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--navy);
    opacity: 0.22;
}

.roadmap-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.14), rgba(0, 180, 216, 0.08));
    color: var(--teal);
    font-size: 1.25rem;
    box-shadow: inset 0 0 0 1px rgba(0, 128, 128, 0.08);
}

.roadmap-meta {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-light);
}

@media (max-width: 991.98px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-grid::before {
        left: 28px;
        transform: none;
    }

    .roadmap-card-offset {
        margin-top: 0;
    }
}

@media (max-width: 575.98px) {
    .roadmap-card {
        padding: 24px;
        border-radius: 22px;
    }

    .roadmap-top {
        margin-bottom: 14px;
    }

    .roadmap-number {
        font-size: 1.75rem;
    }
}

/* SESSION RECORDS */
.session-tabs-wrap .top-tab.btn-session {
    padding: 11px 22px;
    border: 1px solid rgba(30, 58, 95, 0.12);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 0.92rem;
    position: relative;
    color: var(--navy);
    border-radius: 999px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.session-tabs-wrap .top-tab.btn-session::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transition: transform 0.3s ease;
}

.session-tabs-wrap .top-tab.btn-session:hover::after,
.session-tabs-wrap .top-tab.btn-session.active::after {
    transform: scaleX(1);
}

.session-tabs-wrap .top-tab.btn-session:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.96);
    color: var(--navy);
    border-color: rgba(0, 180, 216, 0.22);
}

.session-tabs-wrap .top-tab.btn-session.active {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.92), rgba(30, 58, 95, 0.95));
    border-color: rgba(255, 255, 255, 0.26);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 128, 128, 0.2);
}

.session-record-details {
    display: none;
    animation: fadeIn 0.5s ease;
}

.session-record-details.active {
    display: block;
}

.record-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.record-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Circular Progress */
.circular-progress-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-progress {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--teal) calc(var(--percent) * 1%), #e2e8f0 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.circular-progress::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
}

.circular-progress .percent {
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Session Stats Badges */
.session-stat-badge {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bg-teal-light {
    background: rgba(0, 128, 128, 0.1);
    color: var(--teal);
}

.bg-navy-light {
    background: rgba(0, 31, 63, 0.1);
    color: var(--navy);
}

/* Student Success Card Redesign */
.student-success-card {
    background: white;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.student-success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--teal), #20c997);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.student-success-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 31, 63, 0.08);
    border-color: rgba(0, 128, 128, 0.1);
}

.student-success-card:hover::before {
    opacity: 1;
}

.student-img-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: #f8fafc;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.student-success-card:hover .student-img-wrapper {
    transform: scale(1.05);
    border-color: var(--teal-light);
}

.student-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-img-wrapper img.logo-fallback {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

.card-student-name {
    color: var(--navy);
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.card-student-pos {
    font-weight: 500;
    color: #64748b;
}

/* Custom Swiper Navigation Arrows */
.student-swiper-container {
    padding: 0 50px;
}

.student-swiper-next,
.student-swiper-prev {
    width: 45px !important;
    height: 45px !important;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    color: var(--teal) !important;
    transition: all 0.3s ease !important;
    border: 1px solid #eef2f6 !important;
}

.student-swiper-next:after,
.student-swiper-prev:after {
    font-size: 18px !important;
    font-weight: bold !important;
}

.student-swiper-next:hover,
.student-swiper-prev:hover {
    background: var(--teal) !important;
    color: white !important;
    transform: scale(1.1);
}

.student-swiper-next {
    right: 0 !important;
}

.student-swiper-prev {
    left: 0 !important;
}

/* Swiper Pagination Enhancement */
.student-swiper {
    padding: 10px 10px 50px 10px !important;
    margin: -10px;
}

.student-swiper .swiper-pagination {
    bottom: 0 !important;
}

.student-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.student-swiper .swiper-pagination-bullet-active {
    background: var(--teal) !important;
    width: 25px;
    border-radius: 5px;
}

.company-tag {
    display: inline-block;
    background: #f1f5f9;
    color: var(--navy);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .stats-number {
        font-size: 2.5rem;
    }
}
