
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f6fb;
    color: #2c2c2c;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #2b2e83;
    margin-left: 220px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

.quote-btn {
    background: #81bd43;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 40px;
}

.badge {
    display: inline-block;
    background: #e0e7ff;
    color: #81bd43;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d2d5c;
}

.hero p {
    max-width: 600px;
    margin: auto;
    color: #666;
    font-size: 16px;
}

/* Card */
.card {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card label {
    font-weight: 600;
    font-size: 14px;
}

.card input {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.card small {
    display: block;
    margin-top: 10px;
    color: #777;
    font-size: 13px;
}

.card button {
    width: 100%;
    margin-top: 25px;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: #81bd43;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover {
    background: #81bd43;
}

/* Support */
.support {
    text-align: center;
    margin-top: 40px;
    color: #666;
}

.support a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    margin: 0 10px;
}
input:focus {
    outline: none;
    border: 1px solid #81bd43;
}



@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 30px;
    }

    .card {
        margin: 30px 20px;
        padding: 30px;
    }
    .logo {
         margin-left:0px;
    }
}

#cardPreview img{
    pointer-events:none;
    user-select:none;
}

/* process model */
/* Modal Container */
    /* Loader Animation */
    .loader {
    border: 4px solid #34495e;
    border-radius: 50%;
    border-top: 4px solid #81bd43;
    width: 30px;
    height: 30px;
    animation: spin 1.5s linear infinite;
    margin: 10px auto;
    }
    /* Loader Rotation */
    @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
    }
    
/* Modal Background */
#updateModal {
    display: none; /* Hide initially */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
}
    .loading-container {
            position: fixed;
            width: 70px;
            height: 70px;
            margin: 0 auto;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .loading {
            width: 100%;
            height: 100%;
            opacity: 0.8;
            animation: bloom 3s infinite alternate ease-in-out;
        }

        @keyframes bloom {
            0% {
                transform: scale(0.5) rotate(0deg);
                opacity: 0.5;
            }
            100% {
                transform: scale(1) rotate(360deg);
                opacity: 1;
            }
        }