/********** Template CSS **********/
:root {
    --primary: #D81324;
    --secondary: #0B2154;
    --light: #F2F2F2;
    --dark: #111111;
}

html {
    margin: 0px !important;
} 

.fw-medium {
    font-weight: 600 !important;
}

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


/*** 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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 10px;
    /* padding: 25px 0; */
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #000000;
}

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

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

/* .navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
} */

.navbar-light .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(0, 0, 0, .7);
    height: 100%;
    display: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background-color: #ffffff !important;
}


/*** Service ***/
.service .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.service .nav .nav-link.active {
    background: var(--primary);
}

.service .nav .nav-link.active h4 {
    color: #FFFFFF !important;
}


/*** Booking ***/
.booking {
    background: #f3f3f3 !important;
    background-size: cover;
}
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/
.team-item .team-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transform: scale(0);
    transition: .5s;
}

.team-item:hover .team-overlay {
    transform: scale(1);
}

.team-item .team-overlay .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-overlay .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: #aa1e23 !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/footer-bg.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}



/* -----------------------17/09/2025------------------------------ */

.top-car-form {
    background: #ffffff33;
    padding: 20px;
    border-radius: 20px;
    width: 33%;
    position: absolute;
    right: 144px;
    top: 5%;
    z-index: 999;
    transform: translate(10px, 10px);
    bottom: 7%;
    max-height: 520px;
    height: 485px;
}



.form-content input{
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 14px;
    border: 0px solid;
    margin: 4px 0;
}

.form-content textarea {
    width: 100%;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 16px;
    border: 1px solid;
    margin: 0px 0;
}

.top-car-form button {
    background-color: #0d9347;
    border: none;
}

.top-car-form button:hover{
    background-color: black !important;
}

/* .form-submit-btn a{
    background: #ffffff;
    padding: 16px 70px;
    color: black;
    margin: auto;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
}

.form-submit-btn a:hover{
    background-color: #0d9347;
    color: white;
    transition: 0.4s ease;
} */

.car-service-img img {
    width: 80%;
    height: 250px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
}

.car-services-box {
    border: 1px solid #aa1e23;
    padding: 20px;
    height: 500px;
    border-radius: 10px;
    transition: 0.4s ease-in-out;
}

.car-services-box:hover{
    transform: translateY(-10px);
    transition: 0.4s ease-in-out;
}

.car-services-box:hover .car-service-img img{
    filter: brightness(70%);
    transition: 0.4s ease-in-out;
}



.buy-car-content{
    padding: 30px;
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 380px;
}

.buy-car-content:hover .buy-car-img img{
    transform: scale(1.1);
    transition: 0.4s ease-in-out;
}

.buy-car-content:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


.buy-car-img{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 230px;
}

.buy-car-img img{
    transition: 0.4s ease-in-out;
}



.buy-car-service-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 14px;
}

.buy-car-service-btn a{
    background-color: #aa1e23;
    padding: 8px 20px;
    color: white;
    font-size: 16px;
	border-radius: 30px;
}

.buy-car-service-btn a:hover{
    background-color: #0d9347;
    transition: 0.4s ease;
}

.container-xxl.buy-sell.py-5 {
    background: #f3f3f3;
}

.container-xxl.bg-light.p-0.car-top-header {
    background: #ffffff !important;
}

a.btn.btn-primary.py-4.px-lg-5.d-none.d-lg-block.car-navbar-btn {
    background-color: #aa1e23;
    border: none;
}

a.btn.btn-primary.py-4.px-lg-5.d-none.d-lg-block.car-navbar-btn:hover{
    background-color: #0d9347;
    transition: 0.4s ease;
}


a.btn.btn-primary.py-3.px-5.animated.slideInDown.car-hero-btn {
    background: #aa1e23;
    border: none;
}

a.btn.btn-primary.py-3.px-5.animated.slideInDown.car-hero-btn:hover{
    background-color: #0d9347;
    transition: 0.4s ease;
}

.container-xxl.py-5.car-expert-service h5 {
    color: #0d9347;
}

.container-xxl.py-5.car-expert-service i {
    color: #aa1e23 !important;
}

.container-xxl.py-5.japanese-car-part h6{
    color: #aa1e23 !important;
}

.container-xxl.py-5.japanese-car-part h2 {
    color: #0d9347;
}

.container-xxl.py-5.japanese-car-part h2 span {
    color: #0d9347 !important;
}

/* .container-xxl.py-5.japanese-car-part a {
    background: #aa1e23;
    border: none;
} */

/* .container-xxl.py-5.japanese-car-part a:hover{
    background-color: #0d9347;
    transition: 0.4s ease;
} */

.container-xxl.service.py-5.my-heading-class h6 {
    color: #aa1e23 !important;
}

.container-xxl.service.py-5.my-heading-class h2 {
    color: #0d9347;
}

.container-xxl.service.py-5.my-heading-class h4
 {
    color: #aa1e23;
}

.bg-primary.h-100.d-flex.flex-column.justify-content-center.text-center.p-5.wow.zoomIn.my-background-class {
    background-color: #aa1e23 !important;
}

.bg-primary.h-100.d-flex.flex-column.justify-content-center.text-center.p-5.wow.zoomIn.my-background-class button{
    background-color: #0d9347;
    border: none;
}

.container-xxl.buy-sell.py-5 h6{
    color: #aa1e23 !important;
}

.container-xxl.buy-sell.py-5 h2{
    color: #0d9347;
}

.container-xxl.py-5.wow.fadeInUp.my-head-class h6{
    color: #aa1e23 !important;
}

.container-xxl.py-5.wow.fadeInUp.my-head-class h3{
    color: #0d9347;
}

.container-xxl.py-5.wow.fadeInUp.my-head-class h5{
    color: #aa1e23;
}

.container-fluid.bg-dark.text-light.footer.pt-5.mt-5.wow.fadeIn.my-btn-class button {
    background: #aa1e23;
    border: none;
}

.container-fluid.bg-dark.text-light.footer.pt-5.mt-5.wow.fadeIn.my-btn-class button:hover{
    background-color: #0d9347;
    transition: 0.4s ease;
}

a.btn.btn-lg.btn-primary.btn-lg-square.back-to-top.my-top-class
 {
    background: #aa1e23;
    border: none;
}

.car-faq-section{
    background-image: url('../img/faq-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.faq-content{
    width: 100%;
    height: auto;
}

.faq-text h6{
    color: #aa1e23 !important;
}

.faq-text h3{
    color: #0d9347;
}


.faq-section {
  width: 94%;
  margin-top: 24px;
  padding: 0;
  font-family: "Rajdhani", sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 0;
    background-color: #aa1e23;
    color: white;
    border-radius: 8px;
    margin: 10px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  color: #ffffff;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  font-weight: bold;
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-answer p {
    margin: 0px 0;
    /* border-top: 1px solid; */
    padding: 10px 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 10px 12px;
    background: white;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  content: "–";
}

.car-faq-img{
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
}

.car-faq-img img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    -o-object-fit: cover;
    transition: 0.4s ease-in-out;
/*     box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    filter: brightness(0.6); */
}

.car-faq-img img:hover{
/*     filter: brightness(70%); */
    transform: scale(1.10);
    transition: 0.4s ease-in-out;
/*     box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}


.container-xxl.service.py-5.my-btn-bg-class h6{
    color: #aa1e23 !important;
}

.container-xxl.service.py-5.my-btn-bg-class h3 {
    color: #0d9347;
}

.container-xxl.service.py-5.my-btn-bg-class button{
    background-color: #aa1e23;
}

.container-xxl.service.py-5.my-btn-bg-class button:hover{
    background-color: #0d9347;
    transition: 0.4s ease;
}

.container-xxl.service.py-5.my-btn-bg-class h5 {
    color: white;
}

.container-xxl.service.py-5.my-btn-bg-class h3 {
    color: #aa1e23;
}

.container-xxl.service.py-5.my-btn-bg-class a{
    background-color: #aa1e23;
    border: none;
}

.container-xxl.service.py-5.my-btn-bg-class a:hover{
    background-color: #0d9347;
    transition: 0.4s ease;
}

.car-phone-numbers.d-flex.align-items-center i{
    background: #aa1e23;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 16px;
    border-radius: 50%;
}

.car-phone-numbers.d-flex.align-items-center span{
    color: #000000;
    font-size: 12px;
    font-weight: 600;
}

.car-phone-numbers.d-flex.align-items-center a {
    color: #0d9347;
    font-size: 17px;
    font-weight: bold;
}
.car-phone-numbers.d-flex.align-items-center a:hover{
    color: #aa1e23;
}
.car-social-media-icons.py-3.d-flex.align-items-center a {
    background: #aa1e23;
    color: white;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 16px;
}

.car-social-media-icons.py-3.d-flex.align-items-center a:hover{
    background-color: #0d9347;
    color: #ffffff;
    transition: 0.4s ease-in-out;
}

.container-xxl.py-5.japanese-car-part h4{
    color: black;
}

small.my-span-color{
    color: #000000;
}


nav.navbar.navbar-expand-lg.bg-white.navbar-light.sticky-top.my-navbar-color-class{
    background: #aa1e23 !important;
}

a.btn.btn-primary.py-1.px-lg-3.d-none.d-lg-block.car-navbar-btn {
    background-color: #0d9347;
    border: none;
}

a.navbar-brand.d-flex.align-items-center img {
    width: 100%;
    height: auto;
}

.container-fluid.p-0.position-relative.my-img-height img{
    width: 100%;
    height: 600px;
}

.testimonial-text.bg-light.text-center.p-4 {
    height: 310px;
}

small.text-primary.me-2.my-listing-class {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

/* -------------22/09/2025------------------- */
.container-xxl.py-5.japanese-car-part {
    background: #ffffff;
}

.logo-brand-img {
    border-radius: 19px;
    background: #f3f3f3;
    transition: 0.4s ease;
    width: 221px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
}

.logo-brand-img img{
    transition: 0.4s ease-in-out;
	width: 100px
}

.logo-brand-img:hover{
    border: none;
    background-color: #f3f3f3;
    transition: 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.logo-brand-img:hover img{
    transform: scale(1.1);
    transition: 0.4s ease;
}

/* ===== Blog Section ===== */
.custom-blog-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-card a {
    text-decoration: none;
    color: inherit;
}

.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Blog Info */
.blog-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
    display: inline-block;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
/*     color: #aa1e23; */
    transition: color 0.3s ease;
}

.blog-title:hover {
    color: #ff6600;
}

.blog-excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

.read-more-btn {
    display: inline-block;
    font-weight: 500;
    color: #ff6600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #222;
}

/* Pagination */
.pagination-wrap {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
}

.pagination-wrap .page-numbers {
    display: inline-block;
    margin: 0 6px;
    padding: 8px 16px;
    background: #fff;
    border-radius: 6px;
    color: #555;
    font-weight: 500;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-wrap .page-numbers:hover {
    background: #aa1e23;
    color: #fff !important;
    border-color: #aa1e23;
}

.pagination-wrap .current {
    background: #aa1e23;
    color: #fff !important;
    border-color: #aa1e23;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-image img {
        height: 200px;
    }
    .blog-title {
        font-size: 1.2rem;
    }
	.container-xxl.service.py-5.my-btn-bg-class.my-apni-class-clr li{margin-bottom:5px;}
}
/* ====== Page Header ====== */
.page-header{
    background-size: cover;
    background-position: center;
    position: relative;
    height: 300px;
    display: none;
}
.page-header .overlay{
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page-header h2{
    font-size: 42px;
    font-weight: 600;
}

/* ====== Single Blog ====== */
.single-blog .post-thumbnail img{
    width: 100%;
    height: 350px;
    border-radius: 10px;
    transition: .3s ease-in-out;
}
.single-blog .post-thumbnail img:hover{
    transform: scale(1.03);
}

.post-title{
    font-size: 32px;
    font-weight: 600;
    color: #e45714;
}
.post-meta{
    font-size: 14px;
    color: #777;
}
.post-content p{
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ====== Sidebar ====== */
.sidebar .sidebar-box{
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: rgba(0,0,0,0.1) 0 3px 6px;
    position: sticky;
    top: 30px;
}
.sidebar .recent-posts li{
    display: flex;
    align-items: flex-start;
}
.sidebar .recent-posts li .thumb img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}
.sidebar .recent-title{
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}
.sidebar .recent-title:hover{
    color: #e45714;
}

/* Responsive */
@media(max-width:768px){
    
}

	* Business detail page */
.business-detail-page{
    position: relative;
    z-index: 9999;
    padding-top: 100px;
}

.business-detail-page h3{
    font-size: 3rem;
    color: white;
    font-weight: 600;
}

.business-detail-page ol{
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #e4e2e2;
    padding: 8px 16px;
    width: 28%;
}

.business-detail-page i{
    font-size: 16px;
}

.business-detail-page ol li{
    list-style: none;
}

.business-detail-page ol li a{
    text-decoration: none;
    color: #e45e1e;
    font-size: 16px;
    font-weight: 500;
}

.business-det-img{
    width: 100%px;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.4s ease;
	object-fit: cover;
	object-position: center;
}

.business-det-img img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: 0.4s ease;
}

.business-det-img img:hover{
    transform: scale(1.08);
    filter: brightness(70%);
}



.business-det-text{
    padding-top: 30px;
}

.business-det-text h2{
    font-size: 36px;
    color: #aa1e23;
    font-weight: 600;
}

.business-det-text h4{
    font-size: 1.5rem;
    color: #aa1e23;
    font-weight: 600;
}

.business-det-text p{
    font-size: 1rem;
    color: #706e6e;
}

.business-det-box{
    background-color: #a61d22 !important;
    padding: 14px !important;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: sticky;
    top: 40px;
}


.business-det-box ul{
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 20px;
}

.business-det-box ul li{
    list-style: none;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    margin: 14px 0;
}

.business-det-box ul li:hover{
    background-color: #aa1e23;
    color: white;
    transition: 0.4s ease;
}

.business-det-box ul li:hover a{
    color: white;
    transition: 0.4s ease;
}

.business-det-box  ul li a{
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}


/* -------------------10.10.2025---------------------- */
/* Position dropdown under parent menu item */
.navbar-nav .menu-item-has-children {
  position: relative;
}

/* Hide submenus by default */
.navbar-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #aa1e23;
  list-style: none;
  padding: 10px 0px;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 999;
  min-width: 200px;
}

/* Show dropdown on hover */
.navbar-nav .menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* Style submenu links */
.navbar-nav .sub-menu li a {
  display: block;
  padding: 8px 15px;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
	width: 100%;
}

/* Hover effect */
.navbar-nav .sub-menu li a:hover {
  background-color: #0d9347;
  color: #fff !important;
}

section.business-detail-sec.padd-sec h1 {
    color: #0d9347;
}

section.business-detail-sec.padd-sec h3 {
    color: #aa1e23;
}

section.business-detail-sec.padd-sec h4 {
    color: #ffffff;
    font-size: 38px;
}



/*  Responsive code 10.10.2025*/
@media only screen and (max-width: 1280px) {
    
}

@media only screen and (max-width: 1199px) {
    .navbar-light .navbar-nav .nav-link {
    margin-right: 0 !important;
    padding: 0 10px;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}
}

@media only screen and (max-width: 1140px) {
    .top-car-form {
    background: #ffffff33;
    padding: 20px;
    border-radius: 20px;
    width: 33%;
    position: absolute;
    right: 106px;
    top: 2%;
    z-index: 999;
    transform: translate(10px, 10px);
    height: 500px;
}
	
	.logo-brand-img {
    width: 200px;
}
	
	
}

@media only screen and (max-width: 1024px) {
	
	    .logo-brand-img {
        width: 174px;
    }

}

@media only screen and (max-width: 991px) {
    nav.navbar.navbar-expand-lg.bg-white.navbar-light.sticky-top.my-navbar-color-class
 {
    background: #fff !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
	.call-to-action-sec .call-to-action-text h1 {
    color: #fff;
    font-size: 2rem !important;
}
	.call-to-action-sec .call-to-action-text h3 {
    color: #0d9347;
    font-size: 2.5rem !important;
}
	
	.logo-brand-img {
        width: 200px;
    }
	
	.fact {
    background-color: #e5e1e1 !important;
}
	
	.top-car-form {
        background: #aa1e23;
        padding: 20px;
        border-radius: 20px;
        width: 33%;
        position: absolute;
        right: 106px;
        top: 2%;
        z-index: 999;
        transform: translate(10px, 10px);
    }
	
	.business-det-text {
    padding-top: 0px;
}

nav.navbar.navbar-expand-lg.bg-white.navbar-light.sticky-top.my-navbar-color-class.py-1 img {
    width: 150px;
    /* height: 80px; */
}


    .navbar-light .navbar-nav .nav-link {
        margin-right: 0 !important;
        padding: 4px 0;
        color: #000000;
        font-size: 15px;
        text-transform: uppercase;
        outline: none;
/*         border-bottom: 1px solid #d7d6d6; */
		margin: 4px 0;
    }

    .top-car-form {
        position: relative;
        top: 0;
        left: 0;
        width: 95%;
        transform: translateY(50% ,50%);
		margin: 60px 0;
    }
	
	.navbar-nav .sub-menu{
		padding: 10px 22px;
	}
	
	div#menu-footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
	
	
	

}


@media only screen and (max-width: 980px) {

	
	
}

@media only screen and (max-width: 840px) {

}


@media only screen and (max-width: 800px) {

}


@media only screen and (max-width: 768px) {

	div#menu-footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
	
}

@media only screen and (max-width: 767px) {

	div#menu-footer-menu {
    display: flex;
    align-items: center;
    justify-content: center !important;
    gap: 14px;
}
	.logo-brand-img {
        width: 150px;
    }
	.col-10.col-lg-7.text-center.text-lg-start {  
    width: 100% !important;
}
	.call-to-action-btn.mt-4.d-flex.justify-content-start.align-items-center.gap-3 {   
    flex-direction: unset;
    justify-content: center !important;
}
	.call-to-contact-us.apna-contact-btn-two {    
    padding: 10px;
}
	
	.display-3 {
    font-size: 3.2rem !important;
}
}

@media only screen and (max-width: 667px) {

}

@media only screen and (max-width: 600px) {

}

@media only screen and (max-width: 500px) {
	.logo-brand-img {
        width: 200px;
    }

}

@media only screen and (max-width: 480px) {
	
	nav.navbar.navbar-expand-lg.bg-white.navbar-light.sticky-top.my-navbar-color-class.py-1 img {
        width: 90px;
    }
	
	.footer .copyright {
    font-size: 12px !important;
}
	
	.logo-brand-img {
        width: 190px;
    }
	
	.navbar-toggler {
    padding: .25rem .50rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0px;
    transition: box-shadow 0.15s 
ease-in-out;
}

}

@media only screen and (max-width: 414px) {
    .buy-car-img img {
    transition: 0.4s ease-in-out;
    width: 280px;
}
	
	.logo-brand-img {
        width: 150px;
    }
	
	.faq-item.active .faq-answer {
    max-height: 220px;
    padding: 10px 12px;
    background: white;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
	
	.page-header h1 {
    font-size: 20px;
    font-weight: 600;
}
 .call-to-contact-us.apna-contact-btn a {
    padding: 10px 14px !important;
    font-size: 13px;
  }
  .call-to-contact-us.apna-contact-btn-two a {
  padding: 10px 16px;
  font-size: 13px;
}
		
}

@media only screen and (max-width: 375px) {
	    .logo-brand-img {
        width: 146px;
		height: 120px;
    }

}

@media only screen and (max-width: 360px) {

	.logo-brand-img {
        width: 135px;
    }
	
	.call-to-action-sec .call-to-contact-us a {
    padding: 4px 12px !important;
}
	
}


@media only screen and (max-width: 320px) {

    .buy-car-img img {
    transition: 0.4s ease-in-out;
    width: 200px;
}
	.call-to-action-sec .call-to-contact-us a {
    padding: 4px 12px !important;
}
	    .logo-brand-img {
        width: 116px;
        height: 100px;
    }
	

}


div#menu-footer-menu {
    display: flex
;
    align-items: center;
    justify-content: end;
    gap: 14px;
}


.container-xxl.py-5.apni-class-one h2 {
    color: #aa1e23;
}

.container-xxl.py-5.apni-class-one {
    background-color: #f2f2f2;
}

section.single-blog.py-5.apni-class-parts h2 {
    color: #aa1e23;
}

section.single-blog.py-5.apni-class-parts h3 b {
    color: #aa1e23;
}

section.single-blog.py-5.apni-class-parts h4 {
    color: #aa1e23;
}

section.custom-blog-section.apni-class-third h2 {
    color: #aa1e23;
}

section.custom-blog-section.apni-class-third h2:hover{
	color: #0d9347 !important;
}

section.custom-blog-section.apni-class-third span
 {
    color: #aa1e23;
}



.container-xxl.service.py-5.my-btn-bg-class.my-apni-class-clr h4 {
    color: #ffffff;
	font-size:1.2rem;
}

.container-xxl.service.py-5.my-btn-bg-class.my-apni-class-clr i {
    color: #ffffff;
}

.container-xxl.buy-sell.py-5 h3 {
    color: #aa1e23;
}

.container-xxl.py-5.apni-class-cnt h1 {
    color: #0d9347;
}

.container-xxl.py-5.apni-class-cnt h5 {
    color: #aa1e23;
}

/* =========14 10 205=== */

@media (min-width: 992px) {
    .container {
        max-width: 1240px;
    }
}


.navbar-nav li#menu-item-175 {
    position: inherit;
}

.navbar-nav li#menu-item-175 ul.sub-menu {
    width: 100%;
}

.navbar>.container {
    position: relative;
}

.navbar-nav li#menu-item-175 ul.sub-menu li {
    display: inline-block;
    width: 24%;
    margin: 4px 0;
}

span.clk_btn {
    position: absolute;
    top: 9px;
    color: white;
    right: 3px;
    font-size: 12px;
}

.navbar-nav li#menu-item-175 span.clk_btn {right: 44.5%;}



@media (max-width: 991px)  { 

.navbar-collapse {
    position: absolute;
    top: 100%;
    width: 100%;
    background: white;
    z-index: 99;
    padding: 10px;
    left: 0;
}

span.clk_btn {
    background: #aa1e23;
    padding: 5px 5px;
    cursor: pointer;
    line-height: 1;
    right: 0 !important;
}

.navbar-nav li#menu-item-175 {
    position: relative;
}

.navbar-nav .sub-menu {
    position: revert;
    background: #e6e6e6;
}

.navbar-nav li#menu-item-175 ul.sub-menu li {
    width: 100%;
}

.navbar-nav .menu-item-has-children:hover > .sub-menu {
    display: none;
}

} 

/* --------------15.10.2025------------------ */
.container-fluid.bg-dark.text-light.footer.pt-5.wow.fadeIn.my-btn-class a {
    color: #ffffff;
}

.container-fluid.bg-dark.text-light.footer.pt-5.wow.fadeIn.my-btn-class a:hover{
	color: #0d9347
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-secondary.w-100.py-3 {
    background-color: #0d9347;
    border-radius: 30px;
    width: 64% !important;
    padding: 8px !important;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-secondary.w-100.py-3:hover{
	border: 1px solid #fff;
}

.container-xxl.py-5.apni-class-cnt h2 {
    color: #aa1e23;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary.w-100.py-3 {
    background-color: #aa1e23;
    border: none;
	border-radius: 30px;
}


/* --------------16.10.2025---------------------- */
.container-fluid.bg-secondary.booking.wow.fadeInUp.apni-booking-clr-class h3 {
    color: #aa1e23 !important;
}

.container-fluid.bg-secondary.booking.wow.fadeInUp.apni-booking-clr-class p {
    color: black !important;
}

.call-to-action-sec{
    background-color: #aa1e23;
}

.call-to-action-sec .call-to-action-text h4{
    color: #1dac5b;
    font-size: 1rem;
}

.call-to-action-sec .call-to-action-text h3{
    color: #ffffff;
    font-size: 4rem;
}

.call-to-action-sec .call-to-action-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* .call-to-action-sec .call-to-contact-us a{
    padding: 8px 24px;
    color: white;
    border-radius: 30px;
    font-size: 17px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
	border: 1px solid #fff
}

.call-to-action-sec .call-to-contact-us a:hover{
    background-color: #0d9347;
    transition: 0.3s ease-in-out;
} */

.apni-bg-clr-class-two {
/*     background: #ffffff; */
/*     padding: 30px; */
/*     border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}

.container-xxl.py-5.apni-class-one h1 {
    color: #aa1e23;
}

aside.sidebar {
    position: sticky;
    top: 30px;
}

.call-to-contact-us.apna-contact-btn a {
    padding: 10px 26px;
    background-color: #0d9347;
    color: #fff;
    border-radius: 30px;
    border: none;
}

.call-to-contact-us.apna-contact-btn a:hover{
	background: #fff;
	color: black;
	transition: all 0.3s ease-in-out;
}

.call-to-contact-us.apna-contact-btn-two a {
    padding: 10px 26px;
    background: #fff;
    color: black;
    border-radius: 30px;
    border: none;
}

.call-to-contact-us.apna-contact-btn-two a:hover{
	background-color: #0d9347;
	color: #fff;
	transition: all 0.3s ease-in-out;
}

.apni-class-new-about-btn-one a {
    padding: 10px 26px;
    background: #aa1e23 !important;
    color: #fff;
    border-radius: 30px;
}

.apni-class-new-about-btn-one a:hover{
	background-color: #0d9347 !important;
	color: #fff;
	transition: all 0.3s ease-in-out;
}

.apni-class-new-about-btn-two a {
    background-color: #0d9347 !important;
    padding: 10px 26px;
    border-radius: 30px;
    color: #fff;
}

.apni-class-new-about-btn-two a:hover{
	background: #aa1e23 !important;
    color: #fff;
	transition: all 0.3s ease-in-out;
}

img.simple-icon {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

form.wpcf7-form.init p {
    margin-bottom: 6px !important;
}
.top-car-form .g-recaptcha div{margin: auto;}
.hg-30 img{height: 30px;}

.logo-brand-img img {
    width: 100%;
    height: 120px;
    object-fit: contain !IMPORTANT;
}
.d-flex.bg-light.py-5.px-4 {
    min-height: 300px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary.w-100.py-3 {
 
    width: 50% !important;
    margin: auto !important;
}
.navbar-light .navbar-toggler {
    color: rgb(0 0 0 / 74%);
    border-color: rgb(0 0 0 / 92%);
    border-radius: 4px;
    padding: 6px;
    font-size: 15px;
}

.wpcf7-spinner {   
    margin: 0 2px !important;
  
}
.logo-brand-img {margin: 1rem auto;}

.display-3{
	font-size: 3.2rem !important;
}

.form-floating.my-cleres textarea#message {
    height: 100px;
}
iframe {
    height: 446px;
}
h6, .h6 {
    font-size: 1.2rem;
}
@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 2.3rem;
    }
}


.buy-car-content h3 {
    color: #0d9347 !important;
}
.container-xxl.py-5.japanese-car-part h4 {
    color: #0d9347;
}

.testimonial-text {
    display: flex;
    align-content: center;
    align-items: center;
}
button.nav-link.w-100.d-flex.align-items-center.text-start.p-3.mb-4 i {
    display: none;
}
.container-fluid.bg-secondary.booking.wow.fadeInUp.apni-booking-clr-class .call-to-contact-us.apna-contact-btn-two a {
   background: #aa1e23;
   color: #ffffff;
}
.car-social-media-icons.py-3.d-flex.align-items-center a:nth-child(2) {
 background: #0d9347
}
section.business-detail-sec.padd-sec {
    padding-top: 70px;
}
.container-fluid.bg-dark.text-light.footer.pt-5.wow.fadeIn.my-btn-class .text-light {
    color: #0d9347 !important;
}
.bg-primary.h-100.d-flex.flex-column.justify-content-center.text-center.p-5.wow.zoomIn.my-background-class .col-12.col-sm-6 {
    width: 100% ! IMPORTANT;
    border-radius: 10px;
}
.bg-primary.h-100.d-flex.flex-column.justify-content-center.text-center.p-5.wow.zoomIn.my-background-class {
    width: 500px;
    float: inline-end;
    padding: 15px !important;
}
.bg-primary.h-100.d-flex.flex-column.justify-content-center.text-center.p-5.wow.zoomIn.my-background-class form.wpcf7-form.init p {
    margin-bottom: -4px !important;
}
.bg-primary.h-100.d-flex.flex-column.justify-content-center.text-center.p-5.wow.zoomIn.my-background-class form.wpcf7-form.init .text-center {
    text-align: center !important;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.two-boxs ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    width: 100%;
    margin: 15px 0 0;
    padding-left: 0;
}

.two-boxs ul li {
    width: 31.5%;
    padding: 30px 20px;
    background: #eee;
    border-radius: 20px;
    font-size: 14px;
    line-height: normal;
    margin: 0;
    line-height: 21px;

}
.two-boxs ul li:hover{
    background: #aa1e23;
    color: #fff;
    transition: ease all 0.5s;
}
.two-boxs ul li i{
    color: #aa1e23 !important;
    font-size: 45px;
    margin-bottom: 5px;
}
.two-boxs ul li:hover i{
    color: #fff !important;
}
.two-boxs ul li:hover .hdn{color: #fff;}
.two-boxs ul li .hdn{font-weight: bold;font-size: 18px;color: #aa1e23;margin-bottom: 5px;}
@media only screen and (max-width: 786px) {
.col-10.col-lg-7.text-center.text-lg-start {  
    width: 100% !important;
}
/* 	.call-to-action-btn.mt-4.d-flex.justify-content-start.align-items-center.gap-3 {   
    flex-direction: column-reverse;
} */
	.call-to-contact-us.apna-contact-btn-two {    
    padding: 10px;
}
	
	.display-3 {
    font-size: 2.6rem !important;
}
	    .top-car-form {      
        height: auto !important;
    }
	.top-car-form {
        position: revert;       
    }
	.top-car-form {    
    max-height: 640px;
    height: 540px;
}
.two-boxs ul li {width: 46%;}
}
@media only screen and (max-width: 480px) {
/* .apni-class-new-about-btn.d-flex.justify-between-start.align-items-center.gap-3 {
    display: flex;
    flex-direction: column-reverse;
    align-content: flex-start;
   
} */
	img.simple-icon {
    width: 42px;
    height: 42px;
    object-fit: cover;
}
	.apni-class-new-about-btn-one a {
    padding: 10px 12px !important;   
		
}
	.call-to-contact-us.apna-contact-btn a {
    padding: 10px 14px  !important;  
}
	.apni-class-new-about-btn-two a {   
    padding: 10px 12px !important;    
}
	.bg-primary.h-100.d-flex.flex-column.justify-content-center.text-center.p-5.wow.zoomIn.my-background-class {
    width: auto !important;
    float: inline-end;
    padding: 15px !important;
    width: 100% !important;
    margin-bottom: 45px;
}
.two-boxs ul li {width: 100%;}
}

 /* Green Active Tab Styling */
    .nav-tabs .nav-link.active {
      background-color: #008000 !important;
      color: #fff !important;
      border-color: #008000 !important;
    }

    .nav-tabs .nav-link {
      color: #333;
      font-weight: 600;
      border: 1px solid #ddd;
      margin-right: 5px;
      border-radius: 5px 5px 0 0;
      transition: 0.3s;
    }

    .nav-tabs .nav-link:hover {
      background-color: #f2f2f2;
      color: #008000;
    }

    .tab-content {
/*       border: 1px solid #ddd; */
      border-top: none;
      padding: 20px;
      background: #fff;
    }

.container-xxl.service.py-5.my-btn-bg-class button {
    background-color: #aa1e23;
    color: white;
}
ul#carTabs {
    text-align: center;
    display: flex;
    justify-content: center;
    border: 0px !important;
}
 p> a{
	color: #D81324 !important;
}
.container-xxl.service.py-5.my-btn-bg-class.my-apni-class-clr li {
    list-style: none;
}

