
body {
    margin: 0;
    padding: 0;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

.business-section {
    background-color: #0047AB;
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

/* Ensure the container has a black background */
/* Custom styles for the info sections */


/* Custom styles for the info sections */
.info-section {
    margin: 0 auto; /* Center the section within its column */
    padding: 20px; /* Add some padding inside the info sections */
    width: 80%; /* Use 100% of the column width */
    text-align: center; /* Center the text inside the info-section */
    border-radius: 15px; /* Add rounded corners */
}

@media (min-width: 996px) { /* Adjust for large screens */
    .container-fluid.px-lg-5 {
        padding-right: 5%;
        padding-left: 5%;
    }
    .info-section {
        max-width: 90%; /* Limit .info-section width to 80% of its container on large screens */
    }
}

/* Apply additional padding around .info-section on smaller screens */
@media (max-width: 996px) {
    .info-section {
        margin: 20px; /* Add more space around the sections */
    }
}

.bg-dark {
    background-color: #0047AB; /* Ensure dark background */
    color: #fff; /* Ensure text is white for visibility */
}

/* This ensures all text inside .bg-dark is white, including list items */
.bg-dark li, .bg-dark li strong {
    color: inherit;
}

/* Additional styles for rounded images, if desired */
.info-section .logo {
    border-radius: 10px; /* Optional: Add rounded corners to logos */
}

/* custom bullet list */

.custom-bullet-paragraph ul {
    list-style-type: none; /* Remove default list bullets */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    font-size: 16px; /* Example font size */
}

.custom-bullet-paragraph li {
    display: inline; /* Display list items inline */
    margin-right: 5px; /* Space between sentences */
}

.custom-bullet-paragraph li::before {
    content: '◦ '; /* Inserts an asterisk with spaces on both sides */
    white-space: pre; /* Preserves whitespace */
}

.custom-bullet-paragraph li::after {
    content: ''; /* Inserts an asterisk with spaces on both sides */
    
}

.custom-bullet-paragraph li:last-child::after {
    content: ''; /* Removes the asterisk after the last item */
}


/* ... time in stor ... */


.logo {
    max-width: 100%;
    max-height: 150px; /* Limit the logo height */
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px;
}



.phone-section {
    background-color: yellow; /* Apply background color */
    padding: 20px 0; /* Adjust padding as needed */
}

/* Ensure no horizontal padding or margin affects full-width */
.container-fluid {
    padding-right: 10;
    padding-left: 10;
    margin-right: auto;
    margin-left: auto;
}


/* ... other styles ... */

/* ... existing styles ... */

.bg-black {
    background-color: black;
}

.text-yellow {
    color: yellow;
}

/* ... contact info ... */

.contact-info-section {
    background-color: white; /* Set background color to white */
    color: black; /* Set text color to black */
    padding: 20px 0;
}

.contact-info-section h3 {
    color: black; /* Ensure headings are black for better contrast */
}

.contact-info-section a {
    color: blue; /* Set link color to blue */
    text-decoration: none; /* Optional: Removes underline from links */
}

.contact-info-section a:hover {
    text-decoration: underline; /* Optional: Adds underline on hover for links */
}


/* ... used car carasoul ... */

.carousel-container, .carousel-section {
    background-color: black;
}

.card {
    width: 100%; /* Set the width of the card */
}

.card-img {
    width: 100%; /* Set the width of the car image */
    height: auto; /* Maintain aspect ratio */
}


.sticker-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: flex-end; /* Align to the bottom */
}

.sticker-image-container {
    position: relative; /* Adjust if necessary, but should work as intended */
    width: auto; /* Adjust width as needed or keep it auto */
}



.sticker-image {
    width: 100%; /* Set the width of the sticker image */
    height: auto; /* Maintain aspect ratio */
    transform: scale(1.2);
}




/* ... contact section ... */

.bg-yellow {
    background-color: yellow;
}

.phone-section {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.small-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px; /* Add some space below the logo on smaller screens */
}

.text-section {
    text-align: center;
}

@media (min-width: 768px) {
    .phone-section {
        text-align: center;
    }

    .small-logo {
        margin-bottom: 0;
        max-width: 400px; /* Fixed width on larger screens */
        height: 150px; /* Fixed height on larger screens */
    }

    .text-section {
        text-align: center;
    }
}

.carousel-section .card-img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

/* For smaller screens */
@media (max-width: 768px) {
    .carousel-section .card-img {
        height: 240px;
    }
}

.large-text {
    font-size: 1.25rem; /* Adjust the size as needed */
}
