﻿
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f6;
}

/* Hero Styling with Tech Mesh Overlay */
.partner-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
    position: relative;
    overflow: hidden;
}

/* AI Badge */
.ai-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
    margin-bottom: 15px;
}

/* Form Card */
.registration-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 40px;
    margin-top: -60px;
    border: none;
    position: relative;
}

/* AI Scanning Animation for the Card */
.ai-status-pulse {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    color: #27ae60;
    display: flex;
    align-items: center;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* AI Features Grid */
.ai-features {
    margin: 50px 0;
    text-align: center;
}

.feature-box {
    padding: 25px;
    background: white;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-color: #3498db;
    }

.feature-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #ccc;
    position: relative;
}

    .step.active {
        color: #3498db;
        font-weight: bold;
    }

        .step.active i {
            background: #3498db;
            color: white;
        }

    .step i {
        display: block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border: 2px solid #eee;
        border-radius: 50%;
        margin: 0 auto 5px;
        background: white;
    }

.btn-join {
    background: #3498db;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    transition: 0.3s;
    border: none;
}

    .btn-join:hover {
        background: #2980b9;
        transform: translateY(-2px);
    }