@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat.ttf") format("truetype");
}

:root {
    --primary: #f2ad35;
    --secondary: gray;
    --light: #FFFFFF;
    --dark: #212529;
    --card: #EFEFEF;
    --montserrat: 'Montserrat';
    --dark2: #1F2124;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-nav {
    gap: 1rem;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Barlow', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--dark);
    outline: none;
    transition: .5s;

}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

a {
    text-decoration: none;
    color: white;
}

.logo {
    width: 60px;
    height: auto;
    padding: 5px 0;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

/*Header*/
.carousel-item {
    height: 85vh;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 20, 16, 0.4);
}

#header h1 {
    font-size: 4rem;
    font-family: "Fredericka the Great";
    color: white;
}

.overlay p {
    font-size: 2rem;
    margin-bottom: 20px;
}

.navbar-toggler {
    border-radius: 6px !important;
}

.ls-btn-main {
    border: none;
    border-radius: 6px !important;
    margin-top: auto !important;
    margin-bottom: auto;
    padding: 1rem 2rem !important;
}

.ls-btn {
    background-color: #f2ad35;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 6px;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.ls-btn:hover {
    color: white;
    transform: translateY(-5px);
}


@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.navbar button {
    border: none;
    background-color: var(--primary);
    border-radius: 20px;
    margin-top: 7px;
}

.carousel-item img {
    animation: zoomIn 5s infinite alternate;
    /* Apply the zoom-in animation */
}

/*About*/
.divider {
    border-top: 2px solid #f2ad35;
    width: 25%;
}

.card-item {
    background-color: var(--card);
    padding-left: 6rem;
    padding-right: 6rem;

    padding-top: 3rem;
    padding-bottom: 3rem;
    border-bottom: 3px solid #f2ad35;
}

#latest .card {
    border-radius: 0rem;
}

.footer {
    border-top: 2px solid #f2ad35;
    background-color: var(--dark);
}

.footer-end {
    background-color: var(--dark);
}

.icon-social i {
    color: white;
    font-size: 22px;
    border-radius: 6px;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    padding-left: 0rem;
    padding-right: 1rem;
    transition: color 0.4s ease;
}

.icon-social i:hover {
    color: #f2ad35;
}

.otp {
    margin: 0px 80px;
    background-color: #f7fffd;
    border-radius: 10px;
    border: 1px solid #c2dbd2;
    padding: 20px;
}

.submit_btn {
    background-color: #59ab9700;
    color: #000;
    padding-top: 8px;
    background-color: #f2ad35;
    padding: 0.5rem 1rem;
}



@media(max-width:776px) {

    #header h1 {
        font-size: 2rem;
        font-family: "Fredericka the Great";
        color: white;
    }

    #gallery {
        padding: 0rem;
    }

    .carousel-item {
        height: 50vh;
    }

    .overlay h1 {
        font-size: 2rem;
        font-family: "Fredericka the Great";
        color: white;
    }

    p {
        color: var(--primary);
    }

    .overlay p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .card-item {
        background-color: var(--card);
        padding-left: 2rem;
        padding-right: 2rem;

        padding-top: 3rem;
        padding-bottom: 3rem;
        border-bottom: 3px solid #f2ad35;
    }

}

@media(min-width:777px) and (max-width:1000px) {
    .carousel-item {
        height: 72vh;
    }

    .overlay h1 {
        font-size: 3rem;
        font-family: "Fredericka the Great";
        color: white;
    }

    p {
        color: var(--primary);
    }

    .overlay p {
        font-size: 2rem;
        margin-bottom: 20px;
    }
}

.footer a {
    color: #f2ad35;
}

.explore {
    background-color: var(--card);
}

.blogTitle {
    text-align: start;
    font-size: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.shortDes {
    text-align: start !important;
}

.w-fit {
    width: fit-content !important;
}

.sticky_btn {
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 100;
}


.sticky_btn button {
    border: none;
}

.booknow_sticky {
    display: inline-block;
    color: #fff;
    background-color: #f2ad35;
    word-break: break-all !important;
    font-size: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    padding: 16px 10px;
    width: 2em;
    text-align: center;
    border-radius: 6px 0 0 6px;
    box-shadow: -1px 4px 4px grey;
}

.p-reletive {
    position: relative;
}

.anchor {
    position: absolute;
    top: -80px;
    left: 0;
    z-index: -9;
    pointer-events: none;
}

@media (max-width:567px) {
    .otp {
        margin: 0 24px;
    }
}

@media (max-width:693px) {
    .video {
        height: 50vh;
        width: auto !important;
    }
}

@media (max-width:567px) {
    .video {
        position: relative;
        left: -200px;
    }
}

.head-about {

    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%), url('../img/about-img.jpg');
    background-size: cover;
    background-position: center;

    background-repeat: no-repeat;
    background-attachment: fixed;


}

.head-about .head {
    text-align: center;
    color: #fff;
    /* Adjust text color as needed */
    padding: 5rem;
}


.head h1 {
    font-size: 66px;
    color: white;
}

.head p {
    font-size: 18px;
}

.about-next i {
    font-size: 50px;
    margin: 10px;
    background-color: white;
    padding: 20px;
    border-radius: 50%;

}

#features a {
    color: #f2ad35;
}

.icon-contact i {
    font-size: 40px;
    margin: 10px;
    background-color: white;
    padding: 20px;
    border-radius: 50%;
    color: #f2ad35;
}

.explore-contact a {
    color: black;
}

.head-contact {

    background-image: linear-gradient(to bottom, rgba(242, 173, 53, 0.8) 0%, rgba(242, 173, 53, 0.8) 100%), url('../img/contact-bg.png');
    background-size: cover;
    background-position: center;

    background-repeat: no-repeat;
    background-attachment: fixed;



}

.head-contact .head {
    align-items: center;
    text-align: center;
    color: #fff;
    /* Adjust text color as needed */
    padding: 5rem;
}


.head h1 {
    font-size: 66px;
    color: white;
}

.head p {
    font-size: 18px;
}

.head-dealership {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%), url('../img/deal-bg-2.jpg');
    background-size: cover;
    background-position: center;

    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #f2ad35;
}

.head-franchise {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%), url('../img/franchise-3.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

.head-franchise .card {
    border-radius: 0rem;
    background-color: rgba(255, 255, 255, 0.7);
}

.dealership-form {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%), url('../img/deal-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #f2ad35;
}


.head h1 {
    font-size: 66px;
    color: white;
}

.head p {
    font-size: 18px;
}

.head-privacy {

    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%), url('../img/privacy.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #f2ad35;


}

.head-privacy .head {
    align-items: center;
    text-align: center;
    color: #fff;
    /* Adjust text color as needed */
    padding: 3rem;
}

.privacy-section p {
    color: rgb(114, 109, 109);
}

.privacy-section b {
    color: #000;
}

.head-career {

    background-color: #f2ad35;



}

.head-career .head {
    align-items: center;
    text-align: center;
    color: #fff;
    /* Adjust text color as needed */
    padding: 3rem;
}

.head-privacy .head {

    color: #fff;
    /* Adjust text color as needed */
    padding: 8rem;
}

.head-blog {
    background-image: url('../img/blog-bg.jpg');
    /* background-image: url('frontend/img/blog-bg.jpg'); */

    background-size: cover;
    background-position: center;

    background-repeat: no-repeat;
    background-attachment: fixed;

}

.head-blog .head-b {
    align-items: center;
    text-align: center;
    color: #fff;
    /* Adjust text color as needed */
    padding: 5rem;
}

.head-return {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);


    background-size: cover;
    background-position: center;

    background-repeat: no-repeat;
    background-attachment: fixed;

}






@media(max-width:776px) {

    #header h1 {
        font-size: 1.5rem;
        font-family: "Fredericka the Great";
        color: white;
    }

    #gallery {
        padding: 0rem;
    }

    .carousel-item {
        height: 25vh;
    }

    .overlay h1 {
        font-size: 2rem;
        font-family: "Fredericka the Great";
        color: white;
    }

    p {
        color: var(--primary);
    }

    .overlay p {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .card-item {
        background-color: var(--card);
        padding-left: 2rem;
        padding-right: 2rem;

        padding-top: 3rem;
        padding-bottom: 3rem;
        border-bottom: 3px solid #f2ad35;
    }

    .head-about {

        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%), url('../img/about-img.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: unset;


    }

    .head-about .head {

        color: #fff;
        /* Adjust text color as needed */
        padding: 3rem;
    }


    .head h1 {
        font-size: 26px;
        color: white;
    }

    .head p {
        font-size: 12px;
    }

    .head-contact {

        background-image: linear-gradient(to bottom, rgba(242, 173, 53, 0.8) 0%, rgba(242, 173, 53, 0.8) 100%), url('../img/contact-bg.png');
        background-size: cover;
        background-position: center;

        background-repeat: no-repeat;
        background-attachment: unset;
    }

    .head-contact .head {

        color: #fff;
        /* Adjust text color as needed */
        padding: 3rem;
    }

    .head-privacy {

        background-color: #f2ad35;



    }

    .head-privacy .head {
        align-items: center;
        text-align: center;
        color: #fff;
        /* Adjust text color as needed */
        padding: 3rem;
    }

    .head-blog {
        background-image: url('../img/blog-bg.jpg');

        background-size: cover;
        background-position: center;

        background-repeat: no-repeat;
        background-attachment: unset;

    }

    .head-blog .head-b {
        align-items: center;
        text-align: center;
        color: #fff;
        /* Adjust text color as needed */
        padding: 3rem;
    }

}

@media(min-width:777px) and (max-width:1000px) {
    .carousel-item {
        height: 50vh;
    }

    .overlay h1 {
        font-size: 3rem;
        font-family: "Fredericka the Great";
        color: white;
    }

    p {
        color: var(--primary);
    }

    .overlay p {
        font-size: 2rem;
        margin-bottom: 20px;
    }
}

/*Contact*/
.contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-form label {
    position: absolute;
    pointer-events: none;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease;
    background-color: #fff;
    padding: 0 5px;
    font-size: 16px;
    color: #999;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f2ad35;
}

.contact-form input[type="text"]:focus+label,
.contact-form input[type="email"]:focus+label,
.contact-form textarea:focus+label,
.contact-form input[type="text"]:not(:placeholder-shown)+label,
.contact-form input[type="email"]:not(:placeholder-shown)+label,
.contact-form textarea:not(:placeholder-shown)+label {
    top: 0;
    font-size: 12px;
    color: #f2ad35;
}

.contact-form textarea {
    height: 100px;
}

.contact-form input[type="submit"] {
    background-color: #f2ad35;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form input[type="submit"]:hover {
    background-color: #f2ad35;
}

.contact-form .card {
    border: none;
    background: none;
}

.cover-image {
    width: 100%;
    /* Make image width cover its parent container */
    height: 100%;
    /* Make image height cover its parent container */
    object-fit: cover;
    /* Maintain aspect ratio while covering */
    display: block;
    /* Ensure it behaves as a block element */
}

/* Styling for form input fields */

.bike-deal .container-fluid {
    overflow: hidden;
}

.form-product .form-control {
    border: 2px solid #f2ad35;
    /* Yellow border */
    border-radius: 5px;
    /* Rounded corners */
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}



/* Ensure form rows are displayed inline */
.form-product .form-row {
    display: flex;
    flex-wrap: wrap;
}

/* Ensure form groups have equal width within the row */
.form-product .form-group {
    flex: 1;
    margin-right: 10px;
}

/* Adjust margin for last form group within a row */
.form-product .form-group:last-child {
    margin-right: 0;
}


.product-specification .card {
    border: none;
}

.product-specification .card p {
    font-size: 28px;
    font-weight: bold;
    color: #f2ad35;
}

.bike-color-card .card {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    background-color: #DDDCDD;
    border-radius: 50px;
}

.phone-icon {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: #f2ad35;
    /* WhatsApp Green */
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 1000;
    /* Ensure icons appear on top */
    transition: all 0.3s ease;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f2ad35;
    /* WhatsApp Green */
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 1000;
    /* Ensure icons appear on top */
    transition: all 0.3s ease;
}

.phone-icon:hover,
.whatsapp-icon:hover {
    background-color: #128C7E;
    /* Darker shade of WhatsApp Green */
}

.blog {
    background-color: #EFEFEF;
}

.blog .card {
    border-radius: 0rem;
    padding: 50px;
    background-color: white;
}

.blog img {
    border-radius: 0rem;

}

.blog a {
    color: blue;
}

.blog-first a:hover {
    background-color: #f2ad35;
    color: white;
}

/* @media(min-width:560px){
    .blog-first .card h3{
        font-size: 13px;
    }
    .blog-first .card img{
        height: 300px;
    }
} */
@media(min-width:776px) {

    .blog-first .card img {
        height: 300px;
    }
}

/* .myForm .form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.myForm  .form-group label {
    margin-right: 10px;
} */

.modal-content {
    background-image: url('../img/modal-bg.png');
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0rem;
    margin-top: 100px;
    border: none;
    padding: 1rem;
    box-shadow: 0px 0px 10px 0px rgba(247, 244, 244, 0.8);
}

#myForm input {
    border-radius: 0rem;
    border: none;

    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

    box-shadow: 0px 0px 10px 0px rgba(242, 173, 53, 0.5);
}

.remove_background {
    mix-blend-mode: multiply;
}

.card-img-top {
    height: 300px;
}

.fw-semibold {
    font-weight: 600;
}

.fw-light {
    font-weight: 300;
}

.alert-success {
    color: #ffffff !important;
    background-color: #70cb0c !important;
    border-color: #badbcc !important;
}
 .nav-links-nav li a{
        font-size:14px !important;
    }
@media(min-width:971px) and (max-width:1100px){
    .nav-links-nav li a{
        font-size:12px !important;
    }
}