* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f9ff;
    color: #1d3557;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 25, 53, 0.95), rgba(0, 91, 150, 0.85)),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 20px 8%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    color: white;
    font-size: 34px;
    font-weight: 800;
}

.logo span {
    color: #ffb703;
}

.navbar ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-top: 70px;
}

.hero-text h1 {
    color: white;
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    color: #e8f1ff;
    font-size: 18px;
    line-height: 1.8;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.stats-grid {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 18px;
    width: 170px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card h2 {
    color: #ffb703;
    margin-bottom: 8px;
}

.stat-card span {
    color: white;
}

.partner-types-section,
.registration-section {
    padding: 90px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-title p {
    color: #5b708b;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.partner-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
}

.partner-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.partner-card h3 {
    padding: 20px 20px 10px;
}

.partner-card p {
    padding: 0 20px 25px;
    color: #5f6c7b;
    line-height: 1.7;
}

.registration-wrapper {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border-radius: 14px;
    border: 1px solid #d9e2f1;
    font-family: inherit;
    font-size: 15px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.full-width {
    grid-column: 1 / -1;
}

.kyc-section {
    margin-top: 50px;
    background: #f5f9ff;
    padding: 35px;
    border-radius: 24px;
}

.kyc-section h3 {
    margin-bottom: 25px;
    font-size: 28px;
}

.support-box {
    margin-top: 35px;
    background: linear-gradient(135deg, #003566, #0077b6);
    color: white;
    padding: 28px;
    border-radius: 22px;
}

.support-box h4 {
    margin-bottom: 12px;
    font-size: 24px;
}

.submit-btn {
    margin-top: 40px;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffb703, #fb8500);
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 520px;
    border-radius: 30px;
    text-align: center;
    padding: 50px;
    animation: popup 0.4s ease;
}

@keyframes popup {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #2ecc71;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}

.modal-content h2 {
    margin-bottom: 18px;
}

.modal-content p {
    line-height: 1.8;
    color: #526375;
}

.modal-content button {
    margin-top: 25px;
    padding: 14px 34px;
    border: none;
    border-radius: 12px;
    background: #0077b6;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

@media(max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .stats-grid {
        flex-direction: column;
    }

    .registration-wrapper {
        padding: 30px;
    }
}

@media(max-width: 600px) {
    .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .hero-text h1 {
        font-size: 34px;
    }
}