:root {
    --accent: #f27200;
    --text: #0f172a;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --text-muted: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0.75rem 2rem !important;
}

/* Hero Section */
.placement-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.placement-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/hero_bg.png') center/cover no-repeat;
    opacity: 0.1;
}

.placement-hero-content {
    position: relative;
    z-index: 2;
}

.placement-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #f27200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.placement-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.stat-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(242, 114, 0, 0.1);
    border-color: rgba(242, 114, 0, 0.3);
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-year {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.stat-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Recruiters Section - Now Marquee style */
.recruiters-section {
    padding: 80px 0;
    background: var(--bg-alt);
    overflow: hidden;
}

.recruiter-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    padding: 0 1rem;
}

.recruiter-logo:hover {
    transform: scale(1.1);
}

.recruiter-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Success Carousel */
.success-highlights-container {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.success-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
}

.success-carousel .poster-card {
    flex: 0 0 calc(16.666% - 1.25rem);
    min-width: 180px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    color: var(--text);
}

.carousel-btn:hover {
    background: var(--accent);
    color: white;
}

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

@media (max-width: 1200px) {
    .success-carousel .poster-card {
        flex: 0 0 calc(25% - 1.15rem);
    }
}

@media (max-width: 900px) {
    .success-carousel .poster-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 600px) {
    .success-carousel .poster-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 400px) {
    .success-carousel .poster-card {
        flex: 0 0 100%;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.poster-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.poster-card:hover img {
    transform: scale(1.1);
}

.poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.poster-card:hover .poster-overlay {
    opacity: 1;
}

.poster-title {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.poster-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.btn-view-more-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    margin-top: 2rem;
}

.btn-view-more-home:hover {
    background: transparent;
    color: var(--accent) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 114, 0, 0.2);
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem !important;
    }

    .placement-hero {
        padding: 8rem 1.5rem 5rem;
        text-align: center;
    }

    .placement-hero-content {
        text-align: center;
        width: 100%;
    }

    .placement-hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
        text-align: center !important;
    }

    .placement-hero p {
        font-size: 1.05rem;
        line-height: 1.6;
        padding: 0;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.9);
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    .placement-hero .hero-subtitle {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .stats-section {
        padding: 80px 1rem 60px;
    }

    .stat-value {
        font-size: 2.8rem;
    }
    
    .stat-card {
        padding: 2.5rem 1.5rem;
    }

    .stats-grid {
        gap: 2rem;
        padding: 0;
    }

    .gallery-grid {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
        padding: 0 1rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .placement-hero h1 {
        font-size: 2.2rem;
    }

    .placement-hero p {
        font-size: 1rem;
    }

    .stat-value {
        font-size: 2.6rem;
    }

    .stat-card {
        padding: 2rem 1rem;
    }

    .recruiter-logo {
        height: 80px;
        min-width: 160px;
        padding: 1rem;
    }

    .recruiter-logo img {
        max-height: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
