@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari */

}




*{
    font-family: "Noto Kufi Arabic", serif;

}
.main-content {
    width: 100%;
}

.header-top {
    background: linear-gradient(90deg, #28527a, #8ac4d0);
    padding: 20px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    position: relative;
}

.header-top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: 0;
    border-radius: 10px;
}

.header-top a {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.header-top a span {
    margin-left: 15px;
    color: #f7f7f7;
    transition: color 0.3s ease;
}

.header-top a:hover span {
    color: #ffdd57;
}

.header-top svg {
    fill: #fff;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.header-top a:hover svg {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .header-top {
        padding: 15px 20px;
        margin-bottom: 15px;
    }

    .header-top a {
        font-size: 1.5rem;
    }

    .header-top svg {
        margin-right: 10px;
    }

    .header-top a span {
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 10px 15px;
        margin-bottom: 10px;
    }

    .header-top a {
        font-size: 1.2rem;
    }

    .header-top svg {
        margin-right: 8px;
    }

    .header-top a span {
        margin-left: 8px;
    }
}

.container,
.container-why,
.container-about {
    width: 100%;
    margin: 80px auto 30px;
    padding: 20px;
}


.section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    padding: 20px;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eef5f9;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: auto;
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.content {
    display: block !important;
}

.content h2 {
    justify-content: center;
    text-align: center;

    margin-top: 0;
    color: #0078D7;
    font-size: 1.5rem;
}

.content p {
    line-height: 1.8;
    color: #555;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .icon {
        margin-bottom: 15px;
    }
}

.faq-container {
    width: 95%;
    margin: 120px auto 30px;
    border-radius: 8px;
    direction: rtl;
}

.faq-header {
    margin-bottom: 10px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    border-radius: 8px;
}

.faq-header:hover {
    background-color: #407995;
    color: #fff;
    transform: scale(1.01);
}

.faq-header span {
    font-size: 24px;
    transition: transform 0.3s;
}


.faq-content {
    display: none;
    padding: 20px;
    font-size: 16px;
    color: #555;
    border-top: 1px solid #ddd;
    background-color: #fefefe;
    border-radius: 8px;
    margin-top: -10px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.faq-box {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .faq-container {
        margin: 90px auto 20px;
    }

    .faq-header {
        padding: 15px;
        font-size: 16px;
    }

    .faq-header span {
        font-size: 20px;
    }

    .faq-content {
        padding: 15px;
        font-size: 14px;
    }

    .faq-box {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        margin: 80px auto 15px;
        width: 90%;
    }

    .faq-header {
        padding: 12px;
        font-size: 14px;
    }

    .faq-header span {
        font-size: 18px;
    }

    .faq-content {
        padding: 12px;
        font-size: 12px;
    }

    .faq-box {
        margin-bottom: 10px;
    }
}

.container-know,
.container-newsLink {
    width: 95%;
    margin: 120px auto 30px;
    border-radius: 8px;
    direction: rtl;
}

.articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 10px 20px;
    cursor: pointer;
}

.article {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.article img {
    width: 100%;
    padding: 0 50px;
    height: auto;
}

.article-content {
    padding: 15px;
    height: auto;
    border-top: 1px solid #005bb5;
}

.article-content h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}

.article-content p {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.article-content .date {
    font-size: 12px;
    color: #aaa;
}

.reportcontainer {
    max-width: 600px;
    margin: 120px auto 90px;
    text-align: center;
}

h1 {
    font-size: 1.8rem;
    color: #407995;
    margin-bottom: 10px;
}

.instructions {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: right;
}

.button {
    background-color: #407995;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.button:hover {
    background-color: #407995;
}

.error-message-report {
    color: red;
    font-size: 0.9rem;
    margin-top: 10px;
    display: none;
}

.qrcode {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.qrcode img {
    width: 100px;
    height: auto;
}

.scan-container {
    display: none;
    margin-top: 20px;
    border: 1px dashed #ccc;
    padding: 20px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.scan-container p {
    color: #407995;
}

@media (max-width: 768px) {

    .container-know,
    .container-newsLink {
        margin: 90px auto 20px;
    }

    .articles {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .article-content h3 {
        font-size: 16px;
    }

    .article-content p {
        font-size: 12px;
    }

    .article-content .date {
        font-size: 10px;
    }

    .reportcontainer {
        margin: 120px auto 60px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .instructions {
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 10px;
    }

    input[type="text"] {
        padding: 8px;
        font-size: 0.9rem;
    }

    .button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .qrcode img {
        width: 80px;
    }

    .scan-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {

    .container-know,
    .container-newsLink {
        margin: 80px auto 15px;
    }

    .articles {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .article-content h3 {
        font-size: 16px;
    }

    .article-content p {
        font-size: 14px;
    }

    .article-content .date {
        font-size: 12px;
    }

    .reportcontainer {
        margin: 100px auto 50px;
    }

    h1 {
        font-size: 1.2rem;
    }

    .instructions {
        font-size: 0.8rem;
    }

    .form-group {
        margin-bottom: 8px;
    }

    input[type="text"] {
        padding: 6px;
        font-size: 0.8rem;
    }

    .button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .qrcode img {
        width: 60px;
    }

    .scan-container {
        padding: 10px;
    }
}

.reportexcontainer {
    margin: 120px auto 30px !important;
}

.header-define {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
}

.header-define .qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header-define .qr-code img {
    width: 80px;
    height: 80px;
}

.header-define .qr-code p {
    font-size: 20px;
}

.header-define .qr-code span {
    font-size: 18px;
}

.header-define .title {
    text-align: center;
    font-size: 18px;
}

.header-define .price {
    font-size: 18px;
    text-align: center;
}

.contantinfo {
    background-color: #407995;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
}

.contantinfo img {
    width: 200px;
    margin-left: 20px;
}

.contantinfo .details {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
}

.contantinfo .details div {
    font-size: 18px;
    line-height: 1.6;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    margin-bottom: 15px;
}

.rating span {
    font-size: 20px;
    color: #6c757d;
    margin-left: 10px;
}

.rating i {
    color: gold;
    font-size: 20px;
}


.warning-reportexcontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px auto;
    width: 100%;
    direction: rtl;
}

.warning-icon {
    background-color: #407995;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.warning-text p {
    margin: 5px 0;
    color: #333;
    font-size: 16px;
}

.warning-text p:first-child {
    font-weight: bold;
}


.reportexcontainer {
    margin: 20px auto;
    padding: 20px;
    max-width: 1000px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3 {
    color: #407995;
    margin-bottom: 15px;
    text-align: center;
}

.section-info {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.section-info h2 {
    font-size: 1.4rem;
}

.section-info table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 0.95rem;
}

.section-info table th,
.section-info table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.section-info table th {
    background-color: #407995;
    color: #fff;
    font-weight: bold;
}

.section-info table td {
    background-color: #fdfdfd;
}

.car-images-reportexcontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.car-images-reportexcontainer img {
    width: 220px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-images-reportexcontainer img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.note {
    background: #e7f3fe;
    color: #407995;
    padding: 16px;
    border-left: 4px solid #407995;
    font-size: 1rem;
}

.notes-section-info textarea {
    width: 100%;
    border: 1px solid #407995;
    border-radius: 5px;
    padding: 12px;
    font-size: 0.95rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

textarea:focus {
    outline: none;
    border-color: #285a75;
    box-shadow: 0 0 5px rgba(64, 121, 149, 0.5);
}

.divider {
    border-top: 2px dashed #ddd;
    margin: 20px 0;
}

.terminology-section-info {
    background-color: #f6f6f6;
    border: 1px solid #ddd;
    padding: 20px;
    direction: rtl;
}

.terminology-section-info .header-section-info {
    background-color: #e0dfdf;
    padding: 10px;
    margin-bottom: 20px;
}

.terminology-section-info .header-section-info h2 {
    margin: 0;
    font-size: 20px;
}

.terminology-section-info .contantinfo-section-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.terminology-section-info .term-section-info {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.terminology-section-info .term-section-info strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.terminology-section-info .term-section-info p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.reportexcontainer-reportexcontainer {
    direction: rtl;
    background-color: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
    width: 100%;
    margin: 20px auto;
}

.reportexcontainer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #407995;
    color: #fff;
    padding: 15px 20px;
}

.qr-section-info {
    text-align: center;
    margin-top: 15px;
}

.qr-section-info img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.qr-section-info p {
    margin: 5px 0 0;
    font-size: 14px;
    text-align: center;
}

.reportexcontainer-title {
    text-align: center;
    margin-bottom: 15px;
}

.reportexcontainer-title p {
    font-size: 12px;
    margin: 5px 0 0;
}

.reportexcontainer-number {
    text-align: center;
}

.reportexcontainer-number p {
    font-size: 14px;
    margin: 0;
}

.reportexcontainer-number strong {
    font-size: 20px;
}

.reportexcontainer-contantinfo {
    padding: 20px;
    font-size: 14px;
    color: #333;
    line-height: 1.8;
}

.reportexcontainer-footer {
    background-color: #407995;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
}

.reportexcontainer-footer .contact-info {
    margin-top: 10px;
    font-size: 14px;
}

@media (max-width: 768px) {

    .reportexcontainer {
        margin: 10px auto;
        padding: 15px;
        max-width: 95%;
    }

    .header-define {
        flex-direction: row;
        padding: 15px;
    }

    .header-define .title {
        font-size: 16px;
    }

    .contantinfo {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .contantinfo img {
        width: 100%;
        margin-left: 0;
        margin-bottom: 15px;
    }

    .contantinfo .details {
        flex-direction: column;
        align-items: flex-start;
    }

    .rating span {
        font-size: 16px;
    }

    .warning-reportexcontainer {
        padding: 15px;
        margin: 15px 0;
    }

    .warning-icon {
        font-size: 30px;
        width: 50px;
        height: 50px;
    }

    .warning-text p {
        font-size: 14px;
    }

    .section-info table {
        font-size: 0.85rem;
    }

    .section-info table th,
    .section-info table td {
        padding: 8px;
    }

    .section-info table th {
        font-size: 1rem;
    }

    .car-images-reportexcontainer img {
        width: 150px;
        height: auto;
    }

    .note {
        font-size: 14px;
        padding: 12px;
    }

    .terminology-section-info {
        padding: 15px;
    }

    .terminology-section-info .header-section-info h2 {
        font-size: 18px;
    }

    .terminology-section-info .term-section-info {
        padding: 10px;
    }

    .terminology-section-info .term-section-info p {
        font-size: 14px;
    }

    .reportexcontainer-reportexcontainer {
        padding: 15px;
    }

    .reportexcontainer-footer {
        font-size: 14px;
        padding: 12px;
    }

    .reportexcontainer-footer .contact-info {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .reportexcontainer {
        padding: 10px;
    }

    .header-define .title {
        font-size: 14px;
    }

    .contantinfo .details {
        font-size: 14px;
    }

    .rating span {
        font-size: 14px;
    }

    .warning-text p {
        font-size: 12px;
    }

    .section-info table th,
    .section-info table td {
        font-size: 0.8rem;
    }

    .section-info table th {
        font-size: 1rem;
    }

    .note {
        font-size: 12px;
    }

    .terminology-section-info .header-section-info h2 {
        font-size: 16px;
    }

    .terminology-section-info .term-section-info {
        padding: 8px;
    }

    .reportexcontainer-reportexcontainer {
        padding: 12px;
    }

    .reportexcontainer-footer {
        font-size: 12px;
    }

    .reportexcontainer-footer .contact-info {
        font-size: 10px;
    }
}

/* General Container Styles */
.container {

    display: flex;
    flex-wrap: wrap; /* Enables wrapping for cards */
    gap: 1rem; /* Spacing between cards */
    justify-content: flex-start; /* Aligns items to the start */
    padding: 1rem; /* Optional padding for the container */
}


/* Card Styles */
.report-card {
    display: flex;
    flex-direction: column; /* Content flows vertically inside the card */
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
    border-radius: 15px;
    background-color: white;
    border: 2px solid #ddd;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.report-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.report-content {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Image Styling */
.report-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Title and Subtitle Styling */
.report-title {
    margin-top: 1rem;
    margin-bottom: 0;
    text-transform: uppercase;
}

.report-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Full Report Table Section */
.report-table {
    margin-top: 2rem;
    padding: 2rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    width: 210mm;
}
/* Flexbox container settings */
.d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Card Design */
.card {
    width: 280px; /* Increased width */
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background: #fff;
    border: none;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.12);
    position: relative;
    padding: 15px;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
}

/* Image Styling */
.card img {
    width: 120px; /* Increased size */
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    background: #f8f9fa;
    padding: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover img {
    transform: scale(1.15);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

/* Card Content */
.card-body {
    padding: 15px;
}

/* Title */
.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Text */
.card-text {
    font-size: 1rem;
    color: #7f8c8d;
}

/* Gradient Overlay */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(231, 76, 60, 0.1));
    opacity: 0.2;
    z-index: -1;
}

/* Responsive container */
.container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .card {
        width: 100%;
    }




body {
    font-family: Arial, sans-serif;
  }
  .bg-e9f6fe {
    background-color: #e9f6fe;
  }
  .car-img img {
    max-width: 100%;
    height: auto;
  }
  .search-form h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .btn-007bff {
    background-color: #007bff !important;
    max-width: 100% !important;
    color: #fff !important;
  }
  .where-chesess-num {
    background-color: #fff;
    border-radius: 10px;
  }
  .where-chesess-num a {
    text-decoration: none;
  }
  .where-chesess-num a i {
    background-color: #007bff;
    border-radius: 50%;
    padding: 5px;
    width: 25px;
    height: 25px;
    color: #fff;
  }
  .car-img {
    width: 100%;
  }
.h-60{
height: 80vh;
}
  .row {
    --bs-gutter-x: 0 !important;
  }
  .icons {
    color: #007bff;
  }
  .icons i {
    font-size: 1.5rem;
    color: #007bff;
  }
  .count-num,
  .count-text {
    color: #000;
  }
  .rounded-10 {
    border-radius: 20px;
  }
  .liteBlueHr{
    border: none; /* Remove the default border */
    height: 3px; /* Set the thickness of the line */
    background: linear-gradient(
      to left,
      #007bff,
      #007bff,
      #007bff,
      rgba(0, 123, 255, 0.1)
    ); /* Gradient from solid blue to transparent */
    margin: 20px 0; /* Optional spacing */
  }
  .bg-example-report {
background-image: url(../images/78df8f4cd4f14335820e2125b53d7aa6.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
min-height: 40vh; /* Ensures it has a minimum height */
display: flex;
align-items: center;
justify-content: flex-start;
}

@media (max-width: 768px) {
.bg-example-report {
    background-size: cover; /* Makes sure it fits on smaller screens */
    background-position: top;
    min-height: 50vh;
    flex-direction: column;
    justify-content: center;
}
}

  .h-40 {
    height: 40vh;
  }
  .check-your-car-history-title,
  .check-your-car-history-des {
    color: #fff;
  }
  .m-w-50 {
    max-width: 50%;
  }
  .modal-header .btn-close{
    margin: 0;
  }
  .count-box{
    background-image: url(../images/ellipse2.svg);
    background-position: center;
    background-size:contain;
    background-repeat: no-repeat;
    /* height: 50vh; */
}
@media (max-width: 768px) {
  .count-box{
    background: #e9f6fe;
  }
}
@media (max-width: 992px) {
  .bg-border-circle{
    display: none !important;
  }

}
}
.bg-e9f6fe {
    background-color: #e9f6fe;
  }
  .car-img img {
    max-width: 100%;
    height: auto;
  }
  .search-form h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .btn-007bff {
    background-color: #007bff !important;
    max-width: 100% !important;
    color: #fff !important;
  }
  .where-chesess-num {
    background-color: #fff;
    border-radius: 10px;
  }
  .where-chesess-num a {
    text-decoration: none;
  }
  .where-chesess-num a i {
    background-color: #007bff;
    border-radius: 50%;
    padding: 5px;
    width: 25px;
    height: 25px;
    color: #fff;
  }
  /* .bg-border-circle {
    background-image: url(../images/ellipse1.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  } */
  .car-img {
    width: 100%;
  }
.h-60{
height: 80vh;
}
  .row {
    --bs-gutter-x: 0 !important;
  }
  .icon {
    color: #007bff;
  }
  .icon i {
    font-size: 1.5rem;
    color: #007bff;
  }
  .count-num,
  .count-text {
    color: #000;
  }
  .rounded-10 {
    border-radius: 20px;
  }
  .liteBlueHr {
    border: none; /* Remove the default border */
    height: 3px; /* Set the thickness of the line */
    background: linear-gradient(
      to left,
      #007bff,
      #007bff,
      #007bff,
      rgba(0, 123, 255, 0.1)
    ); /* Gradient from solid blue to transparent */
    margin: 20px 0; /* Optional spacing */
  }
  .bg-example-report {
background-image: url(../images/78df8f4cd4f14335820e2125b53d7aa6.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
min-height: 40vh; /* Ensures it has a minimum height */
display: flex;
align-items: center;
justify-content: flex-start;
}

@media (max-width: 768px) {
.bg-example-report {
    background-size: cover; /* Makes sure it fits on smaller screens */
    background-position: top;
    min-height: 50vh;
    flex-direction: column;
    justify-content: center;
}
}

  .h-40 {
    height: 40vh;
  }
  .check-your-car-history-title,
  .check-your-car-history-des {
    color: #fff;
  }
  .m-w-50 {
    max-width: 50%;
  }
  .modal-header .btn-close{
    margin: 0;
  }
  .count-box{
    background-image: url(../images/ellipse2.svg);
    background-position: center;
    background-size:contain;
    background-repeat: no-repeat;
    height: 50vh;
}
@media (max-width: 768px) {
  .count-box{
    background: #e9f6fe;
    height: auto;
  }
}
@media (max-width: 992px) {
  .bg-border-circle{
    display: none !important;
  }
}

             .glass-effect {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.9);
        }
        .status-badge {
            position: relative;
            overflow: hidden;
        }
        .status-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        .status-badge:hover::before {
            transform: translateX(100%);
        }
        .card-hover {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .card-hover:hover {
            transform: translateY(-8px);
        }
        .floating-action {
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
