/* ===== Font Imports ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --ocean: #0091DA;
    --leaf: #76B900;
    /* Adjusted to Official NVIDIA Green */
    --navy: #002D5B;
    /* Deep Pro Navy */
    --orange: #FF7A00;
    /* Pro CTA Orange */
    --gray: #717074;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --gray-bg: #F8F9FA;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --accent: #0091DA;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --container-width: 1300px;
    --section-padding: 8rem 0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
}

/* Typography Enhancements */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

span.highlight {
    color: var(--leaf);
}

/* Header & Navigation Styles */
.header {
    background: var(--white);
    padding: 1.2rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    height: 35px;
    width: auto;
}

.divider {
    width: 1px;
    height: 30px;
    background-color: #ddd;
}

.partner-badge {
    background: var(--gray-bg);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(0, 45, 91, 0.1);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--leaf);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 rgba(118, 185, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

/* ===== HERO SECTION ===== */
/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(118, 185, 0, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 45, 91, 0.02) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h1v30H0V0zm1 0h29v1H1V0z' fill='%23002D5B' fill-opacity='0.01' fill-rule='evenodd' /%3E%3C/svg%3E");
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

#heroParticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Floating gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
}

/* Soft Professional Orbs */
.hero-orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 145, 218, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: orbFloat1 20s ease-in-out infinite;
    mix-blend-mode: multiply;
}

.hero-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 185, 0, 0.05) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: orbFloat2 25s ease-in-out infinite;
    mix-blend-mode: multiply;
}

.hero-orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 185, 0, 0.03) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 30s ease-in-out infinite;
    opacity: 0.2;
}

.hero-orb-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 145, 218, 0.04) 0%, transparent 70%);
    bottom: 10%;
    right: 15%;
    animation: orbFloat1 22s ease-in-out infinite reverse;
    opacity: 0.3;
}

.hero-orb-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(118, 185, 0, 0.03) 0%, transparent 70%);
    top: 15%;
    left: 10%;
    animation: orbFloat2 18s ease-in-out infinite reverse;
    opacity: 0.2;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-40px, 30px) scale(1.1);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(1.15);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.25;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1.2;
    max-width: 600px;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
    max-width: 500px;
}

.description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 550px;
}

/* Hero tag */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(120, 190, 32, 0.2);
    color: var(--leaf);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-transform: uppercase;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--leaf);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.hero-text h1 span {
    color: var(--leaf);
    display: inline;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ocean);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text .description {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
}

.btn-primary:hover {
    background: #e66e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 45, 91, 0.15);
}

.btn-secondary:hover {
    background: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 45, 91, 0.25);
}

.btn-glow {
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(120, 190, 32, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(120, 190, 32, 0.35);
    }
}

/* ===== STATS BAR ===== */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Visual Wrapper */
.visual-wrapper::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 185, 0, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.floating-brand {
    position: absolute;
    top: 5%;
    right: 5%;
    height: 35px;
    opacity: 0.15;
    filter: brightness(0.5);
    animation: floatBrand 8s ease-in-out infinite;
}

.gpu-card-premium {
    width: 440px;
    height: 280px;
    background: linear-gradient(135deg, #002D5B 0%, #001A35 100%);
    border-radius: 16px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 45, 91, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.gpu-card-premium:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.card-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.chip {
    background: var(--leaf);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.lines span {
    display: block;
    width: 60px;
    height: 2px;
    background: rgba(118, 185, 0, 0.3);
    margin: 4px auto;
}

.card-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(118, 185, 0, 0.15) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
}

.badge-certified {
    position: absolute;
    bottom: 50px;
    right: -20px;
    background: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    z-index: 5;
    border: 1px solid rgba(0, 45, 91, 0.05);
}

@keyframes floatBrand {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== HERO IMAGE / GPU VISUAL ===== */
.hero-image {
    flex: 0.9;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-container {
    position: relative;
}

.gpu-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 45, 91, 0.2);
    border: 1px solid rgba(0, 45, 91, 0.08);
    background: #000;
}

.gpu-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    animation: scanLine 4s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes scanLine {
    0% {
        left: -100%;
    }

    30% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.gpu-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(120, 190, 32, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: gpuPulse 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes gpuPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.gpu-circle {
    animation: circleRotate 8s linear infinite;
    transform-origin: 200px 150px;
}

.gpu-circle-inner {
    animation: circleRotate 6s linear infinite reverse;
    transform-origin: 200px 150px;
}

@keyframes circleRotate {
    0% {
        stroke-dasharray: 0, 999;
    }

    50% {
        stroke-dasharray: 250, 999;
    }

    100% {
        stroke-dasharray: 0, 999;
    }
}

.circuit-line {
    animation: circuitGlow 3s ease-in-out infinite;
}

.circuit-line:nth-child(2) {
    animation-delay: 0.5s;
}

.circuit-line:nth-child(3) {
    animation-delay: 1s;
}

@keyframes circuitGlow {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.6;
    }
}

.delivered-by {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.delivered-by p {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.delivered-by img {
    height: 25px;
    width: auto;
}

.certified-text {
    color: var(--leaf) !important;
    font-weight: 700 !important;
}

/* ===== FADE-UP ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
}

.delay-5 {
    animation-delay: 0.8s;
}

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

/* ===== SCROLL ANIMATIONS ===== */
.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delay for lists */
.slide-in-left:nth-child(1) {
    transition-delay: 0.1s;
}

.slide-in-left:nth-child(2) {
    transition-delay: 0.2s;
}

.slide-in-left:nth-child(3) {
    transition-delay: 0.3s;
}

.slide-in-left:nth-child(4) {
    transition-delay: 0.4s;
}

.slide-in-right:nth-child(1) {
    transition-delay: 0.1s;
}

.slide-in-right:nth-child(2) {
    transition-delay: 0.25s;
}

.slide-in-right:nth-child(3) {
    transition-delay: 0.4s;
}

.why-edforce {
    padding: 8rem 0;
    background: #FDFDFD;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.features-list-premium {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-item-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(0, 45, 91, 0.05);
    transition: all 0.3s ease;
}

.feature-item-row:hover {
    transform: translateX(10px);
    border-color: var(--leaf);
    box-shadow: 0 4px 15px rgba(0, 45, 91, 0.05);
}

.feature-icon-small {
    width: 44px;
    height: 44px;
    background: rgba(118, 185, 0, 0.1);
    color: var(--leaf);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.popular-programs {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 45, 91, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.popular-programs h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--navy);
    padding-left: 1rem;
    border-left: 4px solid var(--leaf);
}

.program-card {
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.program-card:hover {
    background: var(--white);
    border-color: var(--leaf);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Partnership Expertise */
.partnership-expertise {
    background-color: var(--white);
    text-align: center;
}

.expertise-header {
    max-width: 800px;
    margin: 0 auto 5rem;
}

.expertise-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.expertise-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.expertise-card {
    padding: 3.5rem 2.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 45, 91, 0.05);
    transition: var(--transition);
    text-align: left;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 45, 91, 0.08);
    border-color: rgba(118, 185, 0, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(118, 185, 0, 0.1);
    color: var(--leaf);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.expertise-card:hover .card-icon {
    background: var(--leaf);
    color: var(--white);
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.expertise-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.link-more {
    font-weight: 700;
    color: var(--leaf);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.link-more:hover {
    gap: 0.8rem;
}

/* Why edForce Premium Pillars */
.why-edforce-premium {
    background-color: var(--white);
    padding: 8rem 0;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.pillar-item {
    padding: 3rem 2rem;
    background: var(--gray-bg);
    border-radius: 12px;
    border: 1px solid rgba(0, 45, 91, 0.03);
    transition: var(--transition);
}

.pillar-item:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(118, 185, 0, 0.2);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: rgba(118, 185, 0, 0.1);
    color: var(--leaf);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.pillar-item:hover .pillar-icon {
    background: var(--leaf);
    color: var(--white);
}

.pillar-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--navy);
}

.pillar-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Training Solutions Section */
.training-solutions {
    background-color: var(--navy);
    color: var(--white);
    overflow: hidden;
}

.training-solutions h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
}

.programs-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-node {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.program-node:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--leaf);
}

.program-node h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.program-node p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.node-tag {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: #FF4B2B;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 1px;
}


.programs-list {
    list-style: none;
}

.program-card {
    margin-bottom: 1.2rem;
    padding: 2rem;
    position: relative;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid #EDEDED;
    background: #FFF;
}

.program-card:hover {
    border-color: var(--leaf);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 45, 91, 0.06);
}

.program-card strong {
    font-family: var(--font-heading);
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--navy);
}

.program-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.program-card:hover strong {
    color: var(--ocean);
}

/* ===== RIGHT SIDEBAR ===== */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.info-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(0, 45, 91, 0.05);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 45, 91, 0.05);
    border-color: var(--leaf);
}

.info-card .icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 4px;
    transition: var(--transition);
}

.info-card:hover .icon {
    background: var(--leaf);
    color: var(--white);
}

.info-card p {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
}

.trusted-partners {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 45, 91, 0.05);
    margin-bottom: 2.5rem;
}

.trusted-partners h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    text-align: center;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.p-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #CCC;
    filter: grayscale(1);
    transition: var(--transition);
}

.p-logo:hover {
    filter: grayscale(0);
    color: var(--navy);
}

.voucher-card {
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.voucher-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.voucher-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-green {
    background: linear-gradient(135deg, var(--leaf) 0%, #5fa310 100%);
    color: var(--white);
    width: 100%;
    text-align: center;
    justify-content: center;
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 190, 32, 0.4);
}

/* ===== FOOTER MAIN ===== */
.footer-main {
    background: #1C1C1C;
    color: #ffffff;
    padding: 5rem 0 2rem;
    font-family: var(--font-body);
    position: relative;
    border-top: 4px solid #333;
}

.footer-width-fixer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main Grid */
.footer-grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* Contact Details */
.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #999;
    font-size: 0.9rem;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: #ffffff;
}

.contact-item svg {
    color: #999;
    flex-shrink: 0;
}

.contact-item img {
    border-radius: 2px;
    flex-shrink: 0;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.footer-social-icons a {
    color: #999;
    background: #252525;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    color: #ffffff;
    background: var(--leaf);
    transform: translateY(-3px);
}

/* Bottom Row */
.footer-bottom {
    padding-top: 3rem;
    border-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #999;
    line-height: 1.6;
}

.iso-text {
    font-size: 0.85rem;
}

.copyright-text {
    font-size: 0.85rem;
}

.footer-policy-links {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #999;
}

.footer-policy-links a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-policy-links a:hover {
    color: #ffffff;
}

.sep {
    color: #333;
}

/* Disclaimer */
.footer-disclaimer {
    background: #111111;
    padding: 2.5rem;
    border-radius: 4px;
    margin-top: 3rem;
    color: #666;
}

.disclaimer-title {
    color: #999;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.disclaimer-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.disclaimer-list li {
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #333;
    transform: translateY(-5px);
}

/* Trust & Recognition Section */
.trust-recognition {
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: var(--section-padding);
    color: var(--text-primary);
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.trust-text p {
    color: var(--text-secondary);
}

.partner-logos-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.p-logo-premium {
    height: 80px;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition);
    filter: grayscale(1);
    opacity: 0.6;
}

.p-logo-premium:hover {
    filter: grayscale(0);
    opacity: 1;
    background: var(--white);
    box-shadow: var(--shadow);
    color: var(--navy);
}

/* ===== MOBILE RESPONSIVENESS ===== */

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        flex: 1;
        max-width: 100%;
        margin: 0 auto;
    }

    .subtitle,
    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-header-centered {
        margin-bottom: 3rem;
    }

    .section-header-centered h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 6rem 0;
        min-height: auto;
    }

    .hero-image {
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
    }

    .gpu-card-premium {
        width: 100%;
        height: 240px;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pillar-item {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .description {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem 1rem;
    }

    .stat-item {
        flex: 1 1 120px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .expertise-header h2 {
        font-size: 2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid-premium {
        grid-template-columns: 1fr;
    }

    .trust-content {
        flex-direction: column;
        text-align: center;
    }

    .partner-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .p-logo-premium {
        height: 60px;
        font-size: 0.9rem;
    }

    .footer-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

    .hero-text h1 span {
        display: inline;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .stat {
        flex: 1 1 100%;
    }

    .partner-logos {
        grid-template-columns: 1fr;
    }

    .voucher-card {
        padding: 1.5rem;
    }

    .voucher-card h4 {
        font-size: 1.1rem;
    }
}