/* font Family  */
@font-face {
    font-family: ibm;
    src: url(../font/IBMPlexSans-VariableFont_wdth\,wght.ttf);
}

@font-face {
    font-family: gruppo;
    src: url(../font/Gruppo-Regular.ttf);
}

@font-face {
    font-family: mont;
    src: url(../font/Montserrat-VariableFont_wght.ttf);
}
body{overflow-x: hidden;}

:root {
    --primary-text: #000;
    --secondary-text: #fff;
    --white-text-white: #fff;
    --black-text-black: #000000;
}

.navbar-top {
    background: rgb(0, 0, 0);
    background: linear-gradient(214deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 45%, rgba(141, 157, 165, 1) 100%);
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.navbar-top p {
    margin-bottom: 0 !important;
    font-family: ibm;
}

.navbar-top p a {
    color: #2DCB6C;
}

.navbar {
    background: #fff;
    box-shadow: 0 4px 6px rgba(22, 22, 26, 0.18);
    position: sticky;
    top: 0px;
    z-index: 9;
}

.navbar .navbar-nav .nav-link {
    color: #363636;
    font-family: ibm;
    font-size: 18px;padding-right: 0px;
}

.nav-dropdown {
    font-family: 'ibm';
    color: #363636;
    text-decoration: none;
    font-size: 19px;
    position: relative;
    padding: 10px;
    top: 7px;
}

.btn-outline-dark {
    border-radius: 0;
}

.btn-outline-dark:focus {
    box-shadow: none;
}

.navbar .nav-item {
    position: relative;
    overflow: hidden;
    margin: 0 5px;
}

.navbar .nav-link {
    position: relative;
    color: #000;
    transition: transform 0.4s ease-in-out;
}

.navbar .nav-link::after {
    content: attr(data-text);
    position: absolute;
    left: 8.5px;
    top: 100%;
    width: 100%;
    color: #363636;
    transition: transform 0.4s ease-in-out;
}

.navbar .nav-item:hover .nav-link {
    transform: translateY(-30px);
}

.navbar .nav-item:hover .nav-link::after {
    transform: translateY(-30%);
}

/* Optional: Add background and border radius on hover */
.navbar .nav-item:hover,
.nav-dropdown:hover {
    background-color: #f7f7f7 !important;
    border-radius: 5px !important;
    color: #363636;
}


.navbar .nav-item .nav-link i {
    font-size: 15px;
    margin-left: 8px;
    color: #363636;
}

.enq-btn {
    background: #181E22;
    color: #fff;
    padding: 8px 32px 8px;
    border-radius: 30px;
    font-family: 'ibm';
    font-size: 16px; text-decoration: none;
}
.enq-btn:hover{color: #fff;}

.hero {
    position: relative;
    background: url(../img/banner-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    width: 100%;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.2);*/
    /* Black overlay with 50% opacity */
}

.hero-content {
    position: relative;
    z-index: 5;
}

 .img-box-main img {
    height: 600px;
    width: auto;
    position: absolute;
    top: 20px;
    right: 80px;
}

.hero-content h1 {
    font-family: gruppo;
    color: #fff;
    font-size: 75px;
    font-weight: 400;
    line-height: 70px;
}

.hero-content p {
    color: #ffffff9c;
    font-family: ibm;
    font-size: 15px;
    width: 60%;
    font-weight: 300;
}

.hero-content .heading {
    
    margin-top: 150px;
}

/* video section style  */

.video {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-box {
    width: 100%;
    height: 670px;
    z-index: 1;
    overflow: hidden;
    /* Prevents overflow */
}


.video-box video {
    position: absolute;
    /* Ensures video fully covers the parent */
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures video scales properly */
    transform: translate(-50%, -50%);
    /* Centers the video */
}

.video-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    z-index: 2; text-align: center;
}

.video-info img {
    height: 90px;
    width: 90px;
}

.video-info h2 {
    font-family: gruppo;
    color: #fff;
    font-size: 65px;
    font-weight: 400;
    width: 60%;
    text-align: center; margin: 0 auto;
}

.details-section {
    padding: 50px 0;
}

/* details img */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* Two equal columns */
    grid-template-rows: 1fr 1fr;
    /* Two equal rows */
    padding: 1rem;
    height: 400px;
    /* Set a fixed height for the entire grid */
    margin: 80px auto 50px;
}

.image-section,
.content-section,
.details-section {
    border: 1px solid #000;
    padding: 1rem;
}

.image-section {
    border-right: none;
}

.details-section {
    border-top: 0;
}

/* Image section taking full height */
.image-section {
    grid-row: span 2;
    /* Makes it take full height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section img {
    max-width: 100%;
    height: 100%;
    /* Ensure it stretches to full height */
    object-fit: cover;
}

/* Content section takes half height */
.content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-column: span 1;
    grid-row: span 1;
    /* Takes half height */
    font-family: ibm;
    padding: 20px 40px;
}

.content-section h2 {
    font-family: 'ibm';
    font-weight: 400;
    font-size: 28px;
}

.content-section p {
    color: #0000008f;
    font-family: 'ibm';

}

/* Details section takes half height */
.details-section {
    grid-column: span 1;
    grid-row: span 1;
    /* Takes half height */
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    border-top: 1px solid #ccc;
}

/* Button styling */
.details-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: ibm;
    font-size: 18px;
}

.plus-icon {
    background-color: #1a3d12;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    padding-bottom: 1px;
    margin-right: 15px;
}

/* category section  start  */
.category {
    background: url('../img/category-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 40px 0;
}

.category h2 {
    color: #fff;
    font-family: 'ibm';
}

.category .filter-btn {
    background: black;
    color: #ebebeb;
    border: navajowhite;
    font-family: 'ibm';
    text-transform: uppercase;
    margin-right: 20px;
    position: relative;
}

.category .filter-btn::after {
    content: "";
    position: absolute;
    left: 5px;
    bottom: -5px;
    width: 40%;
    /* Full width of the button */
    height: 2px;
    /* Thickness of the border */
    background-color: #fff;
    /* Border color */
    transform: scaleX(0);
    /* Initially hidden */
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}


/* Effect on hover */
.category .filter-btn:hover::after {
    transform: scaleX(1);
    /* Expand the border */
}

.category .active-btn::after {
    transform: scaleX(1);
    /* Expand the border */
}

.passenger-section,
.loader-section {
    display: none;
    position: relative;
}

.active-section {
    display: block;
}

.passenger-section .slick-slide img {
    display: block;
    height: 530px;
}

.element {
    max-width: 1200px !important;
}


.passenger-section .slick-slide {
    transition: transform 0.3s ease-in-out;
}

.passenger-section .slick-center {
    transform: scale(1.3);
    /* Slightly enlarge the center slide */
}

.read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 15px;
}

.read-more img {
    height: 10px !important;
    margin-right: 13px;
}

.category-content {
    width:100%;
    margin-bottom:20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.category-content p {
    margin-bottom: 0;
    color: #fff;
    font-family: ibm;
}

.category-content h3 {
    font-size: 18px;
    color: #fff;
    font-family: 'ibm';
}

.prev-button,
.next-button {
    background-color: transparent;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 24px;
    cursor: pointer;
    margin: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-button {
    position: absolute;
    right: 50%;
    bottom: -50px;
}

.prev-button {
    position: absolute;
    left: 42%;
    bottom: -50px;
}

.prev-button:hover,
.next-button:hover {
    background-color: #555;
}

/* category section  end */

/* leading Section Start   */
.leading {
    padding: 50px 0;
}

.leading h2 {
    font-size: 35px;
    font-weight: 400;
    font-family: ibm;
    margin-bottom: 40px;
}

.Manufacturer-details .learn-more {
    border: none;
    color: #000;
    background: transparent;
    border-radius: 20px;
    padding: 5px 10px;
    border: 1px solid #474747;
    font-family: ibm;

}

.Manufacturer-details {
    padding: 40px;
    color: #000;
    cursor: pointer;
}

/* .Manufacturer-details:hover {
    background-color: #848181;
    color: #fff;
} */
/* .active {
    background-color: #000;
    color: #fff;
} */

.Manufacturer-details:hover .learn-more {
    background-color: #fff;
}

.active .learn-more {
    background-color: #fff;
}

.Manufacturer-details h3 {
    font-family: ibm;
    font-size: 22px;
}

.Manufacturer-details p {
    font-family: ibm;
    font-size: 15px;
}

/* leading Section End   */

.gallery-box img {
    height: auto;
    width: 100%;
    object-fit: contain;
    margin-bottom: 40px;
}

.about {
    padding: 50px 0;
}

.about .about-content {
    margin-top: 80px;
    width: 70%;
    font-family: ibm;
}

.about-img img {
    height: 650px !important;
    width: 100%;
    object-fit: cover;
}

.about .about-content p {
    font-size: 15px;
}

.about .about-content h3 {
    font-size: 22px;
}

.slider-box {
    display: flex;
    flex-direction: column;
}

.slider-box p {
    font-family: ibm;
}

.slider-box img {
    width: 400px;
}

.testimonial h2 {
    font-family: 'ibm';
    font-weight: 400;
}

.testimonial p {
    font-family: 'ibm';
}

.testimonial {
    position: relative;
    background-color: #FAFAFA;
    padding: 50px 0;
}

.testimonial .prev-button {
    color: #000;
    font-size: 18px;
    position: absolute;
    top: 49px;
    left: unset;
    right: 254px;
    background: none;
}

.testimonial .next-button {
    color: #000;
    font-size: 18px;
    position: absolute;
    top: 49px;
    left: unset;
    right: 210px;
    background: none;
}

.testimonial .next-button:hover,
.testimonial .prev-button:hover {
    background: unset;
}

.slider-box p {
    font-family: 'ibm' !important;
    font-size: 15px;
    width:100%;padding: 0 34px; margin-top: 20px;
}
.slider-box h5{padding: 0 34px;}

.slick-slide img {
    display: block;
    margin: 6px 0;
}

.innovation {
    padding: 50px 0;
}

.innovation h2 {
    font-size: 30px;
    font-family: ibm;
    font-weight: 400;
    margin-bottom: 30px;
}

.innovation-sec {
    padding: 30px;
    color: #000;
    font-family: ibm;
    align-items: center;
    justify-content: center;
}

.innovation-sec h3 {
    font-size: 20px;
    font-weight: 400;
    margin-left: 20px;
}

.innovation-sec p {
    font-family: ibm;
}

.innovation-sec h4 {
    font-size: 40px;
    font-weight: 600;
}

.innovation-sec:hover {
    background: url('../img/hover-img.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 70px 30px;
}

/* contact section */
.contact-box {
    position: relative;
}

.contact-text {
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: url('../img/contact-bg.png');
    width: 100% !important;
    padding: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 30px 0;
}

.contact-text h2 {
    font-size: 30px;
    font-family: ibm;
    font-weight: 500;
    color: #fff;
}

.contact-text p {
    margin-bottom: 0;
    font-family: ibm;
    font-size: 15px;
}

.contact-us {
    background: #fff;
    border: none;
    padding: 8px 27px;
    font-family: 'ibm';
    font-weight: 500;
    border-radius: 20px;
    margin-right: 57px;
}

/* Update section */
.update {
    padding: 50px 0;
}

.update h2 {
    font-family: ibm;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
}

.updateBox {
    padding: 15px;
    border: 1px solid #E8E8EA;
}

.updateBox h4 {
    font-size: 18px;
    color: #464646;
    margin: 15px;
}

.updateBox h3 {
    font-family: 'ibm';
    font-weight: 500;
    margin: 0 5px;
}

.updateBox p {
    font-family: 'ibm';
    font-size: 13px;
    line-height: 17px;
    margin: 6px;
    margin-bottom: 10px;
    color: #3e3d3d;
}

.updateBox span {
    font-family: ibm;
    color: #363636;
    font-weight: 500;
}

/* footer start  */

.footer-section {
    background-color: #1E211D;
    position: relative;
    overflow: hidden;
    z-index: 9;
}

/* .footer-section:before {
    content: '';
    position: absolute;
    top: -146%;
    left: -18%;
    width: 44%;
    height: 257%;
    transform: rotate(54deg);
    background-color: rgb(31, 47, 64);
    -webkit-transform: rotate(54deg);
    -moz-transform: rotate(54deg);
    -ms-transform: rotate(54deg);
    -o-transform: rotate(54deg);
    z-index: -10;
  }
  .footer-section:after {
    position: absolute;
    content: '';
    background-color: rgb(31, 47, 64);
    top: -24%;
    right: 4%;
    width: 26%;
    height: 264%;
    transform: rotate(44deg);
    -webkit-transform: rotate(44deg);
    -moz-transform: rotate(44deg);
    -ms-transform: rotate(44deg);
    -o-transform: rotate(44deg);
    z-index: -10;
  } */
.footer-top {
    padding-top: 70px;
    padding-bottom: 50px;
    font-family: ibm;
}

.footer-top p,
.company-footer-contact-list li {
    color: #ffffff;
}

.company-footer-contact-list {
    margin-top: 10px;
}

.company-footer-contact-list li {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.company-footer-contact-list li+li {
    margin-top: 5px;
}

.company-footer-contact-list li i {
    margin-right: 10px;
    font-size: 20px;
    display: inline-block;
}

.footer-top .site-logo {
    margin-bottom: 25px;
    display: block;
    max-width: 170px;
}

.widget-title {
    text-transform: capitalize;
}

.footer-top .widget-title {
    color: #ffffff;
    margin-bottom: 22px;
}

.courses-link-list li+li {
    margin-top: 10px;
}

.courses-link-list li a {
    color: #ffffff;
    text-transform: capitalize;
    font-family: var(--para-font);
    font-weight: 400;
    text-decoration: none;
}

.courses-link-list li a:hover {
    color: #d6cecc;
}

.courses-link-list li i {
    margin-right: 5px;
}

.footer-top .small-post-title a {
    font-family: var(--para-font);
    color: #ffffff;
    font-weight: 400;
}

.small-post-item .post-date {
    color: #ffb606;
    margin-bottom: 3px;
    font-family: var(--para-font);
    font-weight: 400;
}

.small-post-list li+li {
    margin-top: 30px;
}

.news-letter-form {
    margin-top: 15px;
}

.news-letter-form input {
    width: 100%;
    padding: 12px 25px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: none;
}

.news-letter-form input[type="submit"] {
    width: auto;
    border: none;
    background-color: #ffb606;
    padding: 9px 30px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #ffffff;
    margin-top: 10px;
}

.footer-bottom {
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.149);
}

.copy-right-text {
    color: #ffffff;
}

.copy-right-text a {
    color: #ffb606;
}

.terms-privacy li+li {
    margin-left: 30px;
}

.terms-privacy li a {
    color: #ffffff;
    position: relative;
}

.terms-privacy li a:after {
    position: absolute;
    content: '-';
    color: #ffffff;
    display: inline-block;
    top: 0;
    right: -18px;
}

.terms-privacy li+li a:after {
    display: none;
}

.widget ul {
    padding-left: 0 !important;
}

.widget {
    padding: 0 20px;
}

.site-logo img {
    height: 96px;
}

.submit-btn {
    background-color: #0B6E7A;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    margin: 0 10px;
}

.socal p {
    font-size: 20px;
    margin-right: 23px;
}

.socal p a {
    color: #fff;
}
a{text-decoration: none;}

/* footer end  */


.testimonialM {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.testimonialM .modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: #000;
    padding: 20px;
    border-radius: 10px;
}

.testimonialM iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

/* Close Button */
.testimonialM .close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.details-modal .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 145% !important;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
    left: -88px !important;
    top: 96px !important;
}

.custom-dropdown {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    padding: 0;
    margin: 0;
    list-style: none;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
    border-radius: 5px;
}

.custom-dropdown-wrapper {
    position: relative;
    display: inline-block;
    transition: all 0.7s linear;

}


.dropdown-toggle-button {
    background: transparent;
    border: none;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.custom-dropdown-menu {
    position: absolute;
    top: 60%;
    left: -400px;
    background: #F3F2F7 !important;
    width: 90vw;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    display: none;
    z-index: 1000;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.5s ease;

}

.custom-dropdown-wrapper:hover .custom-dropdown-menu {
    display: block;
    transition: all 0.7s linear;
}
.custome-2{
    left: -540px;

}
.left-buttons {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.right-section {
    width: 100%;
}

.menu-cat-button {
    padding: 10px 20px;
    border: none;
    text-align: left;
    cursor: pointer;
    font-weight: 500;
    background: none;
}

.arrow-button {
    background-color: #FBFBFB;
    color: #000;
    border: none;
    border-top: 1px solid #dacece;
    border-bottom: 1px solid #dacece;
    height: 65px;
}

.arrow-button-outline {
    background-color: transparent;
    color: #333;
    border: none;
    border-top: 1px solid #dacece;
    border-bottom: 1px solid #dacece;
    height: 65px;

}

.menu-img img,
.application-box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 30px;
}

.menu-img h2,
.application-box h3 {
    font-size: 16px;
}

.menu-img {
    font-family: ibm;
    color: #000;
    text-decoration: none;
    margin: 10px;
}

.menu-img:hover {
    color: #000;

}

.menu-img h3 {
    font-size: 15px !important;
    margin-top: 5px;

}

.right-section h2 {
    font-size: 19px;
    font-family: 'ibm';
    height: 65px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-top: 1px solid #dacece;
    border-bottom: 1px solid #dacece;
}

/* highlight section */

.highlight {
    padding: 50px;
    background:url('../img/highlight-bg.png') ;
    background-size: cover;
}
.highlight-slider {
    border-right: 2px solid #000;
    padding: 10px 0;
}

.highlight p {
    font-family: ibm;
    font-family: 15px;
    color: #151D2A;
    text-align: center;
    width: 70%;
    margin: auto;
}

.highlight-box {
    margin: 30px auto;
    padding: 40px;
    width: 60%;
}

.highlight-slider h2 {
    font-size: 40px;
    font-family: mont;
    font-weight: 700;
    color: #0B6E7A;
    margin-bottom: 0;
}

.highlight-slider span {
    font-size: 35px;
    font-weight: 700;
    font-family: ibm;
    color: #0B6E7A;
    margin-top: -3px;
}
.highlight-slider h3 {
    font-family: mont;
    font-size: 22px;
    margin-bottom: 0;
    margin-top: 0px;
}
.highlight-slider img{
    height: 70px;
    margin-right: 15px;
}

.highlight .slick-dots {
    list-style: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.highlight .slick-dots li button {
    border: none;
    color: #dcdcdc;
    background: #dcdcdc;
    height: 5px;
    overflow: hidden;
    margin: 0 5px;
    width: 50px;
    border-radius: 5px;
}

.highlight .slick-active button {
    border: none;
    color: #151D2A;
    background: #151D2A !important;
    height: 5px;
    overflow: hidden;
}

.details-section {
    border-top: 0 !important;
}



.bussiness-box img {
    height: 530px;
    width: 95%;

}

.bussiness-box {
    position: relative;
}

.bussiness-box p {
    position: absolute;
    top: 40px;
    left: 40px;
    font-family: ibm;
    color: #202020;
    font-size: 22px !important;
}

.bussiness h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.update span {
    color: #000;
}

.update .date {
    font-family: mont;
    color: #3e3d3d;
}

.blog-box h3 {
    font-family: ibm;
    font-size: 22px;
    line-height: 30px;
    text-overflow: ellipsis;
}

.blog-box p {
    font-family: ibm;
    font-size: 15px;
    color: #9C9C9C;
}

.blog-btn {
    border: none;
    background: #F4F4F4;
    font-family: ibm;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #363636;
    border-radius: 20px; display: inline-block;
}
.blog-btn:hover{color: #363636;}

.accordion-body ul li a {
    color: black;
    font-weight: 700;
}

.faq-section .accordion {
    width: 100%;
}

.accordion-button:not(.collapsed) {
    /* background-color: #c5e5d8;*/
    background-color: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: none;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:before {
    content: "";
    position: absolute;
    /* right: 0.75rem; */
    left: -0.75rem;
    top: 29px;
    height: 2px;
    width: 1rem;
    background-color: var(--primary-text);
}
.accordion-button.collapsed:after {
    content: "";
    position: absolute;
    /*   right: 1.1875rem; */
    left: -5px !important;
    top: 22px;
    height: 1.0625rem;
    width: 0.125rem;
    border-style: none;
    background-color: var(--primary-text);
    margin: 0 !important;
}

.faq-section .accordion-button h5 {
    color: var(--primary-text);
    margin-right: 13px;
    font-size: 19px;
}

.accordion-body {
    background-color: var(--secondary-text);
}

/* button:focus:not(:focus-visible) {
      outline: 0;
  } */

/* list */
ul {
    list-style-type: none;
    list-style-type: disc;
    /* Default bullet points for ul */
    margin-left: 20px; color: #fff;
}

ul li {
    margin-bottom: 5px;
}

.accordion-body ol {
    counter-reset: step-counter;
    list-style-type: none;
    padding-left: 0;
}

.accordion-body ol>li {
    counter-increment: step-counter;
    /* Increment custom counter */
    margin-bottom: 10px;
}

.accordion-body ol>li::before {
    content: "Steps " counter(step-counter) ": ";
    /* Custom prefix */
    font-weight: bold;
}

.accordion-item {
    border: none !important;
    box-shadow: 2px 2px 5px #78787874 !important;
    margin: 10px !important;
    padding: 5px !important;
    padding-left: 40px !important;
}


.float {
    position: fixed;
    width: 248px;
    height: 60px;
    bottom: 120px;
    right: 40px;
    background-color: #fff;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    display: flex;
    z-index: 90;
    text-decoration: none;
    color: #000;
    align-items: center;
    padding: 0 25px;
}
.float2 {
    position: fixed;
    width: 136px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #fff;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    display: flex;
    z-index: 90;
    text-decoration: none;
    color: #000;
    align-items: center;
    padding: 0 25px;
}
.float2:hover ,.float:hover {
    color: #000;
}
.float2 img , .float img{
    height: 35px;
}
.float2 p , .float p{
    font-family: ibm;
    font-weight: 500;
    font-size: 18px;
    margin-left: 10px;
}

.my-float{
	margin-top:22px;
}
.heading{
    font-size: 30px;
    font-family: ibm;
    font-weight: 600;
}
.contact-info p{
    font-family: ibm;
    font-size: 14px;
    margin-left: 18px;
}
.contact-info{
    margin: 10px 0;
}
.circle{
    height: 25px;
    width: 25px;
    background: #0B6E7A;
    line-height: normal;
    border-radius: 50%;
    color: #fff;
    padding: 2px;
    margin-right: 10px;
}
.close-btn-custome{
    position: absolute;
    bottom: -62px;
    right: 0;
    display: flex;
    background-color: #fff !important;
    border: none;
    padding: 15px 20px;
    border-radius: 27px;
    font-family: ibm;
}

.accordion-button:not(.collapsed){
    background-color: transparent !important;
}

  /* related product style */

  .image-box {
    position: relative;
    overflow: hidden;
    margin: 15px 0 !important;
    flex: 1;
  }
  
 .image-wrapper  {
  position: relative;
  overflow: hidden;
  height: auto;
  width: 95%;
}
  
.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .image-wrapper:hover img {
    transform: scale(1.1);
  }
  
  .image-wrapper  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6); /* dark background */
    color: white;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease-in-out;
    padding-top: 70%;height: 97%;
  }
  
  .image-wrapper:hover .overlay {
    opacity: 1;
    transform: translateY(0);
  }
  
  .title {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    font-family: ibm;
  }
  
  .view-details {
    font-family: ibm;
    border: none;
    background-color: #278f9b;
    color: #fff;
    margin-top: 5px;
    padding: 5px  10px 6px;

  }
    .view-details:hover{  background-color: #278f9b;
    color: #fff;}
  .breadcrumb a{
    text-decoration: none;
    color: #000;
    font-family: 'ibm';
    margin: 0 10px;
    font-size: 15px;
  }
  .breadcrumb{
    position: relative;
    left: 0;
  }

  .accordion-button:not(.collapsed)::after{
    display: none !important;
  }
  .form-control , .form-select{
    height: 50px !important;
    padding: 7px 16px !important;
  }

  .slick-prev:before, .slick-next:before{
    color: #fff !important;
    font-size: 30px !important;
    opacity: unset !important;
  }

  .footeraimgaes .slick-prev {
    left: 24px !important;
    top: 45% !important;
    z-index: 55 !important;
  }
  .footeraimgaes .slick-next {
    right: 24px !important;
    top: 45% !important;
    z-index: 55 !important;
  }

  /* why choose us sstyle */

  .why-choose-us{
    background-color: #edf1f3;
    padding: 50px 0;
  }
  .whyChooseUsImg{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .whyChooseUsImg img{
    height: 560px;
    width: auto;
  }
  .whychooseuscontent{
    margin: 30px;
    margin-left: 50px;

  }
  .whychooseuscontent h2{
    font-family: ibm;
    font-size: 37px;
    font-weight: 400;
  }
  .whychooseuscontent p{
    font-family: ibm;
    font-size: 15px;
  }
  .pointer{
    display: flex;
    align-items: start;
    justify-content: center;
  }
  .pointer img{
    height: 50px;
    width: 50px;
    margin: 20px;
    margin-left: 0;
  }
  .pointer h3{
    font-family: 'ibm';
    font-size: 23px;
    font-weight: 500;
    margin-top: 20px;
  }
  .pointer p{
    font-family: ibm;
    font-size: 15px;
  }
.readmorebtn{
    border: none;
    background: #fff;
    font-family: 'ibm';
    width: 200px;
    height: 44px;
    border-radius: 20px;
    margin-left: 50px;
    margin-top: 20px;
}
.index .footeraimgaes .slick-prev {
    top: 50% !important;
}
.index .footeraimgaes .slick-next {
    top: 50% !important;
}

.Faq .footeraimgaes .slick-next{right: 43px !important;}

.location_sec {

    background: #FAFAFA;
    border-radius: 10px;
}




.submit-btn {
  background: #0B6E7A !important;

  color: #fff !important;

  padding: 8px 32px 8px !important;

  border-radius: 50px !important;

  font-family: 'ibm';

  font-size: 16px;

  text-decoration: none;

}

/*locate ride side css*/

.InnerArea{background: #F3F3F3}
.store-info-box {
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-flex: 0;
  flex: 0 0 33%;
  margin-bottom: 18px;
}
.store-info-box .outlet-detail {
  height: 100%;
  padding: 8px 10px 60px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #dcdfe8;
  background-color: #fff;
  font-size: 14px;
}
.outlet-detail .outlet-name {
  border-bottom: 1px solid #dcdfe8;
  margin-bottom: 12px;
  font-size: 14px;
  padding-bottom: 7px;
  position: relative;
}

.outlet-detail .outlet-name .info-text {
  font-size: 14px; font-weight: bold;
}
.outlet-detail li{display: flex; margin-bottom: 10px;}
.list-unstyled.outlet-detail{background: #fff; color: #000; padding: 12px; margin-left: 0px;}
.mapBtn {
  border: 1px solid #0B6E7A;
  border-radius: 5px;
  padding: 6px 39px;
  color: #0B6E7A;
  font-size: 14px;
  text-decoration: none;
  margin-top: 10px;transition: all 0.3s linear; -moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
}
.mapBtn:hover{background: #0B6E7A; color: #fff; transition: all 0.3s linear; -moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;}
.info-icon i{color:#0B6E7A}

.w-90 {

    width: 106% !important;
}

/* 600px mediaa */
@media screen and (max-width: 600px) {
    
   .imp-info .col {
       border:1px solid #706b6b;
        padding-top: 17px;
   } 
    
    
.tab-container{display:block !important; border-bottom: 2px solid transparent !important;}
.tab-text.active::after { bottom: 0 !important;}
.tab-content img{height:auto !important;}
.tab-content h3{margin-top: 52px;}
.tab-container .tab-item{width: 48% !important;    display: block !importan;    float: left;}
.list label{display:none !important;}
.detail-box{margin:0px !important;}
.list{height:auto !important;}
.detail-box .text-sec{    margin-left: 0 !important;}
.details h2{left: 97px !important;    margin-top: 156px !important; top:0 !important;}
.details h1{    margin-top: 196px !important; margin-left: 29px; top: 0 !important; font-size: 27px !important; left:0px !important;}
.details .main-enq-btn{text-align: center;top: 262px !important;
    left: 77px !important;}
.line{background-color: transparent !important;}




.custom-dropdown-menu{left:0px;}
.menu-img{margin:0px;}
.menu-img h3{margin-top:17px;}

    .w-90 {
    width: 104% !important;
}
 

.dealership h2 {

    font-size: 30px;
}
   
 .img-box-main img {

     width:100%;
    position: relative;
    top: 97px;
    height: auto;
    right: auto;


       }


 .hero-content .heading {
    margin-top:53px;
}

.img-box-main {

    margin-top: -118px;
    position: relative;
    left: 10px;
}


.hero {
   
    height:36vh;
}

.heading h1 {

   font-size:29px !important;
   line-height: 46px;
    }


.heading {
    text-align: center;
}


.hero-content p {
    text-align: center;
    font-size: 14px !important;
    width: 100% !important;
}

.highlight p {

    width: 100%;
}

.highlight-slider {
    border-right:0;
    padding:0;
}

.Manufacturer-details p {
    font-family: ibm;
    font-size: 18px;
}


.footer-top p {
    color: #ffffff;
    font-size: 18px;
}

.video-info h2 {
   
    font-size: 42px;
   
}


.about-main p {

    width: 100% !important;
}

.mission p {

    text-align: center;
    padding-right: 0 !important;
}

.mission h2 {
    text-align: center;
}

 .content p {
    margin-right: 0 !important;
}

.SeeHow p {
    width: 100% !important;
}

.whyChooseUs .content {

    text-align: center !important;
}
.whyChooseUs .content p{margin-right: 0px;}

.ourTeam h2 {
    font-size: 33px;
    text-align: center;
    line-height: 44px;
}

  .ourTeam p {
    padding-right: 0px !important;
    width: 100% !important;
    text-align: center;
}

.SeeHow p {

     padding-right: 0px !important;

}

.image-row {
  display: block !important;
}


.imagebox {
 width: 50% !important;
 float: left;


}


.imagebox.active {
 width: 50% !important;
}

.whyChooseUs .content p {

    margin-right: 0 !important;
}

.find-dealer {
    padding: 14px 0;
}


.heading {
    font-size: 24px;
    font-family: ibm;
    font-weight: 600;
}

.dealership h2 {

    font-size: 24px !important;

}

.faq-section .accordion-button h5 {
    
    font-size: 16px;
}
.image-row{height: auto !important;}
.footer-top{padding-top: 20px;}
.widget{padding: 0px;}
.site-logo img{height: 65px;}
.ourTeam{margin: 0px !important;}
.whyChooseUs .content h2, .SeeHow h2, .ourTeam h2{margin-bottom: 0px !important;}
.ourTeam h2{ font-size: 29px !important;}
.imagebox img{height: 249px !important;}
.passenger-section .slick-slide img {
    display: block;
    height: auto;
    width: 100%;
}
.highlight-slider h2{ font-size: 30px;}

.SeeHow{margin: 0px; padding-top: 0px;}

.bussiness-box img {
    height: auto;
    width: 100%;
}
.slick-slide img{width:300px !important; height:auto !important;}


.testimonial .prev-button {
    color: #000;
    font-size: 18px;
    position: absolute;
    top: 49px;
    left: unset;
    right: 39px;
}


.testimonial .next-button {
    color: #000;
    font-size: 18px;
    position: absolute;
    top: 49px;
    left: unset;
    right: 8px;
}

.bussiness h2 {
    font-size: 23px;
    margin-bottom: 20px;
}

.innovation {
    padding:0;
}

.navbar-top p {
    margin-bottom: 0 !important;
    font-family: ibm;
    font-size: 11px;
}

.leading h2 {
    font-size: 25px;
    font-weight: 400;
    font-family: ibm;
    margin-bottom: 0;
}

.Manufacturer-details {
    padding: 20px;
    color: #000;
    cursor: pointer;
}

.whychooseuscontent h2 {
    font-family: ibm;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
}

.innovation h2 {
    font-size: 26px;
    font-family: ibm;
    font-weight: 400;
    margin-bottom: -1px;
    margin-top: 26px;
}


.why-choose-us {
    background-color: #edf1f3;
    padding: 0px 0;
}


.contact-text h2 {
    font-size: 23px;
    font-family: ibm;
    font-weight: 500;
    color: #fff;
}

.contact-us {
    
    margin-top: 20px;
}

.update { padding: 0;}
.category-content{width: 100%; margin-left: 0; margin-top:10px;}
button.read-more img{display: none !important;}
button.read-more{margin-top: 20px;}
.highlight{ padding: 50px 0; background:none;}
.highlight-slider img{margin-right: 30px;}
.blogpage h1{font-size: 26px; line-height: 37px;}

  .prev-button {
        left: 34% !important;
      }
      .next-button {
        right: 34% !important;
      }
.testimonial .prev-button{ left: 74% !important;}
.testimonial .next-button { right: 0 !important;}


}



/*blog details css*/

.blog-details-content ul{ padding:0; margin:0; color:#242424; }

/* home carousal */
.category {
        padding: 40px 0;
      }
      .category h2 {
        text-align: center;
        margin-bottom: 20px;
      }
      .filter-btn {
        background: #444;
        color: #fff;
        padding: 8px 16px;
        margin: 0 5px;
        border: none;
        cursor: pointer;
        border-radius: 4px;
      }
      .filter-btn.active {
        background: #f00;
      }
      .category-content {
        padding: 15px;
        text-align: center;
      }
      .read-more {
        background: #f00;
        color: #fff;
        border: none;
        padding: 6px 12px;
        cursor: pointer;
        border-radius: 4px;
      }
      .slick-slide img {
        width: auto;
        height: 450px;
        margin: 0 auto;
        display: block;
        border-radius: 8px;
        object-fit: contain;
    }
      .slider-wrapper {
        position: relative;
        margin-top: 20px;
        display: none;
        }
        .slider-wrapper.active-section {
        display: block;
        }

      /* arrows at bottom */
      .prev-button,
      .next-button {
        position: absolute;
        bottom: -60px;
        background: #000;
        color: #fff;
        border: none;
        padding: 10px 14px;
        cursor: pointer;
        border-radius: 50%;
        z-index: 5;
      }
      .prev-button {
        left: 45%;
      }
      .next-button {
        right: 45%;
      }

      /* hide sections by default */
      .passenger-section,
      .loader-section {
        display: none;
      }
      .active-section {
        display: block;
      }
      
      /*animation css add 27-10-25*/
      
.fadeInUp{animation:fadeInUp 1s ease backwards;}
@keyframes fadeInUp{
  0%{transform:translate(0px, 100px); opacity: 0;}
  100%{transform:translate(0px, 0); opacity: 1;}
}

.fadein {
  opacity: 0;
  transition: all 1.5s;
  transform: translate(0, 100px);
}

.fadein.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/*add product listing css*/
.ProductList{padding:50px 0;}
.ProductBox{border:1px solid #ebebeb; text-align:center; background:#f6f6f6; padding:10px;}
.ProductBox h4{font-size:20px;}
.PdtlBtn{background: #146c78;
    border-radius: 30px;
    padding: 6px 20px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 24px;}
    .PdtlBtn:hover{color:#fff;}
.ImgBox{width:100%; height:220px;}
.ImgBox img{width:100%; height:220px; object-fit: contain;}

/*warenty table css*/

.WarentyTable table {
	width: 100%;
	border-collapse: collapse;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(0,0,0,0.1); background:#dcdcdc;    border-radius: 11px;
}

.WarentyTable th,
.WarentyTable td {
	padding: 15px;
	background-color: rgba(255,255,255,0.2);

}

.WarentyTable td{color:#000;}

.WarentyTable th{background-color:#0b707d;	color: #fff;     margin-top: 18px;}

th {
	text-align: left;
}

thead {
	th {
		background-color: #55608f;
	}
}

tbody {
	tr {
		&:hover {
			background-color: rgba(255,255,255,0.3);
		}
	}
	td {
		position: relative;
		&:hover {
			&:before {
				content: "";
				position: absolute;
				left: 0;
				right: 0;
				top: -9999px;
				bottom: -9999px;
				background-color: rgba(255,255,255,0.2);
				z-index: -1;
			}
		}
	}
}




