body {
    background: #f4f7ff;
    font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR */
.navbar {
    background: linear-gradient(90deg,#1e3c72,#2a5298);
}

.navbar-brand, .nav-link {
    color: white !important;
}

    .nav-link:hover {
        color: #cce0ff !important;
    }

/* CARD */
.card {
    border-radius: 20px;
    border: none;
}

/* STEPS */
.step {
    display: none;
}

    .step.active {
        display: block;
    }

.progress {
    height: 8px;
}

.progress-bar {
    background: linear-gradient(90deg,#1e3c72,#2a5298);
}

/* UPLOAD */
.upload-box {
    border: 2px dashed #2a5298;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    background: white;
    transition: 0.3s;
}

    .upload-box:hover {
        background: #eef3ff;
    }

.preview-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1e3c72;
    margin-top: 10px;
}

/* BUTTONS */
.btn-primary {
    background: #1e3c72;
    border: none;
}

    .btn-primary:hover {
        background: #16325c;
    }

.btn-outline-primary {
    border-color: #1e3c72;
    color: #1e3c72;
}

    .btn-outline-primary:hover {
        background: #1e3c72;
        color: white;
    }

/* FOOTER */
footer {
    background: linear-gradient(90deg,#1e3c72,#2a5298);
    color: white;
    padding: 30px 0;
    margin-top: 60px;
}

/*Home page*/

/* ===== HERO ===== */
.hero {
    background: linear-gradient(rgba(30,60,114,0.85), rgba(42,82,152,0.85)), url('https://images.unsplash.com/photo-1529636798458-92182e662485?auto=format&fit=crop&w=1600&q=90');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.search-box {
    background: rgba(255,255,255,0.95);
    padding: 25px;
    border-radius: 15px;
}

/* ===== STATS ===== */
.stats {
    background: linear-gradient(90deg,#e3ecff,#f4f7ff);
    padding: 60px 0;
}

.stat-box h2 {
    color: #1e3c72;
    font-weight: bold;
}

/* ===== FEATURED ===== */
.profile-card {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

    .profile-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.profile-img {
    height: 250px;
    object-fit: cover;
}

/* ===== SECTION TITLE ===== */
.section-title {
    color: #1e3c72;
    font-weight: bold;
}

/* ===== WHY SECTION ===== */
.why-box i {
    font-size: 45px;
    color: #2a5298;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(90deg,#1e3c72,#2a5298);
    color: white;
    padding: 70px 0;
    text-align: center;
}
/*Home page end*/

/*Reg Success*/
.success-card {
    border-radius: 12px;
    background: var(--pm-card-bg);
    padding: 2.25rem;
    box-shadow: 0 6px 30px rgba(18, 45, 77, 0.06);
}

.icon-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pm-accent), #74b9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #fff;
    margin: 0 auto 18px;
    box-shadow: 0 6px 18px rgba(10,88,202,0.18);
}

h3.text-accent {
    color: var(--pm-accent);
    font-weight: 700;
}

.contact-box {
    background: rgba(10,88,202,0.05);
    border-radius: 10px;
    padding: 14px;
    margin-top: 18px;
}

footer.site-footer {
    background: linear-gradient(90deg, rgba(13,110,253,0.95), rgba(10,88,202,0.95));
    color: #fff;
    padding: 18px 0;
    margin-top: auto;
}

.btn-outline-accent {
    border-color: var(--pm-accent);
    color: var(--pm-accent);
}

    .btn-outline-accent:hover {
        background: var(--pm-accent);
        color: #fff;
    }

@@media (max-width: 576px) {
    .success-card {
        padding: 1.5rem;
    }
}
/*End Reg Success*/