html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.cursor-pointer {
    cursor: pointer;
}

.profile-card {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .profile-card .profile-img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        border: 5px solid rgba(255, 255, 255, 0.3);
        margin-bottom: 15px;
    }

    .profile-card .social-icons a {
        color: white;
        margin: 0 8px;
        font-size: 20px;
        transition: transform 0.3s ease;
    }

        .profile-card .social-icons a:hover {
            transform: scale(1.1);
        }



.price-card {
    background: linear-gradient(90deg, #96e6a1 50%, #d4fc79 100%);
    color: white;
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vehicle-card {
    background: linear-gradient(90deg, #c471f5 50%, #fa71cd 100%);
    color: white;
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.startdatetime-card {
    background: linear-gradient(90deg, #ff9a9e 10%, #fad0c4 100%);
    color: white;
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.enddatetime-card {
    background: linear-gradient(90deg, #fda085 10%, #f6d365 100%);
    color: white;
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-number-card {
    background: linear-gradient(90deg, #8fd3f4 10%, #84fab0 100%);
    color: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/*@@media (max-width: 767.98px) {
    .profile-card {
        margin-bottom: 30px;
    }
}
*/