/* ============================================
   NTPL PLACEMENTS PAGE STYLES
   ============================================
   
   Color Palette:
   - Lime Green: #89F336
   - Warm Yellow: #FFF3C0
   - Teal: #4FE0CB
   - Vibrant Green: #00BF33
   
   ============================================ */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================
   BASE STYLES & RESET
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
}

p {
    font-family: 'Inter', sans-serif;
    color: #555;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: 'Inter', sans-serif;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

strong {
    font-weight: 600;
}

::selection {
    background: #89F336;
    color: #1a1a2e;
}

::-moz-selection {
    background: #89F336;
    color: #1a1a2e;
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.ntpl-placements {
    overflow-x: hidden;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.ntpl-text-gradient {
    background: linear-gradient(135deg, #89F336, #00BF33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   HERO SECTION
   ============================================ */
.ntpl-placements-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #fefffe 0%, #f0fff4 50%, #e8fff0 100%);
    overflow: hidden;
}

.ntpl-placements-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ntpl-placements-hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.ntpl-placements-hero__shape--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #89F336, #4FE0CB);
    top: -250px;
    right: -150px;
    opacity: 0.25;
    animation: ntpl-floatShape 8s ease-in-out infinite;
}

.ntpl-placements-hero__shape--2 {
    width: 400px;
    height: 400px;
    background: #4FE0CB;
    bottom: -100px;
    left: -100px;
    opacity: 0.3;
    animation: ntpl-floatShape 10s ease-in-out infinite reverse;
}

.ntpl-placements-hero__shape--3 {
    width: 250px;
    height: 250px;
    background: #FFF3C0;
    top: 40%;
    left: 30%;
    opacity: 0.5;
    animation: ntpl-floatShape 6s ease-in-out infinite;
}

.ntpl-placements-hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 191, 51, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

@keyframes ntpl-floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

.ntpl-placements-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-placements-hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ntpl-placements-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #00BF33;
    box-shadow: 0 4px 25px rgba(0, 191, 51, 0.15);
    margin-bottom: 30px;
    animation: ntpl-fadeInDown 0.8s ease-out;
}

.ntpl-placements-hero__badge-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-radius: 50%;
    animation: ntpl-pulse 2s infinite;
}

@keyframes ntpl-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes ntpl-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ntpl-placements-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: ntpl-fadeInUp 0.8s ease-out 0.2s both;
}

.ntpl-placements-hero__title-highlight {
    position: relative;
    display: inline-block;
}

.ntpl-placements-hero__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, #89F336, #4FE0CB);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.ntpl-placements-hero__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: ntpl-fadeInUp 0.8s ease-out 0.4s both;
}

.ntpl-placements-hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 50px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    animation: ntpl-fadeInUp 0.8s ease-out 0.6s both;
}

.ntpl-placements-hero__stat {
    text-align: center;
}

.ntpl-placements-hero__stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00BF33, #4FE0CB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ntpl-placements-hero__stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #777;
}

.ntpl-placements-hero__stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

.ntpl-placements-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #888;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    animation: ntpl-fadeIn 1s ease-out 1s both;
}

.ntpl-placements-hero__scroll-arrow {
    animation: ntpl-bounce 2s infinite;
}

@keyframes ntpl-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes ntpl-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes ntpl-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MARQUEE SECTION
   ============================================ */
.ntpl-placements-marquee {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    overflow: hidden;
}

.ntpl-placements-marquee__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-placements-marquee__header {
    text-align: center;
    margin-bottom: 30px;
}

.ntpl-placements-marquee__tag {
    display: inline-block;
    background: rgba(137, 243, 54, 0.2);
    color: #89F336;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ntpl-placements-marquee__track-wrapper {
    overflow: hidden;
}

.ntpl-placements-marquee__track {
    display: flex;
    gap: 40px;
    animation: ntpl-marquee 30s linear infinite;
}

@keyframes ntpl-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ntpl-placements-marquee__item {
    flex-shrink: 0;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.ntpl-placements-marquee__item:hover {
    background: rgba(137, 243, 54, 0.2);
    border-color: #89F336;
}

/* ============================================
   PARTNERS GRID SECTION
   ============================================ */
.ntpl-placements-partners {
    padding: 120px 0;
    background: #fff;
}

.ntpl-placements-partners__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-placements-partners__header {
    text-align: center;
    margin-bottom: 70px;
}

.ntpl-placements-partners__tag {
    display: inline-block;
    background: linear-gradient(135deg, #89F336, #4FE0CB);
    color: #fff;
    padding: 8px 22px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.ntpl-placements-partners__title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.ntpl-placements-partners__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.ntpl-placements-partners__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ntpl-placements-partners__card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ntpl-placements-partners__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #89F336, #4FE0CB);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ntpl-placements-partners__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(137, 243, 54, 0.15);
    border-color: #89F336;
}

.ntpl-placements-partners__card:hover::before {
    transform: scaleX(1);
}

.ntpl-placements-partners__card--featured {
    background: linear-gradient(135deg, #f0fff4 0%, #e8fff0 100%);
    border: 2px solid #89F336;
}

.ntpl-placements-partners__card--featured::before {
    display: none;
}

.ntpl-placements-partners__card-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(137, 243, 54, 0.3);
}

.ntpl-placements-partners__card-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.ntpl-placements-partners__card-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.ntpl-placements-partners__card-industry {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    display: block;
    margin-bottom: 20px;
}

.ntpl-placements-partners__card-stats {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.ntpl-placements-partners__card-stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00BF33;
}

.ntpl-placements-partners__card-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #888;
}

/* ============================================
   INDUSTRY SECTORS SECTION
   ============================================ */
.ntpl-placements-sectors {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    position: relative;
    overflow: hidden;
}

.ntpl-placements-sectors__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ntpl-placements-sectors__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.ntpl-placements-sectors__shape--1 {
    width: 500px;
    height: 500px;
    background: #89F336;
    top: -200px;
    right: -100px;
    opacity: 0.1;
}

.ntpl-placements-sectors__shape--2 {
    width: 400px;
    height: 400px;
    background: #4FE0CB;
    bottom: -150px;
    left: -100px;
    opacity: 0.1;
}

.ntpl-placements-sectors__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-placements-sectors__header {
    text-align: center;
    margin-bottom: 70px;
}

.ntpl-placements-sectors__tag {
    display: inline-block;
    background: rgba(137, 243, 54, 0.2);
    color: #89F336;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.ntpl-placements-sectors__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.ntpl-placements-sectors__title-highlight {
    position: relative;
    display: inline-block;
}

.ntpl-placements-sectors__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #89F336, #4FE0CB);
    opacity: 0.4;
    z-index: -1;
    border-radius: 4px;
}

.ntpl-placements-sectors__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.ntpl-placements-sectors__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ntpl-placements-sectors__card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.ntpl-placements-sectors__card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(137, 243, 54, 0.3);
    transform: translateY(-8px);
}

.ntpl-placements-sectors__card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.ntpl-placements-sectors__card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.ntpl-placements-sectors__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.ntpl-placements-sectors__card-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.ntpl-placements-sectors__card-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #89F336, #4FE0CB);
    border-radius: 10px;
    transition: width 1s ease-out;
}

.ntpl-placements-sectors__card-percent {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #89F336;
}

/* ============================================
   SUCCESS STORIES SECTION
   ============================================ */
.ntpl-placements-stories {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #f0fff4 100%);
}

.ntpl-placements-stories__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-placements-stories__header {
    text-align: center;
    margin-bottom: 70px;
}

.ntpl-placements-stories__tag {
    display: inline-block;
    background: #FFF3C0;
    color: #b38600;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.ntpl-placements-stories__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.ntpl-placements-stories__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #666;
}

.ntpl-placements-stories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ntpl-placements-stories__card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 35px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
}

.ntpl-placements-stories__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.ntpl-placements-stories__card--featured {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border: none;
}

.ntpl-placements-stories__card--featured .ntpl-placements-stories__card-text,
.ntpl-placements-stories__card--featured .ntpl-placements-stories__card-name {
    color: #fff;
}

.ntpl-placements-stories__card--featured .ntpl-placements-stories__card-role {
    color: rgba(255, 255, 255, 0.7);
}

.ntpl-placements-stories__card-quote {
    margin-bottom: 20px;
    color: #89F336;
}

.ntpl-placements-stories__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.ntpl-placements-stories__card-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ntpl-placements-stories__card-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.ntpl-placements-stories__card-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.ntpl-placements-stories__card-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
}

/* ============================================
   PLACEMENT PROCESS SECTION
   ============================================ */
.ntpl-placements-process {
    padding: 120px 0;
    background: #fff;
}

.ntpl-placements-process__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-placements-process__header {
    text-align: center;
    margin-bottom: 80px;
}

.ntpl-placements-process__tag {
    display: inline-block;
    background: linear-gradient(135deg, #89F336, #4FE0CB);
    color: #fff;
    padding: 8px 22px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.ntpl-placements-process__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.ntpl-placements-process__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #666;
}

.ntpl-placements-process__timeline {
    position: relative;
    padding-left: 80px;
}

.ntpl-placements-process__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    width: 4px;
    background: linear-gradient(180deg, #89F336, #4FE0CB, #00BF33);
    border-radius: 2px;
}

.ntpl-placements-process__step {
    position: relative;
    padding-bottom: 50px;
}

.ntpl-placements-process__step:last-child {
    padding-bottom: 0;
}

.ntpl-placements-process__step-number {
    position: absolute;
    left: -80px;
    top: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 4px solid #89F336;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00BF33;
    z-index: 2;
    transition: all 0.3s ease;
}

.ntpl-placements-process__step:hover .ntpl-placements-process__step-number {
    background: linear-gradient(135deg, #89F336, #00BF33);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(137, 243, 54, 0.5);
}

.ntpl-placements-process__step--final .ntpl-placements-process__step-number {
    background: linear-gradient(135deg, #89F336, #00BF33);
    color: #fff;
    border-color: #00BF33;
}

.ntpl-placements-process__step-content {
    padding: 25px 30px;
    background: #f9f9f9;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.ntpl-placements-process__step:hover .ntpl-placements-process__step-content {
    background: linear-gradient(135deg, #f0fff4, #e8fff0);
    transform: translateX(10px);
}

.ntpl-placements-process__step--final .ntpl-placements-process__step-content {
    background: linear-gradient(135deg, #f0fff4, #e8fff0);
    border: 2px solid #89F336;
}

.ntpl-placements-process__step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.ntpl-placements-process__step-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #666;
    margin: 0;
}

/* ============================================
   JOB FAIR SECTION
   ============================================ */
.ntpl-placements-fair {
    padding: 120px 0;
    background: linear-gradient(180deg, #f0fff4 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.ntpl-placements-fair__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 191, 51, 0.03) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.ntpl-placements-fair__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-placements-fair__content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.ntpl-placements-fair__tag {
    display: inline-block;
    background: #FFF3C0;
    color: #b38600;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.ntpl-placements-fair__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ntpl-placements-fair__title-highlight {
    background: linear-gradient(135deg, #89F336, #00BF33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ntpl-placements-fair__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.ntpl-placements-fair__features {
    list-style: none;
    margin: 0 0 35px 0;
    padding: 0;
}

.ntpl-placements-fair__feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #444;
}

.ntpl-placements-fair__feature-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.ntpl-placements-fair__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00BF33, #89F336);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 191, 51, 0.35);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ntpl-placements-fair__btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 191, 51, 0.45);
}

.ntpl-placements-fair__btn svg {
    transition: transform 0.3s;
}

.ntpl-placements-fair__btn:hover svg {
    transform: translateX(5px);
}

.ntpl-placements-fair__visual {
    display: flex;
    justify-content: center;
}

.ntpl-placements-fair__card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid #89F336;
    max-width: 350px;
    width: 100%;
}

.ntpl-placements-fair__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ntpl-placements-fair__card-icon {
    font-size: 2.5rem;
}

.ntpl-placements-fair__card-badge {
    background: linear-gradient(135deg, #89F336, #00BF33);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.ntpl-placements-fair__card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
}

.ntpl-placements-fair__card-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ntpl-placements-fair__card-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f9f9f9;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
}

.ntpl-placements-fair__card-detail-icon {
    font-size: 1.2rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.ntpl-placements-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #89F336 0%, #00BF33 50%, #4FE0CB 100%);
    position: relative;
    overflow: hidden;
}

.ntpl-placements-cta__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 3px 3px, rgba(255, 255, 255, 0.1) 2px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.ntpl-placements-cta__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-placements-cta__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ntpl-placements-cta__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ntpl-placements-cta__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0;
}

.ntpl-placements-cta__buttons {
    display: flex;
    gap: 20px;
}

.ntpl-placements-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

.ntpl-placements-cta__btn--primary {
    background: #fff;
    color: #00BF33;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ntpl-placements-cta__btn--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.ntpl-placements-cta__btn--primary svg {
    transition: transform 0.3s;
}

.ntpl-placements-cta__btn--primary:hover svg {
    transform: translateX(5px);
}

.ntpl-placements-cta__btn--secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ntpl-placements-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .ntpl-placements-partners__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ntpl-placements-fair__content {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .ntpl-placements-hero__title {
        font-size: 3rem;
    }

    .ntpl-placements-partners__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ntpl-placements-sectors__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ntpl-placements-stories__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .ntpl-placements-fair__content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ntpl-placements-fair__visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .ntpl-placements-hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .ntpl-placements-hero__title {
        font-size: 2.3rem;
    }

    .ntpl-placements-hero__desc {
        font-size: 1.05rem;
    }

    .ntpl-placements-hero__stats {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
    }

    .ntpl-placements-hero__stat-divider {
        width: 60px;
        height: 1px;
    }

    .ntpl-placements-hero__scroll {
        display: none;
    }

    .ntpl-placements-marquee {
        padding: 40px 0;
    }

    .ntpl-placements-partners,
    .ntpl-placements-sectors,
    .ntpl-placements-stories,
    .ntpl-placements-process,
    .ntpl-placements-fair {
        padding: 80px 0;
    }

    .ntpl-placements-partners__title,
    .ntpl-placements-sectors__title,
    .ntpl-placements-stories__title,
    .ntpl-placements-process__title,
    .ntpl-placements-fair__title {
        font-size: 2rem;
    }

    .ntpl-placements-partners__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .ntpl-placements-sectors__grid {
        grid-template-columns: 1fr;
    }

    .ntpl-placements-process__timeline {
        padding-left: 60px;
    }

    .ntpl-placements-process__step-number {
        left: -60px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .ntpl-placements-process__step-content {
        padding: 20px;
    }

    .ntpl-placements-cta__content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .ntpl-placements-cta__title {
        font-size: 2rem;
    }

    .ntpl-placements-cta__desc {
        max-width: 100%;
    }

    .ntpl-placements-cta__buttons {
        flex-direction: column;
        width: 100%;
    }

    .ntpl-placements-cta__btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ntpl-placements-hero__title {
        font-size: 1.9rem;
    }

    .ntpl-placements-hero__badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .ntpl-placements-hero__desc {
        font-size: 1rem;
    }

    .ntpl-placements-marquee__item {
        padding: 15px 25px;
        font-size: 0.95rem;
    }

    .ntpl-placements-partners__card {
        padding: 30px 25px;
    }

    .ntpl-placements-sectors__card {
        padding: 30px 25px;
    }

    .ntpl-placements-stories__card {
        padding: 30px 25px;
    }

    .ntpl-placements-stories__card-text {
        font-size: 0.95rem;
    }

    .ntpl-placements-process__timeline {
        padding-left: 50px;
    }

    .ntpl-placements-process__step-number {
        left: -50px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .ntpl-placements-process__step-title {
        font-size: 1.1rem;
    }

    .ntpl-placements-process__step-text {
        font-size: 0.9rem;
    }

    .ntpl-placements-fair__card {
        padding: 30px 25px;
    }

    .ntpl-placements-fair__card-title {
        font-size: 1.5rem;
    }

    .ntpl-placements-fair__features {
        margin-bottom: 25px;
    }

    .ntpl-placements-fair__feature {
        font-size: 0.9rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes ntpl-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ntpl-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ntpl-placements-hero__content {
    animation: ntpl-fadeInUp 0.8s ease-out;
}

.ntpl-placements-partners__card {
    animation: ntpl-fadeInUp 0.6s ease-out backwards;
}

.ntpl-placements-partners__card:nth-child(1) {
    animation-delay: 0.1s;
}

.ntpl-placements-partners__card:nth-child(2) {
    animation-delay: 0.15s;
}

.ntpl-placements-partners__card:nth-child(3) {
    animation-delay: 0.2s;
}

.ntpl-placements-partners__card:nth-child(4) {
    animation-delay: 0.25s;
}

.ntpl-placements-partners__card:nth-child(5) {
    animation-delay: 0.3s;
}

.ntpl-placements-partners__card:nth-child(6) {
    animation-delay: 0.35s;
}

.ntpl-placements-partners__card:nth-child(7) {
    animation-delay: 0.4s;
}

.ntpl-placements-partners__card:nth-child(8) {
    animation-delay: 0.45s;
}

.ntpl-placements-sectors__card {
    animation: ntpl-fadeInUp 0.6s ease-out backwards;
}

.ntpl-placements-sectors__card:nth-child(1) {
    animation-delay: 0.1s;
}

.ntpl-placements-sectors__card:nth-child(2) {
    animation-delay: 0.2s;
}

.ntpl-placements-sectors__card:nth-child(3) {
    animation-delay: 0.3s;
}

.ntpl-placements-sectors__card:nth-child(4) {
    animation-delay: 0.4s;
}

.ntpl-placements-sectors__card:nth-child(5) {
    animation-delay: 0.5s;
}

.ntpl-placements-sectors__card:nth-child(6) {
    animation-delay: 0.6s;
}

.ntpl-placements-stories__card {
    animation: ntpl-fadeInUp 0.6s ease-out backwards;
}

.ntpl-placements-stories__card:nth-child(1) {
    animation-delay: 0.1s;
}

.ntpl-placements-stories__card:nth-child(2) {
    animation-delay: 0.2s;
}

.ntpl-placements-stories__card:nth-child(3) {
    animation-delay: 0.3s;
}

.ntpl-placements-process__step {
    animation: ntpl-fadeInUp 0.6s ease-out backwards;
}

.ntpl-placements-process__step:nth-child(2) {
    animation-delay: 0.1s;
}

.ntpl-placements-process__step:nth-child(3) {
    animation-delay: 0.2s;
}

.ntpl-placements-process__step:nth-child(4) {
    animation-delay: 0.3s;
}

.ntpl-placements-process__step:nth-child(5) {
    animation-delay: 0.4s;
}

.ntpl-placements-process__step:nth-child(6) {
    animation-delay: 0.5s;
}

.ntpl-placements-process__step:nth-child(7) {
    animation-delay: 0.6s;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .ntpl-placements-marquee__track {
        animation: none;
    }
}

/* ============================================
   ADDITIONAL HOVER EFFECTS
   ============================================ */

/* Progress bar animation on scroll */
.ntpl-placements-sectors__card-bar-fill {
    width: 0;
    animation: ntpl-fillBar 1.5s ease-out forwards;
}

@keyframes ntpl-fillBar {
    to {
        width: var(--fill-width, 80%);
    }
}

/* Card shine effect */
.ntpl-placements-partners__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.ntpl-placements-partners__card:hover::after {
    left: 100%;
}

/* Floating animation for fair card */
.ntpl-placements-fair__card {
    animation: ntpl-floatCard 4s ease-in-out infinite;
}

@keyframes ntpl-floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Marquee pause on hover */
.ntpl-placements-marquee__track-wrapper:hover .ntpl-placements-marquee__track {
    animation-play-state: paused;
}

/* Step number pulse effect */
.ntpl-placements-process__step--final .ntpl-placements-process__step-number {
    animation: ntpl-pulseGlow 2s ease-in-out infinite;
}

@keyframes ntpl-pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(137, 243, 54, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(137, 243, 54, 0);
    }
}

/* Avatar hover effect */
.ntpl-placements-stories__card-avatar {
    transition: all 0.3s ease;
}

.ntpl-placements-stories__card:hover .ntpl-placements-stories__card-avatar {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(137, 243, 54, 0.4);
}

/* Logo hover effect */
.ntpl-placements-partners__card-logo {
    transition: all 0.4s ease;
}

.ntpl-placements-partners__card:hover .ntpl-placements-partners__card-logo {
    transform: scale(1.1) rotate(5deg);
}

/* Sector card icon bounce */
.ntpl-placements-sectors__card-icon {
    transition: all 0.3s ease;
}

.ntpl-placements-sectors__card:hover .ntpl-placements-sectors__card-icon {
    transform: scale(1.2);
}

/* Quote icon animation */
.ntpl-placements-stories__card-quote svg {
    transition: all 0.3s ease;
}

.ntpl-placements-stories__card:hover .ntpl-placements-stories__card-quote svg {
    transform: scale(1.1);
    opacity: 0.4;
}