@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --yellow: #e9b73e;
    --white: #ffffff;
    --grey: #7c7b81;
    --black: #2e2e2e;
    --darkBlue: #1f1f29;
    --secondaryBlue: #23232d;
    --tertiaryBlue: #2c2c36;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw !important;
    width: 100vw !important;
    overflow-x: hidden !important;
    margin: 0px !important;
    padding: 0px !important;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    color: var(--darkBlue);
}

.container-fluid {
    padding: 0px 60px;
}

@media (max-width:992px) {
    .container-fluid {
        padding: 0px 15px;
    }
}

.collapse .d-flex img {
    height: 15px!important;
}

.collapse .d-flex .email {
    margin-right: 60px;
}

.nav-item {
    padding: 0px 60px;
    font-size: 0.9rem;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--yellow);
}

    .navbar-nav .nav-link.active:hover, .navbar-nav .nav-link.show:hover {
        color: var(--yellow);
        opacity: 1;
    }

.navbar {
    background-color: var(--darkBlue);
}

.nav-link {
    color: var(--white);
}

    .nav-link:hover {
        opacity: 0.8;
        color: var(--white);
    }

.navbar-brand {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: var(--white);
}

.dropdown-menu {
    width: 100%;
    text-align: center;
}

footer {
    background-color: var(--darkBlue);
    color: var(--white);
}

    footer a {
        text-decoration: none;
        color: inherit;
    }

    footer .topSection a {
        display: block;
    }

    footer .col-md-1 img {
        height: 20px;
        margin-bottom: 15px;
    }

    footer p {
        color: var(--grey);
    }

    footer .bottomSection p {
        line-height: 2;
        margin-bottom: 0px;
    }

    footer a span {
        color: var(--yellow);
        margin-right: 5px;
    }

    footer h5 {
        margin-bottom: 15px;
    }

.text-right {
    text-align: right;
}

footer .topSection {
    padding: 60px 0px;
}

footer .bottomSection {
    border-top: 1px solid var(--grey);
    padding: 15px 0px;
}

    footer .bottomSection row > div {
        display: table-cell;
        vertical-align: middle;
    }

@media (max-width:768px) {
    footer .col-3 {
        text-align: center;
        margin-bottom: 30px;
    }

    footer {
        text-align: center;
        padding: 30px 15px;
    }

        footer .col-md-3 {
            margin-bottom: 30px;
            text-align: center;
        }

        footer a {
            text-align: center;
        }

        footer .bottomSection p {
            line-height: 1.4;
            margin-bottom: 0px;
        }

        footer .bottomSection .text-right {
            text-align: center;
            margin-top: 15px;
        }
}

.jumbotron {
    position: relative;
    height: 85vh;
    background-color: var(--darkBlue);
}

    .jumbotron .container-fluid {
        position: relative;
    }

    .jumbotron .carousel {
        height: 85vh;
        position: relative;
    }

.socialLinks {
    position: absolute;
    bottom: 30px;
}

    .socialLinks img {
        height: 20px;
        margin-bottom: 20px;
    }

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    background-color: transparent;
    border-radius: 25px;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0.8;
}

.ball {
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 50%;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        transform: translateY(-10px);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

.carousel-item {
    position: relative;
    height: 85vh;
}

.jumbotron .largeBgHeading {
    position: absolute;
    top: 20%;
    color: white;
    left: 0px;
    opacity: 0.05;
}

    .jumbotron .largeBgHeading h1 {
        font-size: 10vw;
        text-transform: uppercase;
    }

.carImage img {
    height: auto;
    position: absolute;
    width: 50%;
    right: 5%;
    top: 60%;
    transform: translateY(-50%);
    margin-top: auto;
}

.content {
    position: absolute;
    left: 10%;
    top: 50%;
    width: 30%;
    transform: translateY(-50%);
    color: var(--white);
}

.btn {
    padding: 15px 45px;
    border-radius: 100px;
}

.btn-primary {
    background-color: var(--darkBlue);
    border: 1px solid var(--yellow);
    color: var(--yellow);
}

    .btn-primary:hover {
        background-color: var(--yellow);
        border: 1px solid var(--yellow);
        color: var(--darkBlue);
    }

.btn-secondary {
    background-color: var(--white);
    border: 1px solid var(--darkBlue);
    color: var(--darkBlue);
}

    .btn-secondary:hover {
        background-color: var(--yellow);
        border: 1px solid var(--yellow);
        color: var(--darkBlue);
    }

.jumbotron .content h1 {
    margin-bottom: 30px;
}

.jumbotron .content p {
    margin-bottom: 45px;
}

@media (max-width:1520px) {
    .carImage img {
        height: auto;
        position: absolute;
        width: 60%;
        right: 0;
        top: 60%;
        transform: translateY(-50%);
        margin-top: auto;
    }
}

@media (max-width:1000px) {
    .carImage img {
        height: auto;
        position: absolute;
        width: 50%;
        right: 0;
        top: 60%;
        transform: translateY(-50%);
        margin-top: auto;
    }

    .content {
        position: absolute;
        left: 10%;
        top: 50%;
        width: 40%;
        transform: translateY(-50%);
        color: var(--white);
    }

    .jumbotron .largeBgHeading h1 {
        font-size: 14vw;
        text-transform: uppercase;
    }
}

@media (max-width: 1130px) {
    .nav-item {
        padding: 0px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 800px) {
    .jumbotron h1 {
        margin-top: 60px;
    }
}

@media (max-width: 800px) {
    .carImage img {
        height: auto;
        position: absolute;
        width: 100%;
        right: 0;
        bottom: 15%;
        transform: translateY(0%);
        margin-top: auto;
        max-height: 40%;
        object-fit: contain;
        object-position: center;
    }

    .content {
        position: absolute;
        left: 5%;
        top: 5%;
        width: 90%;
        transform: translateY(0%);
        color: var(--white);
        text-align: center;
    }

    .jumbotron .largeBgHeading h1 {
        font-size: 14vw;
        text-transform: uppercase;
    }
}

@media (max-width: 992px) {
    .jumbotron .socialLinks {
        display: none;
    }
}

.aboutUs {
    padding: 50px 0px;
    position: relative;
}

    .aboutUs .aboutUsImg {
        position: absolute;
        bottom: 10%;
        width: 100%;
        z-index: -1;
    }

        .aboutUs .aboutUsImg img {
            width: 130%;
        }

    .aboutUs h4 {
        color: var(--yellow);
    }

    .aboutUs .contents {
        z-index: 99999;
    }

.whyChooseUs {
    background-color: rgba(0,0,0,0.05);
    padding: 60px;
}

    .whyChooseUs .imgContainer {
        padding: 20px;
        width: 100px;
        height: 100px;
        background-color: var(--white);
        box-shadow: 12px 12px 32px rgba(0,0,0,0.1);
        border-radius: 50%;
        position: relative;
        margin-bottom: 40px;
    }

    .whyChooseUs img {
        height: 40px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .whyChooseUs h6 {
        margin-bottom: 30px;
    }

.vehicleValues {
    padding: 50px 0px;
}

    .vehicleValues .tab-content {
        padding: 60px 0px;
    }

    .vehicleValues .nav-tabs .nav-link {
        border-bottom: 1px solid rgba(0,0,0,0.05);
        color: var(--grey);
    }

        .vehicleValues .nav-tabs .nav-link.active {
            color: var(--darkBlue);
            background-color: transparent;
            border-color: var(--yellow);
        }

    .vehicleValues .nav-tabs {
        border-bottom: none;
    }

    .vehicleValues ul {
        list-style: none;
        padding-left: 0px;
    }

    .vehicleValues li {
        margin: 15px 0px;
    }

    .vehicleValues img {
        width: 100%;
        max-height: 400px;
        object-fit: contain;
        object-position: center center;
    }

.contactUs {
    padding: 50px 0px;
    background-color: var(--darkBlue);
    color: var(--white);
}

    .contactUs .text-center p {
        color: var(--grey);
    }

    .contactUs .forms {
        margin-top: 20px;
    }

        .contactUs .forms .col-md-2 {
            border-right: 1px solid var(--grey);
        }

        .contactUs .forms .col-md-8 {
            background-color: var(--secondaryBlue);
            border: 1px solid var(--grey);
            border-radius: 5px;
        }

        .contactUs .forms .col-md-2, .contactUs .forms .col-md-10 {
            padding: 30px;
        }

    .contactUs .nav-tabs {
        border-bottom: none;
    }

    .contactUs button {
        width: 100%;
    }

    .contactUs .nav-item {
        padding: 0px 0px;
        font-size: 0.9rem;
        width: 100%;
    }


.contactField {
    margin-bottom: 15px;
}

    .contactField img {
        height: 20px;
        margin-right: 10px;
    }

    .contactField a {
        line-height: 20px;
        color: var(--white);
        text-decoration: none;
    }

.contactUs h3 {
    margin-bottom: 30px;
}

.contactUs .nav-tabs .nav-item.show .nav-link, .contactUs .nav-tabs .nav-link.active, .contactUs .nav-tabs .nav-link:hover {
    color: var(--yellow);
    background-color: transparent;
    border-color: transparent;
}

.contactUs .btn {
    width: 40%;
    margin-top: 30px;
}

input {
    background-color: var(--tertiaryBlue) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: var(--yellow) !important;
}

select {
    background-color: var(--tertiaryBlue) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: var(--yellow) !important;
}

::placeholder {
    color: var(--grey) !important;
    font-size: 0.875rem !important;
    font-weight: normal;
}

.firstOption {
    color: var(--grey) !important;
    font-style: italic;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    background-color: transparent; /* Set background color of the number input */
}

    /* Customize color of the arrows */
    input[type="number"]::-webkit-outer-spin-button,
    input[type="number"]::-webkit-inner-spin-button {
        color: #7c7b81; /* Color of the number input arrows */
    }

.contactUs .nav-item, .contactUs .nav-item button {
    text-align: left !important;
}

.grey {
    color: var(--grey);
}

.carousel .content {
    z-index: 9999!important;
}

.contactUs li::marker {
    color: var(--yellow);
}

.contactUs ul {
    font-size: 0.9rem;
}

.contactUs .description {
    color: var(--grey);
    font-size: 0.8rem;
}

@media (max-width:992px) {
    .contactUs {
        text-align: center!important;
        padding-bottom: 0px;
    }
    .contactUs .btn {
        width: 100%;
    }

    .contactUs .col-md-2 {
        border-right: none;
    }

    .contactUs .col-md-8 {
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid var(--grey);
        border-right: none!important;
    }

    .contactUs .nav-tabs .nav-link {
        text-align: center!important;
    }
    .aboutUs img {
        display: none;
    }
    .navbar {
        position: absolute;
        top: 0;
        width: 100%;
        background-color: var(--darkBlue);
        z-index: 9999999;
        border-bottom: 1px solid var(--grey);
        text-align: center!important;
    }
    body{
        padding-top: 56px;
    }
    .navbar-toggler {
        border: none!important;
        box-shadow: none!important;
    }
    .navbar .d-flex {
        align-content: center;
        align-items: center;
    }
    .navbar .d-flex a {
        width: 100%;
        text-align: center;
        margin-bottom:15px;
    }
    .collapse .d-flex .email {
        margin-right: 0px;
    }
}

.border-bottom p {
    margin: 0px !important;
    padding: 10px 0px;
}

.border-bottom {
    margin-bottom: 30px;
    text-align: center;
}

#requestForm button, #requestCard button {
    margin-bottom: 30px;
}


.button-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.inlineLink {
    text-decoration: none;
    color: var(--yellow);
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .button-container {
        flex-direction: column; /* Stacks the buttons vertically */
    }

        .button-container button {
            width: 100%; /* Each button takes full width */
            margin-bottom: 10px; /* Adds space between the buttons */
        }

            .button-container button:last-child {
                margin-bottom: 0; /* Removes bottom margin from the last button */
            }
    #requestForm button, #requestCard button {
        margin-bottom: 0px;
    }
    .contactUs .btn {
        margin-top: 0px;
    }
}