/* ============================================
   NTPL SERVICES 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;
}

/* Typography Base */
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 */
::selection {
    background: #89F336;
    color: #1a1a2e;
}

::-moz-selection {
    background: #89F336;
    color: #1a1a2e;
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.ntpl-services {
    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;
}

.ntpl-highlight-box {
    background: linear-gradient(180deg, transparent 50%, #FFF3C0 50%);
    padding: 0 8px;
}

.ntpl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ============================================
   SERVICES HERO SECTION
   ============================================ */
.ntpl-services-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-services-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ntpl-services-hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.ntpl-services-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-services-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-services-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-services-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-services-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-services-hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ntpl-services-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-services-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-services-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-services-hero__title-highlight {
    position: relative;
    display: inline-block;
}

.ntpl-services-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-services-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-services-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-services-hero__stat {
    text-align: center;
}

.ntpl-services-hero__stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00BF33, #4FE0CB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ntpl-services-hero__stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #777;
}

.ntpl-services-hero__stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

.ntpl-services-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-services-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);
    }
}

/* ============================================
   SERVICES OVERVIEW SECTION
   ============================================ */
.ntpl-services-overview {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.ntpl-services-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-services-overview__header {
    text-align: center;
    margin-bottom: 70px;
}

.ntpl-services-overview__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-services-overview__title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.ntpl-services-overview__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.ntpl-services-overview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
}

.ntpl-services-overview__card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.ntpl-services-overview__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #89F336, #4FE0CB);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.ntpl-services-overview__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(137, 243, 54, 0.12);
    border-color: #89F336;
}

.ntpl-services-overview__card:hover::before {
    transform: scaleX(1);
}

.ntpl-services-overview__card--main {
    grid-column: 1;
    grid-row: span 2;
    background: linear-gradient(135deg, #f0fff4 0%, #e8fff0 100%);
    border: 2px solid #89F336;
}

.ntpl-services-overview__card--main::before {
    display: none;
}

.ntpl-services-overview__card-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(137, 243, 54, 0.3);
}

.ntpl-services-overview__card-icon-wrap--small {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.ntpl-services-overview__card-icon {
    font-size: 2.5rem;
}

.ntpl-services-overview__card-icon-wrap--small .ntpl-services-overview__card-icon {
    font-size: 1.8rem;
}

.ntpl-services-overview__card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.ntpl-services-overview__card--main .ntpl-services-overview__card-title {
    font-size: 1.6rem;
}

.ntpl-services-overview__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.ntpl-services-overview__card--main .ntpl-services-overview__card-text {
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.ntpl-services-overview__card-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ntpl-services-overview__card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    border-bottom: 1px solid rgba(137, 243, 54, 0.2);
}

.ntpl-services-overview__card-features li:last-child {
    border-bottom: none;
}

.ntpl-services-overview__feature-check {
    color: #00BF33;
    font-weight: 700;
}

/* ============================================
   SECTOR AFFILIATIONS SECTION
   ============================================ */
.ntpl-services-sectors {
    padding: 120px 0;
    background: linear-gradient(180deg, #fafcfa 0%, #f5f9f5 100%);
    position: relative;
    overflow: hidden;
}

.ntpl-services-sectors__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(137, 243, 54, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(79, 224, 203, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.ntpl-services-sectors__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-services-sectors__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.ntpl-services-sectors__header-left {
    max-width: 600px;
}

.ntpl-services-sectors__tag {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    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-services-sectors__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.ntpl-services-sectors__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.ntpl-services-sectors__govt-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFF3C0, #fff8dc);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid #f5e6a3;
}

.ntpl-services-sectors__govt-badge-icon {
    font-size: 1.5rem;
}

.ntpl-services-sectors__govt-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #b38600;
}

/* Sector Cards */
.ntpl-services-sectors__showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ntpl-services-sectors__card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ntpl-services-sectors__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #89F336, #4FE0CB);
}

.ntpl-services-sectors__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(137, 243, 54, 0.12);
}

.ntpl-services-sectors__card--reverse {
    grid-template-columns: 1fr 350px;
}

.ntpl-services-sectors__card--reverse::before {
    left: auto;
    right: 0;
}

.ntpl-services-sectors__card--reverse .ntpl-services-sectors__card-visual {
    order: 2;
}

.ntpl-services-sectors__card-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fff4 0%, #e8fff0 100%);
    border-radius: 24px;
    min-height: 280px;
    overflow: hidden;
}

.ntpl-services-sectors__card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 3px 3px, rgba(0, 191, 51, 0.08) 2px, transparent 0);
    background-size: 25px 25px;
}

.ntpl-services-sectors__card-icon {
    font-size: 6rem;
    position: relative;
    z-index: 2;
    animation: ntpl-float 4s ease-in-out infinite;
}

@keyframes ntpl-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.ntpl-services-sectors__card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ntpl-services-sectors__card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #89F336, #00BF33);
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    width: fit-content;
}

.ntpl-services-sectors__card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.ntpl-services-sectors__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.ntpl-services-sectors__card-text strong {
    color: #00BF33;
    font-weight: 600;
}

.ntpl-services-sectors__card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.ntpl-services-sectors__highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9f9f9;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    transition: all 0.3s ease;
}

.ntpl-services-sectors__highlight-item:hover {
    background: #f0fff4;
    transform: translateX(5px);
}

.ntpl-services-sectors__highlight-icon {
    font-size: 1.1rem;
}

.ntpl-services-sectors__card-courses {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.ntpl-services-sectors__courses-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ntpl-services-sectors__course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ntpl-services-sectors__course-tag {
    background: linear-gradient(135deg, #f0fff4, #e8fff0);
    color: #00BF33;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(137, 243, 54, 0.3);
    transition: all 0.3s ease;
}

.ntpl-services-sectors__course-tag:hover {
    background: linear-gradient(135deg, #89F336, #00BF33);
    color: #fff;
    transform: scale(1.05);
}

/* ============================================
   KEY ASSOCIATIONS SECTION
   ============================================ */
.ntpl-services-associations {
    padding: 120px 0;
    background: #fff;
}

.ntpl-services-associations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-services-associations__header {
    text-align: center;
    margin-bottom: 70px;
}

.ntpl-services-associations__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-services-associations__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.ntpl-services-associations__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

.ntpl-services-associations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ntpl-services-associations__card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.ntpl-services-associations__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.ntpl-services-associations__card--featured {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.ntpl-services-associations__card--featured .ntpl-services-associations__card-header,
.ntpl-services-associations__card--featured .ntpl-services-associations__card-body-title,
.ntpl-services-associations__card--featured .ntpl-services-associations__card-body-text {
    color: #fff;
}

.ntpl-services-associations__card--featured .ntpl-services-associations__highlight-text {
    color: rgba(255, 255, 255, 0.8);
}

.ntpl-services-associations__card--featured .ntpl-services-associations__highlight-dot {
    background: #89F336;
}

.ntpl-services-associations__card-header {
    padding: 30px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ntpl-services-associations__card-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntpl-services-associations__card-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.ntpl-services-associations__card--featured .ntpl-services-associations__card-logo {
    width: 90px;
    height: 90px;
    border-radius: 20px;
}

.ntpl-services-associations__card--featured .ntpl-services-associations__card-logo-text {
    font-size: 1.2rem;
}

.ntpl-services-associations__card-type {
    background: #f5f5f5;
    color: #666;
    padding: 6px 14px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.ntpl-services-associations__card--featured .ntpl-services-associations__card-type {
    background: rgba(255, 255, 255, 0.1);
    color: #89F336;
}

.ntpl-services-associations__card-body {
    padding: 25px 30px;
}

.ntpl-services-associations__card-body-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ntpl-services-associations__card--featured .ntpl-services-associations__card-body-title {
    font-size: 1.8rem;
}

.ntpl-services-associations__card-body-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ntpl-services-associations__card--featured .ntpl-services-associations__card-body-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
}

.ntpl-services-associations__card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ntpl-services-associations__highlight {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ntpl-services-associations__highlight-dot {
    width: 8px;
    height: 8px;
    background: #00BF33;
    border-radius: 50%;
}

.ntpl-services-associations__highlight-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
}

.ntpl-services-associations__card-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ntpl-services-associations__ministry-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.ntpl-services-why {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    position: relative;
    overflow: hidden;
}

.ntpl-services-why__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ntpl-services-why__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.ntpl-services-why__shape--1 {
    width: 500px;
    height: 500px;
    background: #89F336;
    top: -200px;
    right: -100px;
    opacity: 0.1;
}

.ntpl-services-why__shape--2 {
    width: 400px;
    height: 400px;
    background: #4FE0CB;
    bottom: -150px;
    left: -100px;
    opacity: 0.1;
}

.ntpl-services-why__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-services-why__header {
    text-align: center;
    margin-bottom: 70px;
}

.ntpl-services-why__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-services-why__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
}

.ntpl-services-why__title-highlight {
    position: relative;
    display: inline-block;
}

.ntpl-services-why__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-services-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ntpl-services-why__card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 35px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.ntpl-services-why__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(137, 243, 54, 0.1), rgba(79, 224, 203, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ntpl-services-why__card:hover {
    transform: translateY(-10px);
    border-color: rgba(137, 243, 54, 0.3);
}

.ntpl-services-why__card:hover::before {
    opacity: 1;
}

.ntpl-services-why__card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
}

.ntpl-services-why__card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.ntpl-services-why__card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.ntpl-services-why__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ============================================
   TRAINING APPROACH SECTION
   ============================================ */
.ntpl-services-approach {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #f0fff4 100%);
}

.ntpl-services-approach__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-services-approach__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ntpl-services-approach__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-services-approach__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ntpl-services-approach__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

.ntpl-services-approach__features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.ntpl-services-approach__feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.ntpl-services-approach__feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(137, 243, 54, 0.1);
}

.ntpl-services-approach__feature-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fff4, #e8fff0);
    border-radius: 12px;
    flex-shrink: 0;
}

.ntpl-services-approach__feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.ntpl-services-approach__feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.ntpl-services-approach__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-services-approach__btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 191, 51, 0.45);
}

.ntpl-services-approach__btn svg {
    transition: transform 0.3s;
}

.ntpl-services-approach__btn:hover svg {
    transform: translateX(5px);
}

/* Process Wheel */
.ntpl-services-approach__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ntpl-services-approach__wheel {
    position: relative;
    width: 400px;
    height: 400px;
}

.ntpl-services-approach__wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00BF33, #89F336);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 191, 51, 0.3);
    z-index: 10;
}

.ntpl-services-approach__wheel-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.ntpl-services-approach__wheel-item {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    text-align: center;
    padding: 5px;
}

.ntpl-services-approach__wheel-item:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, #89F336, #00BF33);
    color: #fff;
    border-color: #89F336;
}

.ntpl-services-approach__wheel-item--highlight {
    background: linear-gradient(135deg, #4FE0CB, #00BF33);
    color: #fff;
    border-color: #4FE0CB;
    width: 80px;
    height: 80px;
}

/* Position wheel items in a circle */
.ntpl-services-approach__wheel-item--1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.ntpl-services-approach__wheel-item--2 {
    top: 12%;
    right: 12%;
}

.ntpl-services-approach__wheel-item--3 {
    top: 35%;
    right: 0%;
}

.ntpl-services-approach__wheel-item--4 {
    top: 60%;
    right: 5%;
}

.ntpl-services-approach__wheel-item--5 {
    bottom: 12%;
    right: 20%;
}

.ntpl-services-approach__wheel-item--6 {
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
}

.ntpl-services-approach__wheel-item--7 {
    bottom: 12%;
    left: 20%;
}

.ntpl-services-approach__wheel-item--8 {
    top: 60%;
    left: 5%;
}

.ntpl-services-approach__wheel-item--9 {
    top: 35%;
    left: 0%;
}

.ntpl-services-approach__wheel-item--10 {
    top: 12%;
    left: 12%;
}

.ntpl-services-approach__wheel-item--11 {
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
}

/* ============================================
   CTA SECTION
   ============================================ */
.ntpl-services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #89F336 0%, #00BF33 50%, #4FE0CB 100%);
    position: relative;
    overflow: hidden;
}

.ntpl-services-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-services-cta__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-services-cta__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ntpl-services-cta__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ntpl-services-cta__text {
    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-services-cta__buttons {
    display: flex;
    gap: 20px;
}

.ntpl-services-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-services-cta__btn--primary {
    background: #fff;
    color: #00BF33;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ntpl-services-cta__btn--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.ntpl-services-cta__btn--primary svg {
    transition: transform 0.3s;
}

.ntpl-services-cta__btn--primary:hover svg {
    transform: translateX(5px);
}

.ntpl-services-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-services-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.ntpl-services-cta__btn-icon {
    font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .ntpl-services-sectors__card {
        grid-template-columns: 280px 1fr;
        gap: 40px;
        padding: 40px;
    }

    .ntpl-services-sectors__card--reverse {
        grid-template-columns: 1fr 280px;
    }

    .ntpl-services-associations__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ntpl-services-associations__card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 1024px) {
    .ntpl-services-hero__title {
        font-size: 3rem;
    }

    .ntpl-services-overview__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ntpl-services-overview__card--main {
        grid-column: span 2;
        grid-row: span 1;
    }

    .ntpl-services-sectors__card,
    .ntpl-services-sectors__card--reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ntpl-services-sectors__card--reverse .ntpl-services-sectors__card-visual {
        order: 0;
    }

    .ntpl-services-sectors__card-visual {
        min-height: 200px;
    }

    .ntpl-services-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ntpl-services-approach__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ntpl-services-approach__visual {
        order: -1;
    }

    .ntpl-services-approach__wheel {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .ntpl-services-hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .ntpl-services-hero__title {
        font-size: 2.3rem;
    }

    .ntpl-services-hero__desc {
        font-size: 1.05rem;
    }

    .ntpl-services-hero__stats {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
    }

    .ntpl-services-hero__stat-divider {
        width: 60px;
        height: 1px;
    }

    .ntpl-services-hero__scroll {
        display: none;
    }

    .ntpl-services-overview,
    .ntpl-services-sectors,
    .ntpl-services-associations,
    .ntpl-services-why,
    .ntpl-services-approach {
        padding: 80px 0;
    }

    .ntpl-services-overview__title,
    .ntpl-services-sectors__title,
    .ntpl-services-associations__title,
    .ntpl-services-why__title,
    .ntpl-services-approach__title {
        font-size: 2rem;
    }

    .ntpl-services-overview__grid {
        grid-template-columns: 1fr;
    }

    .ntpl-services-overview__card--main {
        grid-column: span 1;
    }

    .ntpl-services-sectors__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .ntpl-services-sectors__card {
        padding: 30px;
        border-radius: 20px;
    }

    .ntpl-services-sectors__card-title {
        font-size: 1.5rem;
    }

    .ntpl-services-associations__grid {
        grid-template-columns: 1fr;
    }

    .ntpl-services-associations__card--featured {
        grid-column: span 1;
    }

    .ntpl-services-why__grid {
        grid-template-columns: 1fr;
    }

    .ntpl-services-approach__wheel {
        width: 300px;
        height: 300px;
    }

    .ntpl-services-approach__wheel-center {
        width: 90px;
        height: 90px;
    }

    .ntpl-services-approach__wheel-text {
        font-size: 1rem;
    }

    .ntpl-services-approach__wheel-item {
        width: 55px;
        height: 55px;
        font-size: 0.65rem;
    }

    .ntpl-services-approach__wheel-item--highlight {
        width: 65px;
        height: 65px;
    }

    .ntpl-services-cta__content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .ntpl-services-cta__title {
        font-size: 2rem;
    }

    .ntpl-services-cta__buttons {
        flex-direction: column;
        width: 100%;
    }

    .ntpl-services-cta__btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ntpl-services-hero__title {
        font-size: 1.9rem;
    }

    .ntpl-services-hero__desc {
        font-size: 1rem;
    }

    .ntpl-services-hero__badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .ntpl-services-sectors__card-highlights {
        flex-direction: column;
    }

    .ntpl-services-sectors__course-tags {
        flex-direction: column;
    }

    .ntpl-services-sectors__course-tag {
        text-align: center;
    }

    .ntpl-services-associations__card-header {
        flex-direction: column;
        gap: 15px;
    }

    .ntpl-services-approach__wheel {
        width: 260px;
        height: 260px;
    }

    .ntpl-services-approach__wheel-center {
        width: 70px;
        height: 70px;
    }

    .ntpl-services-approach__wheel-text {
        font-size: 0.85rem;
    }

    .ntpl-services-approach__wheel-item {
        width: 45px;
        height: 45px;
        font-size: 0.55rem;
    }

    .ntpl-services-approach__wheel-item--highlight {
        width: 55px;
        height: 55px;
    }
}

/* ============================================
   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-services-hero__content {
    animation: ntpl-fadeInUp 0.8s ease-out;
}

.ntpl-services-overview__card {
    animation: ntpl-fadeInUp 0.6s ease-out backwards;
}

.ntpl-services-overview__card:nth-child(1) {
    animation-delay: 0.1s;
}

.ntpl-services-overview__card:nth-child(2) {
    animation-delay: 0.2s;
}

.ntpl-services-overview__card:nth-child(3) {
    animation-delay: 0.3s;
}

.ntpl-services-overview__card:nth-child(4) {
    animation-delay: 0.4s;
}

.ntpl-services-overview__card:nth-child(5) {
    animation-delay: 0.5s;
}

.ntpl-services-sectors__card {
    animation: ntpl-fadeInUp 0.8s ease-out;
}

.ntpl-services-associations__card {
    animation: ntpl-fadeInUp 0.6s ease-out backwards;
}

.ntpl-services-associations__card:nth-child(1) {
    animation-delay: 0.1s;
}

.ntpl-services-associations__card:nth-child(2) {
    animation-delay: 0.2s;
}

.ntpl-services-associations__card:nth-child(3) {
    animation-delay: 0.3s;
}

.ntpl-services-associations__card:nth-child(4) {
    animation-delay: 0.4s;
}

.ntpl-services-associations__card:nth-child(5) {
    animation-delay: 0.5s;
}

.ntpl-services-why__card {
    animation: ntpl-fadeInUp 0.6s ease-out backwards;
}

.ntpl-services-why__card:nth-child(1) {
    animation-delay: 0.1s;
}

.ntpl-services-why__card:nth-child(2) {
    animation-delay: 0.2s;
}

.ntpl-services-why__card:nth-child(3) {
    animation-delay: 0.3s;
}

.ntpl-services-why__card:nth-child(4) {
    animation-delay: 0.4s;
}

.ntpl-services-why__card:nth-child(5) {
    animation-delay: 0.5s;
}

.ntpl-services-why__card:nth-child(6) {
    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;
    }
}