/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }

    25% {
        border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
    }

    50% {
        border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
    }

    75% {
        border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
    }

    100% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }
}

/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

/* .sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
} */

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 8px !important;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    /* height: 700px; */
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: var(--bs-secondary);
    opacity: 1;
    transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
}

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}

/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature {
    background: var(--bs-light);
}

.feature .feature-item {
    display: flex;
    border-radius: 10px;
}

.feature .feature-item .feature-icon span {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    ;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Features End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;

}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}

/*** About End ***/


/*** Fact Counter Start ***/
.counter {
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)), url(../img/fact-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item .counter-item-icon {
    width: 130px;
    height: 130px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 60px;
    background: var(--bs-light);
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover::after {
    opacity: 1;
}

.service .service-item .service-icon {
    width: 130px;
    height: 130px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Service End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;

}

.categories .categories-item:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/*** Cars Categories End ***/


/*** Process Start ***/
.steps {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/bg-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.steps .steps-item {
    position: relative;
    background: var(--bs-secondary);
    border-radius: 10px;
}

.steps .steps-item h4,
.steps .steps-item p {
    color: var(--bs-white);
}

.steps .steps-item .setps-number {
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: 0;
    right: 40px;
    font-weight: 900;
    border: 1px solid var(--bs-white);
    border-radius: 64px;
    transform: translateY(50%);
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** Process End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}

/*** Blog End ***/


/*** Banner Start ***/
.banner .banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.banner .banner-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
}

.banner .banner-item .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    z-index: 5;
}

@media (min-width: 992px) {
    .banner .banner-item .banner-content h2 {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content h1 {
        font-size: 72px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content p {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

/*** Banner End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
    z-index: 2;
    transition: 0.5s;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    border-radius: 70px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/




.blink {
    animation: blink-animation 1.5s infinite ease-in-out;
}

@keyframes blink-animation {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* inner page banner  */
.about-banner {
    position: relative;
    height: 30vh;
    overflow: hidden;
}

.about-banner img {
    object-fit: cover;
    height: 100%;
}

.banner-overlay {

    padding: 20px;
    border-radius: 10px;
}

/* product img  */
.image-sliderp {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.main-image img {
    width: 100%;
    /* max-height: 450px; */
    padding: 10px;
}

.thumbnail-images {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
    border: 1px solid red;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.product-section {
    margin-top: 50px;
    padding: 20px;
}



.product-description,
.features,
.specifications {
    margin-bottom: 30px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 25px;
}

.product-img img {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}


/****SEO  STart****/

.location-heading {
    background-color: #ea001e;
    color: #fff;
    text-align: center;
    padding: 7px 0px;
    margin: 30px 0px;
    display: block;
    font-size: 26px;
}

.footer-product {
    /* margin: 50px 0; */
    position: relative;
    /* z-index: 9; */
}

.footer-product span {
    background: #ea001e;
    padding: 6px 0;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    font-weight: 600;
    display: block;
}

.footer-product ul {
    padding-left: 0;
}

.footer-product ul li {
    list-style-type: none;
    margin: 10px 0;
    position: relative;
    padding-left: 20px;
}

.footer-product ul li::before {
    content: "";
    height: 13px;
    width: 13px;
    display: block;
    background: #fffbff;
    position: absolute;
    top: 6px;
    left: 0px;
    border-radius: 40%;
    border: 2px solid #ea001e;
}

.footer-product ul li a {
    color: #131e4a;
}

.footer-product ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.footer-product ul li a i {
    margin-right: 10px;
}

.footer-product span.location {
    font-size: 22px;
    background: no-repeat;
    color: #061e75;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
    text-align: left;
}

.site-list-style-three li {
    font-family: 'Poppins', sans-serif;
    color: #00173c;
    font-size: 16px;
    position: relative;
    left: 30px;
    /*    font-weight: 500;*/
    padding-bottom: 12px;
}

.h1 {
    font-size: 32px;
    color: #000;
    background: #ea001e0d;
    margin-bottom: 15px !important;
    line-height: 32px !important;
    padding: 12px;
    border-bottom: 2px solid #ea001e;
    border-radius: 3px;
    margin-top: 20px;
}

@media screen and (max-width: 600px) {
    .h1 {
        font-size: 26px !important;
    }
}

.h2 {
    font-size: 24px;
    color: #000;
    background: #ea001e0d;
    margin-bottom: 15px !important;
    line-height: 30px !important;
    padding: 12px;
    border-left: 2px solid #ea001e;
    border-radius: 3px;
    margin-top: 15px;

}

.h2~p {
    padding-left: 1%;
}

@media screen and (max-width: 600px) {
    .h2 {
        font-size: 19px !important;
    }
}

.h3 {
    font-size: 18px;
    color: #000;
    /* background: #396da61f; */
    background-image: linear-gradient(to right, #ea001e0d, #fff);
    margin-bottom: 12px !important;
    line-height: 18px !important;
    padding: 12px;
    border-left: 2px solid #ea001e;
    border-radius: 3px;
    margin-top: 12px;

}

.h3~p {
    padding-left: 1%;
}

li {
    padding-bottom: 10px;
}

.triangle li::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent !important;
    border-bottom: 6px solid transparent !important;
    border-left: 10px solid #ea001e;
    position: absolute;
    left: 0;
    top: 5px;
}

ul.triangle li {
    padding-left: 0;
    position: relative;
    padding-left: 20px;
}

.circle li::before {
    content: "";
    display: inline-block;
    background-color: #ea001e;
    border-radius: 50%;
    margin-left: 0;
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
}

ul.circle li {
    padding-left: 0;
    position: relative;
    padding-left: 20px;
}

.accro .accordion {
    background-color: #eee;
    color: #333;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
    margin-bottom: 10px;
    font-weight: 400;
}

.accro .active,
.accordion:hover {
    background-color: #ccc;
}

.accro .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.accro .active:after {
    content: "\2212";
}

.accro .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}


.accordion.footer:hover {
    background-color: #fff;
}

.imgs {
    border: 2px solid #ea001e;
    padding: 5px;
}

ul {
    list-style-type: none;
}

.table-responsive {
    margin-left: 1.5%;
  }

  table {
  border: 1px solid #ea001e !important;
}

thead tr th {
  background-color: #ea001e0d !important;
  /* color: white; */
}

tr th {
  background-color: #ea001e0d !important;
  /* color: white; */
}

thead {
  background-color: #ea001e0d !important;
  /* color: white; */
}

/****SEO  END****/

.span1 {
    font-size: calc(1.325rem + 0.9vw);
}

.subhead {
    font-size: 24px;
}

.smallhead {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #000c21;
    font-size: 20px;
}

.heading2 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #000c21!important;
    font-size: 1.25rem;
}
.heading3 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #000c21!important;
    font-size: 24px;
}
.heading4 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #FFF!important;
    font-size: 24px;
}
.heading5 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #FFF!important;
    font-size: 32px;
}



.translate-middle {
    width: 100%;
}



/* Card Styling for the Form */
.card {
	background-color: #ebebeb !important; /* Slightly lighter dark grey for the card */
	color: #000 !important; /* Ensure card text is white */
	border: none !important; /* No border for a cleaner look */
	border-radius: 12px; /* More rounded corners for the card */
	box-shadow: 0 5px 20px rgba(255, 255, 255, 0.08); /* Subtle white glow */
	padding: 10px; /* Internal padding for the card */
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-img-top {
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
	height: 200px; /* Fixed height for images */
	object-fit: cover; /* Cover the area, cropping if necessary */
}

.card-body {
	padding: 1.5rem;
}

.card-title {
	font-size: 1.2rem; /* Larger title */
	font-weight: 600; /* Semi-bold */
	margin-bottom: 30px; /* Increased margin bottom */
	text-align: center;
}

/* Form Group and Input Styling */
.form-group label {
	color: #ccc; /* Lighter grey for labels */
	font-size: 0.95rem;
	margin-bottom: 8px; /* More space below labels */
	display: block; /* Ensure label takes full width */
}

.form-control {
	background-color: #ebebeb !important; /* Darker input fields */
	color: #fff !important; /* White text in input fields */
	border: 1px solid #4a4a4a !important; /* Slightly darker border */
	border-radius: 8px; /* Rounded corners for input fields */
	padding: 12px 18px; /* More padding */
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control::placeholder {
	color: #888 !important; /* Lighter placeholder text */
}

.form-control:focus {
	background-color: #383838 !important;
	border-color: #ffc107 !important; /* Yellow border on focus */
	box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.4) !important; /* More prominent focus glow */
}

/* Button Styling */
.btn-warning {
	background-color: #ffc107 !important; /* Bootstrap warning yellow */
	border-color: #ffc107 !important;
	color: #000 !important; /* Black text for the button */
	font-weight: bold;
	padding: 15px 30px; /* More padding for a bigger button */
	font-size: 1.2rem; /* Larger font size */
	border-radius: 8px; /* Rounded corners */
	transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3); /* Subtle shadow for the button */
}

.btn-warning:hover {
	background-color: #e0a800 !important; /* Darker yellow on hover */
	border-color: #e0a800 !important;
	transform: translateY(-2px); /* Slight lift on hover */
}


.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 500;
	/* Medium bold */
	color: #6c757d;
	/* Grey color for title, similar to image */
	margin-bottom: 60px;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
}

/* Basic styling for the line below the title, if desired */
.section-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 2px;
	background-color: #dee2e6;
	/* Light grey line */
	margin: 15px auto 0;
}

.feature-box {
	text-align: center;
	padding: 20px;
	margin-bottom: 40px;
	/* Space between rows */
}

/* Icon styling - using text-based placeholders for simplicity */
.feature-box .icon-placeholder {
	font-size: 3.5rem;
	/* Larger icon size */
	color: #007bff;
	/* A primary blue color for icons */
	margin-bottom: 20px;
	line-height: 1;
	/* Adjust line height */
	/* You could use icons from Font Awesome or replace with actual SVGs here */
}

/* Example specific icon styling (if you use Font Awesome or custom characters) */
.feature-box .icon-placeholder.chauffeur-icon::before {
	content: '👨‍✈️';
	/* Or use a relevant FA icon like <i class="fas fa-users-cog"></i> */
}

.feature-box .icon-placeholder.settings-pencil-icon::before {
	content: '⚙️✏️';
}

.feature-box .icon-placeholder.cars-icon::before {
	content: '🚘🚘🚘';
}

.feature-box .icon-placeholder.help-desk-icon::before {
	content: '📞⏰';
}

.feature-box .icon-placeholder.app-booking-icon::before {
	content: '📱👆';
}

.feature-box .icon-placeholder.safe-travel-icon::before {
	content: '🌐🛡️';
}


.feature-box h4 {
	font-size: 1.15rem;
	font-weight: 500;
	/* Medium bold */
	color: #212529;
	/* Dark text */
	margin-bottom: 10px;
}

.feature-box p {
	font-size: 0.95rem;
	color: #6c757d;
	/* Grey text */
	line-height: 1.5;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
	.section-title {
		font-size: 2rem;
		margin-bottom: 40px;
	}

	.feature-box {
		margin-bottom: 30px;
	}
}


.process-section {
	padding-top: 20px;
	padding-bottom: 20px;
	position: relative;
	/* For absolute positioning of connecting lines */
	overflow: hidden;
	/* Hide parts of lines that go beyond container */
}

.process-title {
	text-align: center;
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 60px;
	color: #343a40;
}

.step-item {
	text-align: center;
	padding: 0 15px;
	/* Adjust padding for spacing */
	position: relative;
	z-index: 10;
	/* Ensure content is above lines */
	margin-bottom: 40px;
	/* Space when stacked on smaller screens */
}

.step-icon-wrapper {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	/* Very subtle border */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
	/* Subtle shadow */
	transition: all 0.3s ease;
}

.step-icon-wrapper.green-bg {
	background-color: #e6ffe6;
}

/* Light green */
.step-icon-wrapper.blue-bg {
	background-color: #e6f7ff;
}

/* Light blue */
.step-icon-wrapper.red-bg {
	background-color: #ffe6e6;
}

/* Light red */
.step-icon-wrapper.yellow-bg {
	background-color: #fff9e6;
}

/* Light yellow */

.step-icon {
	font-size: 2.5rem;
	/* Icon size */
	line-height: 1;
}

/* Specific icon colors */
.step-icon.icon-green {
	color: #28a745;
}

/* Green */
.step-icon.icon-blue {
	color: #007bff;
}

/* Blue */
.step-icon.icon-red {
	color: #dc3545;
}

/* Red */
.step-icon.icon-orange {
	color: #fd7e14;
}

/* Orange/Yellow */

.step-number {
	font-size: 2rem;
	font-weight: 700;
	color: #343a40;
	margin-bottom: 10px;
}

.step-text {
	font-size: 1rem;
	color: #6c757d;
}

/* Connecting Line Styles - Simplified version of the winding path */
.process-flow-line {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	/* Allows clicks to pass through */
	z-index: 5;
	/* Below content */
}

/* These pseudo-elements will draw the lines between icons */
/* Line 1 -> 2 */
.process-flow-line::before {
	content: '';
	position: absolute;
	top: calc(50px + 60px);
	/* Adjust based on icon/wrapper height + heading offset */
	left: calc(25% - 40px);
	/* Start approx. center of first icon */
	width: 25%;
	/* Connects to next icon's area */
	height: 3px;
	background-color: #e9ecef;
	/* Light grey line */
	border-radius: 5px;
}

/* Line 2 -> 3 */
.process-flow-line::after {
	content: '';
	position: absolute;
	top: calc(50px + 60px);
	/* Same height as above */
	left: calc(50% - 40px);
	/* Start approx. center of second icon */
	width: 25%;
	/* Connects to next icon's area */
	height: 3px;
	background-color: #e9ecef;
	border-radius: 5px;
}

/* Line 3 -> 4 */
.process-section .row>.col:nth-child(3) .step-item::after {
	content: '';
	position: absolute;
	top: 40px;
	/* Aligns with icon center */
	left: calc(100% - 40px);
	/* From right side of icon */
	width: 100px;
	/* Length of the line segment */
	height: 3px;
	background-color: #e9ecef;
	border-radius: 5px;
	transform: translateY(-50%);
	z-index: -1;
	/* Behind icon */
	display: none;
	/* Hide by default, show on larger screens */
}

.process-section .row>.col:nth-child(4) .step-icon-wrapper::before {
	content: '';
	position: absolute;
	width: 15px;
	/* Size of the small circle */
	height: 15px;
	background-color: #007bff;
	/* Dark dot color */
	border-radius: 50%;
	left: 100%;
	/* Position after the 4th icon */
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

/* Adjust lines for smaller screens */
@media (max-width: 991.98px) {

	.process-flow-line::before,
	.process-flow-line::after {
		display: none;
		/* Hide horizontal lines on smaller screens */
	}

	.process-section .row>.col:nth-child(3) .step-item::after {
		display: none;
	}

	.process-section .row>.col:nth-child(4) .step-icon-wrapper::before {
		display: none;
	}

	.step-item {
		margin-bottom: 30px;
		/* Space out vertically */
	}
}

@media (min-width: 992px) {

	/* Show lines only on large screens and up */
	.process-flow-line::before,
	.process-flow-line::after {
		display: block;
	}

	.process-section .row>.col:nth-child(3) .step-item::after {
		display: block;
	}

	.process-section .row>.col:nth-child(4) .step-icon-wrapper::before {
		display: block;
	}
}


.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 500;
	color: #6c757d;
	/* Grey color for title */
	margin-bottom: 50px;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
}

.section-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background-color: #ea001e;
	/* Light grey underline */
	margin: 15px auto 0;
	border-radius: 2px;
}


.testimonial-card {
	background-color: #ffffff;
	border: 1px solid #e9ecef;
	/* Light border */
	border-radius: 0.5rem;
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
	/* Subtle shadow */
	padding: 30px;
	height: 100%;
	/* Ensures all cards in a row are same height */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* Pushes footer to bottom */
}

.testimonial-card .card-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #343a40;
	margin-bottom: 15px;
}

.testimonial-card .quote-icon {
	font-size: 2.5rem;
	/* Larger quote icon */
	color: #a0a0a0;
	/* Grey color for quote */
	line-height: 1;
	margin-bottom: 10px;
	float: left;
	/* Float to left as in image */
	margin-right: 10px;
	font-family: serif;
	/* Ensure it looks like a quote mark */
	font-style: normal;
}

.testimonial-card .testimonial-text {
	font-size: 0.95rem;
	color: #6c757d;
	line-height: 1.6;
	margin-bottom: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	/* For truncated text */
}

.testimonial-card .read-more-btn {
	background: none;
	border: 1px solid #ced4da;
	color: #495057;
	padding: 6px 15px;
	border-radius: 5px;
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-bottom: 20px;
	/* Space before image */
	display: block;
	/* Make it a block button */
	width: fit-content;
	/* Fit content width */
}

.testimonial-card .read-more-btn:hover {
	background-color: #f8f9fa;
	border-color: #adb5bd;
}

.testimonial-card .author-info {
	display: flex;
	align-items: center;
	margin-top: auto;
	/* Push to bottom */
	padding-top: 20px;
	/* Space above author info */
	border-top: 1px solid #e9ecef;
	/* Separator line */
}

.testimonial-card .author-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 15px;
	border: 2px solid #e9ecef;
	/* Light border around image */
}

.testimonial-card .author-details {
	display: flex;
	flex-direction: column;
}

.testimonial-card .author-name {
	font-size: 1rem;
	font-weight: 700;
	color: #343a40;
	margin-bottom: 2px;
}

.testimonial-card .author-designation {
	font-size: 0.85rem;
	color: #6c757d;
}

.testimonial-card .rating .heart {
	color: #dc3545;
	/* Red heart */
	font-size: 1.1rem;
	margin-right: 2px;
}

.testimonial-card .rating {
	margin-top: 10px;
	/* Space between designation and rating */
}


/* Carousel Customizations */
.carousel-control-prev,
.carousel-control-next {
	width: 5%;
	/* Make controls narrower */
	opacity: 0.8;
	/* Make them slightly less transparent */
	filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
	/* Add shadow for visibility */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-color: #6c757d;
	/* Grey background for icons */
	border-radius: 50%;
	padding: 10px;
	background-size: 50%;
	/* Adjust icon size */
}

.carousel-indicators [data-bs-target] {
	background-color: #6c757d;
	/* Grey indicators */
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 0 5px;
}

.carousel-indicators .active {
	background-color: #343a40;
	/* Darker active indicator */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

	/* For small to medium screens */
	.testimonial-card {
		margin-bottom: 30px;
		/* Add space between cards when stacked */
	}
}

.displayk {
	flex-wrap: nowrap !important;
}




/* Top Features Section */
.feature-box {
	text-align: center;
	padding: 20px;
	margin-bottom: 0px;
}

.feature-box .icon-placeholder {
	font-size: 3rem;
	/* Large icon size */
	color: #6c757d;
	/* Grey color for icons */
	margin-bottom: 10px;
	line-height: 1;
	/* Adjust line height for icon */
}

/* Using generic text for icons as actual icons require Font Awesome or similar */
.feature-box .icon-placeholder.car-icon::before {
	content: '🚗';
}

.feature-box .icon-placeholder.star-icon::before {
	content: '⭐';
}

.feature-box .icon-placeholder.rupee-icon::before {
	content: '📱';
}

/* Using phone for Fares from icon */


.feature-box h4 {
	font-size: 1.25rem;
	font-weight: 500;
	/* Medium bold */
	color: #212529;
	/* Dark text */
	margin-bottom: 5px;
}

.feature-box p {
	font-size: 1rem;
	color: #6c757d;
}

/* Cab Options Heading */
.section-heading {
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 40px;
	text-align: left;
	/* Aligned to left as in image */
	color: #212529;
}

/* Car Option Cards */
.car-option-card {
	background-color: #fff;
	border: 1px solid #e0e0e0;
	/* Light border */
	border-radius: 0.5rem;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
	/* Subtle shadow */
	padding-bottom: 15px;
	/* Padding for bottom content */
	margin-bottom: 25px;
	/* Space between cards in different rows */
	text-align: center;
	overflow: hidden;
	/* Ensures image corners are rounded */
}

.car-option-card img {
	width: 100%;
	height: 180px;
	/* Fixed height for car images */
	object-fit: contain;
	/* Contain the image within the bounds */
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
	margin-bottom: 15px;
}

.car-option-card .car-details {
	padding: 0 15px;
	/* Padding for text inside the card */
}

.car-option-card .car-title {
	font-size: 1.15rem;
	font-weight: 700;
	/* Bold title */
	color: #343a40;
	margin-bottom: 5px;
	display: flex;
	/* Use flex to align title and seats */
	justify-content: center;
	/* Center horizontally */
	align-items: center;
	/* Center vertically */
	gap: 10px;
	/* Space between title and seats badge */
}

.car-option-card .seats-badge {
	background-color: #343a40;
	/* Dark background for seats */
	color: #fff;
	font-size: 0.75rem;
	padding: 3px 8px;
	border-radius: 0.25rem;
	font-weight: 500;
	white-space: nowrap;
	/* Prevent badge from wrapping */
}

.car-option-card .car-description {
	font-size: 0.9rem;
	color: #6c757d;
	margin-bottom: 10px;
}

.car-option-card .car-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: #000;
	/* Black color for price */
	margin-top: 10px;
}


.form-container {
	max-width: 700px;
	margin: 0 auto;
	background-color: #ffffff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}