/* =========================
   Global Section Start
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f7f9fc;
    color: #0f172a;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* =========================
   Global Section End
========================= */



/* =========================
   Premium Header Start
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 20px;

    background: #ffffff;

    box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.logo-icon {
    width: 30px;
    height: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #2563eb;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}

.menu-btn {
    border: none;
    background: none;
    font-size: 30px;
    cursor: pointer;
    color: #0f172a;
}

/* =========================
   Premium Header End
========================= */



/* =========================
   Mobile Overlay Menu Start
========================= */

.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;

    width: 100%;
    height: 100vh;

    background: #ffffff;

    transition: all .35s ease;

    z-index: 9999;
}

.menu-overlay.active {
    right: 0;
}

.menu-container {
    padding: 25px;
}

.menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 40px;
}

.menu-top h3 {
    font-size: 24px;
    font-weight: 700;
}

.close-btn {
    border: none;
    background: none;

    font-size: 30px;
    cursor: pointer;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-links a {
    color: #0f172a;
    font-size: 18px;
    font-weight: 500;
}

.apply-btn {
    margin-top: 20px;

    background: #2563eb;
    color: #ffffff !important;

    padding: 14px;

    border-radius: 12px;

    text-align: center;
    font-weight: 600;
}

/* =========================
   Mobile Overlay Menu End
========================= */



/* =========================
   Footer Start
========================= */

.footer {
    margin-top: 20px;

    background: #ffffff;

    padding: 25px;

    text-align: center;

    border-top: 1px solid #e5e7eb;
}

.footer p {
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: #2563eb;
    font-size: 14px;
}

/* =========================
   Footer End
========================= */



/* =========================
   Desktop Responsive Start
========================= */

@media (min-width:768px) {

    .header {
        padding: 20px 40px;
    }

    .menu-container {
        max-width: 500px;
        margin: auto;
    }

}

/* =========================
   Desktop Responsive End
========================= */

/* =========================
   Hero Section Start
========================= */

.hero {
    padding: 50px 20px;
    text-align: center;
}

.hero-badge {
    display: inline-block;

    background: #e8f0ff;
    color: #2563eb;

    padding: 8px 14px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 20px;
}

.hero-title {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;

    margin-bottom: 18px;

    color: #0f172a;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;

    color: #64748b;

    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-bottom: 35px;
}

.hero-btn-primary {
    background: #2563eb;
    color: #fff;

    padding: 15px;

    border-radius: 12px;

    font-weight: 600;
}

.hero-btn-secondary {
    background: #ffffff;
    color: #0f172a;

    padding: 15px;

    border-radius: 12px;

    border: 1px solid #dbe3f0;

    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-card {
    background: #ffffff;

    padding: 16px 10px;

    border-radius: 14px;

    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.stat-card h3 {
    color: #2563eb;
    font-size: 22px;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 12px;
    color: #64748b;
}

/* =========================
   Hero Section End
========================= */

/* =========================
   Why Choose Section Start
========================= */

.why-choose {
    padding: 40px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-badge {
    display: inline-block;

    background: #e8f0ff;
    color: #2563eb;

    padding: 8px 14px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 30px;
    line-height: 1.3;

    margin-bottom: 15px;

    color: #0f172a;
}

.section-header p {
    color: #64748b;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.feature-card {
    background: #ffffff;

    padding: 25px;

    border-radius: 18px;

    box-shadow: 0 3px 18px rgba(0, 0, 0, .05);

    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 55px;
    height: 55px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #eff6ff;

    border-radius: 14px;

    font-size: 24px;

    margin-bottom: 18px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Desktop */

@media (min-width:768px) {

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   Why Choose Section End
========================= */

.feature-icon i {
    font-size: 24px;
    color: #2563eb;
}

/* =========================
   How It Works Section Start
========================= */

.how-it-works {
    padding: 40px 20px;
}

.timeline {
    max-width: 500px;
    margin: auto;
}

.timeline-card {
    background: #ffffff;

    padding: 25px;

    border-radius: 18px;

    text-align: center;

    box-shadow: 0 3px 18px rgba(0, 0, 0, .05);
}

.step-number {
    width: 55px;
    height: 55px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #2563eb;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: 700;
}

.timeline-card h3 {
    margin-bottom: 12px;
    color: #0f172a;
}

.timeline-card p {
    color: #64748b;
    line-height: 1.7;
}

.timeline-line {
    width: 3px;
    height: 40px;

    background: #dbeafe;

    margin: auto;
}

/* =========================
   How It Works Section End
========================= */

/* =========================
   Application Form Start
========================= */

.application-section {
    padding: 40px 20px;
}

.form-card {
    background: #ffffff;

    padding: 25px;

    border-radius: 20px;

    box-shadow: 0 5px 25px rgba(0, 0, 0, .05);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-weight: 600;

    color: #0f172a;
}

.form-group input,
.row-fields input,
.row-fields select {

    width: 100%;

    height: 52px;

    border: 1px solid #dbe3f0;

    border-radius: 12px;

    padding: 0 15px;

    font-size: 15px;

    background: #fff;
}

.row-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;

    margin-bottom: 20px;
}

.row-fields label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.continue-btn {
    width: 100%;

    height: 55px;

    border: none;

    border-radius: 14px;

    background: #2563eb;

    color: white;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;
}

/* Mobile */

@media(max-width:480px) {

    .row-fields {
        grid-template-columns: 1fr;
    }

}

/* =========================
   Application Form End
========================= */

/* Multi Step Form Start */

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.button-row {
    display: flex;
    gap: 12px;
}

.back-btn {
    flex: 1;

    height: 55px;

    border: none;

    background: #e2e8f0;

    border-radius: 12px;

    font-weight: 600;

    cursor: pointer;
}

.next-btn {
    flex: 1;

    height: 55px;

    border: none;

    background: #2563eb;

    color: white;

    border-radius: 12px;

    font-weight: 600;

    cursor: pointer;
}

/* Multi Step Form End */

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.field-error {

    margin-top: 6px;

    color: #dc2626;
    font-size: 13px;
    font-weight: 500;

}

.field-error:empty {
    display: none;
}

.input-error {
    border: 2px solid #dc2626 !important;
}

.input-success {
    border: 2px solid #16a34a !important;
}

.terms-box {
    margin-top: 20px;
    margin-bottom: 20px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    cursor: pointer;

    line-height: 1.6;
}

.checkbox-wrapper input {
    margin-top: 4px;
}

.submit-btn {
    width: 100%;

    height: 55px;

    border: none;

    border-radius: 14px;

    background: #2563eb;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
}

.submit-btn:hover {
    opacity: .95;
}

/* =========================
   FAQ Section Start
========================= */

.faq-section {
    padding: 40px 20px;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    background: #ffffff;

    border-radius: 16px;

    margin-bottom: 12px;

    box-shadow: 0 3px 15px rgba(0, 0, 0, .05);

    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

#home,
#application,
#why-choose,
#how-it-works,
#faq {
    scroll-margin-top: 50px;
}

.faq-question {

    width: 100%;

    border: none;

    background: #ffffff;

    padding: 20px;

    text-align: left;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 22px;
    color: #2563eb;
}

.faq-answer {

    display: none;

    padding: 0 20px 20px;

    color: #64748b;

    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* =========================
   FAQ Section End
========================= */

/* =========================
   Legal Pages Start
========================= */

.legal-page {
    padding: 60px 20px;
}

.legal-container {

    max-width: 900px;

    margin: 0 auto;

    background: #ffffff;

    padding: 30px;

    border-radius: 20px;

    box-shadow: 0 5px 25px rgba(0, 0, 0, .05);

}

.legal-container h1 {

    font-size: 32px;

    margin-bottom: 20px;

    color: #0f172a;

}

.legal-container h2 {

    margin-top: 25px;

    margin-bottom: 10px;

    font-size: 22px;

    color: #0f172a;

}

.legal-container p {

    color: #64748b;

    line-height: 1.8;

    margin-bottom: 12px;

}

/* Mobile */

@media(max-width:480px) {

    .legal-page {
        padding: 30px 15px;
    }

    .legal-container {
        padding: 20px;
        border-radius: 16px;
    }

    .legal-container h1 {
        font-size: 26px;
    }

    .legal-container h2 {
        font-size: 20px;
    }

}

/* =========================
   Legal Pages End
========================= */

.back-home {

    display: inline-block;

    margin-bottom: 20px;

    color: #2563eb;

    font-weight: 600;

}

/* =========================
   Contact Form Start
========================= */

.contact-form {
    margin-top: 25px;
}

.contact-form textarea {

    width: 100%;

    padding: 15px;

    border: 1px solid #dbe3f0;

    border-radius: 12px;

    resize: none;

    font-family: inherit;

    font-size: 15px;

}

.contact-form textarea:focus {

    outline: none;

    border-color: #2563eb;

    box-shadow: 0 0 0 4px rgba(37, 99, 235, .15);

}

/* =========================
   Contact Form End
========================= */

.success-message {

    display: none;

    margin-top: 15px;

    padding: 14px;

    background: #dcfce7;

    color: #166534;

    border: 1px solid #86efac;

    border-radius: 12px;

    font-weight: 600;

}

.success-message.show {
    display: block;
}

.button-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.button-row .back-btn,
.button-row .submit-btn {
    flex: 1;
}

.preview-title {

    margin-bottom: 20px;

    font-size: 24px;

    font-weight: 700;

    color: #0f172a;

}

.preview-box {

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 16px;

    padding: 20px;

}

.preview-item {

    padding: 12px 0;

    border-bottom: 1px solid #e2e8f0;

}

.preview-item:last-child {
    border-bottom: none;
}

.preview-item strong {

    display: block;

    margin-bottom: 6px;

    color: #0f172a;

    font-size: 15px;

    font-weight: 600;

}

.preview-item span {

    display: block;

    color: #64748b;

    font-size: 15px;

    word-break: break-word;

}

.preview-actions {

    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 24px;

}

.report-btn {

    width: 100%;

    border: none;

    background: #2563eb;

    color: white;

    padding: 18px;

    border-radius: 999px;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

}

.back-link {

    border: none;

    background: none;

    color: #64748b;

    font-size: 16px;

    cursor: pointer;

    text-align: center;

}

.back-link:hover {

    color: #0f172a;

}

.continue-btn:disabled {

    opacity: .6;

    cursor: not-allowed;

}


.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

}

.logo-img {

    width: 38px;

    height: 38px;

    object-fit: contain;

}

.logo-text {

    color: #0f172a;

    font-size: 18px;

    font-weight: 700;

}