﻿header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo {
    
    color: seagreen;
    font-weight: bold;
    padding: 10px 15px;
    font-size: 18px;
}

.tagline {
    font-size: 12px;
    font-weight: bold;
}

.call-btn {
    background: #4da6ff;
    border: none;
    padding: 10px 15px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
}

    .call-btn:hover {
        background: #3399ff;
    }

/* Main Card */
.container {
    max-width: 500px;
    margin: auto;
    padding: 15px;
    display:grid;
    place-items:center;
}

.card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.iconlogocar {
    margin-bottom: 20px;
    width: 120px;
    height: auto;
}
.carstyle
{
    text-align :center;
}

h2 {
    margin: 10px 0;
}
.colorDct {
    color: #0a58ca;
}

p {
    color: #555;
    font-size: 14px;
}

.cta-btn {
    background: #4da6ff;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    color: #fff;
}

    .cta-btn:hover {
        background: #3399ff;
    }

/* Why Section */
.why-section {
    margin-top: 20px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
}

.why-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.list-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo {
        font-size: 16px;
    }

    .cta-btn {
        font-size: 14px;
    }
}

/* Option Box */
.option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px 18px;
    margin: 12px 0;
    cursor: pointer;
    transition: 0.2s;
}

    .option:hover {
        background: #f9f9f9;
    }

/* Left Side */
.left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icons */
.icon {
    width: 40px;
    height: 40px;
}

/* Text */
.label {
    font-size: 18px;
    font-weight: 500;
}

/* Arrow */
.arrow {
    font-size: 20px;
    color: #333;
}

/* Mobile */
@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }
}
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Card */
.card {
    background: #fff;
    width: 90%;
    max-width: 420px;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}
/* Textbox Container */
.input-box {
    
    margin: 15px 0;
    display: flex;
    align-items: center;
}

/* Icon */
.icon {
    width: 22px;
    margin-right: 10px;
}

/* Input */
input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
}

/* Button */
.btn {
    background: #4da6ff;
    border: none;
    padding: 14px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 15px;
    color: #fff;
}

    .btn:hover {
        background: #3399ff;
    }

/* Default (Desktop) */
.call-desktop {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 16px;
    font-weight: bold;
}

    .call-desktop a {
        text-decoration: none;
        color: #2F6FD6;
    }

/* Mobile Button */
.call-mobile {
    display: none;
}

/* Mobile View */
@media (max-width: 768px) {

    .call-desktop {
        display: none;
    }

    .call-mobile {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        background: #4da6ff;
        color: #fff;
        padding: 10px 14px;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        z-index: 999;
        opacity:75%;
    }

        .call-mobile:hover {
            background: #3399ff;
        }
}
.containerNew {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 20px;
}

.headerNew {
    background: #0b5c84;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress {
    width: 200px;
    height: 8px;
    background: #ccc;
    border-radius: 5px;
    overflow: hidden;
}

    .progress span {
        display: block;
        width: 66%;
        height: 100%;
        background: #7fc3e6;
    }

h1 {
    text-align: center;
    font-size: 22px;
}

.subtitle {
    text-align: center;
    color: #0b5c84;
    margin-bottom: 20px;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    font-weight: bold;
    margin-bottom: 6px;
    display: block;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Toggle buttons */
.toggle-group {
    display: flex;
    gap: 10px;
}

    .toggle-group input {
        display: none;
    }

    .toggle-group label {
        flex: 1;
        text-align: center;
        padding: 10px;
        background: #ddd;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
    }

    .toggle-group input:checked + label {
        background: #4da6ff;
        color: white;
    }

/* Professional Checkbox */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

    .checkbox-group label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: normal;
        cursor: pointer;
    }

    /* Hide default checkbox */
    .checkbox-group input {
        appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #ccc;
        border-radius: 4px;
        position: relative;
        cursor: pointer;
    }

        /* Checked style */
        .checkbox-group input:checked {
            background: #4da6ff;
            border-color: #4da6ff;
        }

            .checkbox-group input:checked::after {
                content: "✔";
                color: white;
                font-size: 12px;
                position: absolute;
                top: -2px;
                left: 2px;
            }

.full {
    grid-column: span 2;
}

textarea {
    min-height: 120px;
}

.btn {
    background: #4da6ff;
    color: white;
    padding: 15px;
    border: none;
    width: 100%;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.secure {
    text-align: center;
    font-size: 12px;
    color: gray;
    margin-top: 5px;
}

/* Mobile */
@media(max-width:768px) {
    form {
        grid-template-columns: 1fr;
    }

    .full {
        grid-column: span 1;
    }
}
