/* Placements Page Specific Styles - Finalized */
:root {
    --gold: #d4af37;
    --dark-maroon: #4a0e0e;
    --deep-maroon: #2d0808;
    --premium-white: #f8f9fa;
    --off-white: #F9FAFB;
}

/* 1. Placements Hero */
.placements-hero {
    background: linear-gradient(135deg, var(--dark-maroon), var(--deep-maroon));
    padding: 160px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.floating-elements .particle {
    position: absolute;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.5;
    }
}

.placements-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    color: white !important;
}

.placements-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    color: white !important;
}

/* 2. Stats Dashboard */
.placement-stats {
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card h2 {
    display: inline-block;
    font-size: 2.5rem;
    color: var(--primary-maroon);
    margin: 0;
    font-weight: 500;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--primary-maroon);
    font-weight: 500;
    margin-left: 5px;
}

.stat-card p {
    color: var(--primary-maroon);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 10px;
    opacity: 0.8;
}

/* 3. Recruiters Section Marquee */
.recruiters-section-simple {
    padding: 80px 0;
    background: var(--off-white);
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    width: 200px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.marquee-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* 4. Placement Journey Timeline */
.placement-journey {
    padding: 100px 0;
    background: white;
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 60px 0;
}

.timeline-track {
    position: absolute;
    top: 90px;
    left: 5%;
    width: 90%;
    height: 4px;
    background: #f0f0f0;
    z-index: 1;
}

.journey-step-v2 {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.step-icon-v2 {
    width: 65px;
    height: 65px;
    background: white;
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-orange);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.journey-step-v2:hover .step-icon-v2 {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.journey-step-v2 h4 {
    color: var(--primary-maroon);
    margin-bottom: 12px;
    font-family: var(--heading-font);
}

.journey-step-v2 p {
    font-size: 0.9rem;
    color: #666;
}

/* 5. Skill Ecosystem */
.skill-ecosystem {
    padding: 100px 0;
    background: var(--primary-maroon);
    color: white;
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.skill-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-10px);
}

.skill-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.skill-card h3 {
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

/* 6. Elite Achievers Refinement */
.elite-achievers {
    padding: 100px 0;
    background: var(--off-white);
}

.achievers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.achievement-card-v2 {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.achievement-card-v2:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.achiever-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #f5f5f5;
    background: #fafafa;
}

.company-logo {
    height: 40px;
    max-width: 120px;
    object-fit: contain;
}

.congrats-label {
    background: #e74c3c;
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.achiever-body {
    padding: 30px;
    display: flex;
    gap: 25px;
}

.student-img {
    width: 140px;
    height: 190px;
    border-radius: 15px;
    object-fit: cover;
    object-position: top;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.achiever-info .package {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-maroon);
    margin-bottom: 10px;
}

.achiever-info h4 {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 5px;
}

.achiever-info p {
    font-size: 0.85rem;
    color: #888;
    margin: 2px 0;
}

/* 7. Success Spotlight Light Theme */
.video-spotlight-v2 {
    padding: 120px 0;
    background: white;
}

.video-glass-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    background: #000;
}

.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: inherit;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.video-info-panel-v2 {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
    text-align: center;
}

.info-item-v2 span {
    display: block;
    color: var(--primary-orange);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.info-item-v2 h4,
.info-item-v2 p {
    font-size: 1.2rem;
    color: var(--primary-maroon);
    font-family: var(--heading-font);
}

/* 8. Strategic Partnerships Split */
.partnerships-v2 {
    padding: 120px 0;
    background: var(--off-white);
}

.partnership-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.partnership-content .line {
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    margin: 25px 0;
}

.partnership-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.p-card-v2 {
    background: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    gap: 15px;
    border-left: 5px solid var(--primary-maroon);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.p-card-v2 i {
    font-size: 2rem;
    color: var(--primary-maroon);
}

.p-card-v2 h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.p-card-v2 p {
    font-size: 0.85rem;
    color: #777;
}

.partnership-extra-stats {
    display: flex;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.p-extra-item h3 {
    font-size: 2rem;
    color: var(--primary-maroon);
}

.p-extra-item p {
    color: #666;
    font-size: 0.9rem;
}

.partnership-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Video Controls Refined */
.play-btn-futuristic {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.play-btn-futuristic i {
    margin-left: 5px;
}

.ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rippleEffect 2s infinite;
}

@keyframes rippleEffect {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    100% {
        width: 180%;
        height: 180%;
        opacity: 0;
    }
}

.video-frame.is-playing .play-btn-futuristic {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.5);
}

.video-frame.is-playing:hover .play-btn-futuristic {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partnership-layout {
        grid-template-columns: 1fr;
    }

    .journey-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-track {
        left: 40px;
        top: 0;
        width: 4px;
        height: 100%;
    }

    .journey-step-v2 {
        text-align: left;
        padding-left: 100px;
    }

    .step-icon-v2 {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }

    .skill-grid {
        grid-template-columns: 1fr;
    }

    .video-info-panel-v2 {
        flex-direction: column;
        gap: 30px;
    }
}
