@font-face {
    font-family: Proxima Nova;
    src: url("../fonts/proximaNova/Proxima/ Nova/ Font.otf")
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Proxima Nova', sans-serif;


}

body::-webkit-scrollbar {
    width: 5px
}

body::-webkit-scrollbar-track {
    background-color: #6f6f6f
}

body::-webkit-scrollbar-thumb {
    background-color: #f2a241
}

body {
    background-color: #fffaf5;
}

.homeMain {
    position: relative;
    background-color: #fffaf5;
}

.eachCard {
    display: flex;
    width: 100%;
    padding: 0 0 0 6%;
    margin-bottom: 40px;
}

.eachCard-main {
    position: relative
}

.HomeSec1-whitespace {
    background-color: #fffaf5;
    padding: 3%
}

.eachCard>p {
    font-size: 23px;
    color: #6f6f6f
}

.homeSection1 {
    padding: 1% 15px 0;
    background-repeat: no-repeat;
    background-position: right;
    background-position: calc(100% - 20px) 20px;
    background-color: #fffaf5;


}

.homeSectionOwlPart .owl-carousel .owl-item .hornsimg img {
    display: inline-block;
    width: 21%;
    align-self: center
}

.homeSectionOwlPart .owl-carousel .owl-item .hornsimg img:nth-of-type(2) {
    margin: -27% 0 0
}

.homeSectionOwlPart .owl-carousel .owl-item .hornsimg img:nth-of-type(3) {
    margin: -15% 0 0
}

.homeSec1-Part1 {
    width: 80%;
    padding: 5% 0 0;
}

.horizontal-image {
    position: relative;
    text-align: center;
    width: 100%; /* Set the width of the container */
}

.horizontal-image img {
    display: block;
    width: 100%; /* Occupy the full width of the container */
    height: 0%; /* Set the height based on a 16:9 aspect ratio */
    object-fit: cover; /* Maintain aspect ratio and cover the container */
    opacity: 0.7;
}


.image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    padding: 10px 20px;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .image-text {
        font-size: 30px; /* Decrease font size for smaller screens */
    }
}

/* Media query for larger screens */
@media screen and (min-width: 1200px) {
    .image-text {
        font-size: 60px; /* Increase font size for larger screens */
    }
}

.scroll-icon {
    position:relative;
    bottom: 300px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
}
.scroll-icon img {
    width: 40px; /* Adjust size as needed */
    height: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    
}
/* Default style for .scroll-icon */
.scroll-icon {
    position: absolute;
    bottom: 300px; /* Default position */
    left: 50%;
    transform: translateX(-50%);
}

/* Media query for laptop views */
@media screen and (min-width: 1500px) and (max-width: 1600px) {
    .scroll-icon {
        bottom: 36%; /* Adjust position to desired value */
    }
}



/* Media query for laptop views */
@media screen and (min-width: 1400px) and (max-width: 1500px) {
    .scroll-icon {
        bottom: 35%; /* Adjust position to desired value */
    }
}

@media screen and (min-width: 1300px) and (max-width: 1400px) {
    .scroll-icon {
        bottom: 34%; /* Adjust position to desired value */
    }
}

@media screen and (min-width: 1200px) and (max-width: 1300px) {
    .scroll-icon {
        bottom: 33%; /* Adjust position to desired value */
    }
}

@media screen and (min-width: 1100px) and (max-width: 1200px) {
    .scroll-icon {
        bottom: 32%; /* Adjust position to desired value */
    }
}

@media screen and (min-width: 1000px) and (max-width: 1100px) {
    .scroll-icon {
        bottom: 32%; /* Adjust position to desired value */
    }
}

@media screen and (min-width: 957px) and (max-width: 1000px) {
    .scroll-icon {
        bottom: 31%; /* Adjust position to desired value */
    }
}

@media screen and (min-width: 900px) and (max-width: 957px) {
    .scroll-icon {
        bottom: 20%; /* Adjust position to desired value */
    }
}

@media screen and (min-width: 800px) and (max-width: 900px) {
    .scroll-icon {
        bottom: 15%; /* Adjust position to desired value */
    }
}

@media screen and (min-width: 768px) and (max-width: 800px) {
    .scroll-icon {
        bottom: 15%; /* Adjust position to desired value */
    }
}
/* Media query to hide the scroll icon for smaller screens */
@media screen and (max-width: 768px) {
    .scroll-icon {
        display: none; /* Hide the scroll icon for smaller screens */
    }
}
/* @media screen and (max-width: 955px) {
    .scroll-icon {
        display: block;
        bottom: 18%; 
    }
}

@media screen and (max-width: 1150px) {
    .scroll-icon {
        display: block;
        bottom: 30%; 
    }
} */


/* Keyframes for fading in */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Keyframes for blinking */
@keyframes blink {
    0%, 100% {
        opacity: 0; /* Start and end with opacity 0 */
    }
    50% {
        opacity: 1; /* Middle of animation, opacity 1 */
    }
}
/* Apply animations to elements */
.horizontal-image {
    opacity: 0; /* Initially hide the entire container */
    animation: fadeIn 2s ease forwards; /* Apply fadeIn animation */
}

.image-text {
    opacity: 0; /* Initially hide the image text and scroll icon */
    animation: fadeIn 2s ease forwards; /* Apply fadeIn animation */
}

.scroll-icon img{
    opacity: 0; /* Initially hide the image text and scroll icon */
    animation: fadeIn 2s ease forwards; /* Apply fadeIn animation */
}

/* Delay the animations */
.image-text {
    animation-delay: 1s; /* Delay the start of image-text animation by 1 second */
}

.scroll-icon img {
    animation-delay: 2s; /* Delay the start of scroll-icon animation by 2 seconds */
    animation: fadeIn 2s ease forwards,
}

.scroll-icon img {
   
    animation:  blink 3s infinite;
}




.homeSec1-Part2 {
    width: 55%
}

.homeHead1 {
    font-size: 46px;
    line-height: 52px;
    font-weight: 800;
    color: #000000;
    text-shadow: 2px 2px 4px rgb(249, 249, 249);

}

.homeHead1 span {
    color: #f2a241
}



.homeSec1-Part1>p {
    color: #f2a241;
    font-size: 25px;
    margin: 3% 0 13%;
    color: #333;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
}

.homeSec1-Part1>a {
    text-decoration: none;
    background-color: #f2a241;
    color: #000000;
    font-size: 23px;
    padding: 3% 5%;
    border-radius: 7px
}

#hero-image {
  
  display: block;
  width: 84%;
  margin: o auto 0 auto;
  margin-left: 54px;
  border-radius: 50px;
}

.hornsimg {
    width: 49%;
    display: flex;
    justify-content: space-between;
    height: 200px;
    transform: translate(54%, 194%);
    transition: all .2s;
    position: relative;
    z-index: -1
}


.homeSec2-vehicle {
    display: flex;
    bottom: -6%
}

.homeSectionOwlPart .owl-theme .owl-dots {
    transform: rotate(90deg);
    left: 1%;
    bottom: 24%;
    position: absolute
}

.homeSectionOwlPart .owl-theme .owl-dots .owl-dot.active span {
    background-color: #3dadd2;
    width: 30px
}

.homeSection2head1 {
    position: relative;
    padding: 0 10px 4px;
    display: inline-block;
    font-size: 31px;
    font-weight: 700
}

.homeSection2head1:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    top: -3px;
    right: 50px;
    border: 3px solid #fff
}

.homeSection2head1:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    bottom: -3px;
    right: 50px;
    border: 3px solid #fff
}

.homeSection2 {
    text-align: center;
    margin: 5% 0;
    position: relative;
    padding: 0 4%
}

.homeSection2>p {
    font-size: 23px;
    padding: 1% 31% 0
}

.homsec2-bgtext {
    font-size: 63px;
    color: #d1d1d1;
    opacity: 39%;
    text-shadow: #00000029 0 3px 9px;
    text-align: left;
    position: absolute;
    top: -11%;
    left: 0
}

.sub1Cardimg1Sec {
    display: flex;
    justify-content: space-between;
    padding: 0 0 3%
}

.homsec2-sub1Card {
    margin: 0 5%;
    text-align: left;
    padding: 3% 5%;
    border-radius: 10px;
    color: #fff;
    box-shadow: #000000ab 0 3px 21px;
    background-color: #2e2d2d
}

.homsec2-sub1 {
    padding: 0 5%;
    margin: 4% 0 0
}

.homsec2-sub1 .owl-carousel .owl-item .sub1Cardimg1Sec img {
    display: block;
    width: 25%
}

.homesec2Card-content>h4 {
    font-size: 25px;
    font-weight: 600
}

.homesec2Card-content>p {
    font-size: 19px;
    padding: 3% 0;
    line-height: 23px;
    color: #ececec;
    background-color: #fffaf5;
}

.homesection3 {

    padding: 3% 0;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 3% 0 2%;
    height: auto;
 
}




.homesection3>h2 {
    font-size: 48px;
    font-weight: 7000;
    color: #000000;
    padding: 0 0 1% 5%;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
    text-align: center;
    width: 95%;
}


.homesection3>p {
    font-size: 19px;
    font-weight: 400;
    color: #f8f7f7;
    text-align: center;
    padding: 0 17% 0;
    line-height: 26px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    text-decoration: none;
}

.sub1-cotent>h3 {
    font-size: 21px;
    font-weight: 600;
    padding: 0 0 2%;
    color: #000000;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);

}

.sub1-cotent>p {
    font-size: 19px;
    color: #000000;
    line-height: 21px;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
}

.homeSec3-sub1 {
    display: flex;
    gap: 7%;
    justify-content: center;
    margin: 4% 0 2%;
    flex-direction: column;
    padding-left: 25px;
}

.sec3-sub1-part {
    width: 55%;
    align-items: center;
    display: flex
}

.homesection3>img:nth-last-of-type(1) {
    display: block;
    margin: 4% auto -4%;
    width: 56%
}

.homesection4 {
    text-align: center;
    background-size: cover;
    background-position: center;
    padding: 2% 0 0;
    background-color: #fffaf5;
}

.homesection4>h2 {
    font-size: 46px;
    color: #000000;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
}

.homeSection4head1 {
    position: relative;
    padding: 5px 10px 4px;
    display: inline-block;
    font-size: 31px;
}

.homeSection4head1:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    top: -3px;
    left: 50px;

}

.homeSection4head1:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    bottom: -3px;
    left: 50px;
    
}

.homesection4>p {
    font-size: 25px;
    line-height: 1.5;
    color: #333;
    margin: 1% 0;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
    margin-bottom: -97px;
}


.section4WheelerContent {
   
    
    padding: 7% 0 -72px;
  
}

.productRangeCard {
    position: relative;
    margin: 36% 7% 0px
}

.homesection4owl .owl-carousel .owl-item .sec4horonImg img {
    display: inline-block;
    height: 200px;
    width: 350px;
    position: relative;
    margin: 0 auto 0;
    border-radius: 66px;
}


.homesection4owl {
    padding: 0 8% 0;
    width: 100%;
}

.playimg {
    position: absolute;
    right: 6%;
    top: 8%
}

.homesection4owl .owl-carousel .owl-item .popupimg img {
    display: block;
    width: 60%
}

.section4WheelerContent-sub1>h4 {
    font-size: 20px;
    font-weight: 700;
    padding: 11px 0 8%;
}

.section4WheelerContent-sub1>p {
    font-size: 18px;
    line-height: 22px;
  line-height: 1.5;
  color: #333;
}

.section4WheelerContent-sub1>a {
    text-decoration: none;
    background-color: #3dadd2;
    color: #fffaf5;
    font-size: 20px;
    border-radius: 10px;
    padding: 3% 15%;
    display: inline-block;
    margin: 6% 0 2%;
   
}



@media (max-width: 500px) and (min-width: 0px) 
{
    .section4WheelerContent-sub1 {
        margin-bottom: 80px;
        
    }
}
a.homesec4-lastAtag {
    text-decoration: none;
    background-color: #f2a241;
    color: #fff;
    font-size: 23px;
    padding: 1% 2%;
    border-radius: 10px;
    margin: 2% 0;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.homeSection5-sub1>h2:after,
.homeSection5-sub1>h2:before {
    border: 3px solid #fff
}

.homeSection5 {
    display: flex;
    position: relative;
    margin: 8% 0 3%;
    padding: 0 4%
}

.homeSection5-sub2 {
    width: 60%;
    background-image: url(../assets/indexpage/sec5bg.png);
    background-size: 65% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center
}

.homeSection5-sub2-eachCard {
    text-align: center;
    border-radius: 10px;
    border: 2px solid #f2a241;
    background-color: #fff;
    color: #000a06;
    position: relative;
    font-size: 23px;
    font-weight: 600;
    width: 40%;
    padding: 2% 3%;
    margin: 3% 4%
}

.homeSection5-sub2-eachCard>p {
    padding: 4% 0
}

.homeSection5-sub2-eachCard>img {
    width: 30%;
    display: block;
    margin: -17% auto 0
}

.homeSection5-sub1 {
    width: 40%;
    padding: 2% 0
}

.homeSection5-sub1>p {
    font-size: 23px;
    font-weight: 400
}

.homeSection5-sub1>p:nth-of-type(1) {
    padding: 5% 0 4%
}

.homeSection6 {
    text-align: center;
    margin: 0% 0 0;
    background-position: center;
    background-size: 100% 100%;
    padding: 0 0 2%;
    background-repeat: no-repeat;
    margin-left: 2%;
    margin-right: 5%;
    background-color: #fffaf5;



}

.feedback-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-card {
    margin-top: 2%;
    flex: 0 0 33.33%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 20px;
   
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feedback-card p {
    margin: 0;
    
}

.sec6-part2 {
    display: flex;
    justify-content: center;
    margin: 3% 0
}



.sec6Dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #484848;
    margin: 0 1.5% 0 0
}

.sec6-sub1-content {
    display: flex;
    align-items: center;
    margin: 0 0 3%;
    text-align: left
}

.homeSection6-sub1,
.homeSection6-sub2 {
    width: 50%
}

.homeSection6-sub1>img {
    width: 30%;
    margin: 0 6% 0 0;
    display: inline-block
}

.sec6-sub1-content>p {
    font-size: 23px;
    font-weight: 500
}

.playimg {
    cursor: pointer
}

.playimg>p {
    font-size: 15px;
    color: #f2a241;
    font-weight: 700
}

@media screen and (max-width:1400px){
    #hero-image {
        width: 89%;
        height: 50%;
        object-fit: cover;
        margin: 31% 11% 8% 9%;
        
      }
}
@media screen and (max-width: 921px) and (min-width: 914px) {
    #hero-image {
        width: 90%; 
        height: 62%;
        object-fit: cover;
        margin: 31% 5% 8% 5%; 
    }
}
@media screen and (max-width: 1400px) and (min-width: 957px) {
    #hero-image {
        width: 100%; 
        height: 71%;
        object-fit: cover;
        margin: 15% 5% 8% 5%; 
    }
}
@media screen and (max-width: 1100px) and (min-width: 957px) {
    #hero-image {
        width: 90%; 
        height: 70%;
        object-fit: cover;
        margin: 15% 5% 8% 5%; 
    }
}
@media screen and (max-width:1100px) {
    .homeHead1 {
        font-size: 40px
    }

    .homeSec1-Part1>p {
        font-size: 23px
    }

    .homeSec1-Part1>a {
        font-size: 20px;
        display: inline-block;
        padding: 3% 5%;
        margin: 0 0 55px 0;
    }

    .homeSectionOwlPart .owl-theme .owl-dots {
        left: -1%
    }

}

@media screen and (max-width:1000px) {
    .homeSection5-sub2-eachCard {
        font-size: 20px;
        width: 42%;
        padding: 2% 1%;
        margin: 3% 2%
    }

    .homeSection5-sub1>p {
        font-size: 21px
    }

    .sec6-sub1-content>p {
        font-size: 21px
    }

    .homeSection6-sub1>img {
        width: 35%
    }

    .homesection4owl .owl-carousel .owl-nav button.owl-next span {
        display: none
    }

    .homesection4owl .owl-carousel .owl-nav button.owl-next {
        background-image: url(../../assets/indexpage/rightactive.svg);
        height: 40px;
        width: 40px;
        background-size: 100% 100%;
        background-color: transparent;
        margin:0 -5% 0 0;
    }

    .homesection4owl .owl-carousel .owl-nav button.owl-next.disabled {
        background-image: url(../../assets/indexpage/right-inactive.svg);
        background-color: transparent
    }

    .homesection4owl .owl-carousel .owl-nav button.owl-prev span {
        display: none
    }

    .homesection4owl .owl-carousel .owl-nav button.owl-prev {
        background-image: url(../../assets/indexpage/leftactive.svg);
        height: 40px;
        width: 40px;
        background-size: 100% 100%;
        background-color: transparent;
        margin: 0 0 0 -50px;
    }

    .homesection4owl .owl-carousel .owl-nav button.owl-prev.disabled {
        background-image: url(../../assets/indexpage/left-inactive.svg);
        background-color: transparent
    }
   
  
}

@media screen and (max-width: 645px) {
    .homesection4owl .owl-carousel .owl-nav button.owl-next {
        
        margin:0 0 0 0;
    }

    .homesection4owl .owl-carousel .owl-nav button.owl-prev {
        margin: 0 0 0 0;
    }
    .feedback-card p {
        margin: 0;
        width: 300px;
    }
}

@media screen and (max-width:920px) {
    .homeHead1 {
        font-size: 34px
    }

    .homeSec1-Part1>p {
        font-size: 22px
    }

    .homeSectionOwlPart .owl-theme .owl-dots {
        transform: rotate(0);
        left: 6%;
        bottom: 14%
    }

    .homsec2-bgtext {
        top: 0
    }

    .sec3-sub1-part {
        width: 93%
    }

    .homesection3>p {
        line-height: 20px
    }

    .homesection3 {
        background-position: bottom
    }
 
}

@media screen and (max-width:850px) {
    .eachCard {
        display: flex;
        flex-direction: column;
        padding: 0 6% 5% 6%;
        align-items: center;

    }

    #hero-image {
        order: -1;
        align-items: center;
        width: 66%;
    margin: 0 auto;
      }

    .homeHead1 {
        font-size: 41px;
        line-height: 50px;
        order: 1
    }

    .homeSec1-Part1>p {
        font-size: 26px;
        margin: 3% 0 8%
    }

    .homeSec1-Part1>a {
        font-size: 22px;
        padding: 2% 3%
    }

    .hornsimg {
        transform: translate(0, 0);
        height: 104px;
        margin: auto
    }

    .homeSec1-Part2:hover .hornsimg {
        transform: translate(0, 0)
    }

    .homeSec1-Part1,
    .homeSec1-Part2 {
        width: 100%
    }

    .HomeSec1-whitespace {
        display: none
    }

    .homeSectionOwlPart .owl-theme .owl-dots {
        bottom: -3%;
        left: 50%
    }

    .homeSection1 {
        padding: 9% 0 7%
    }

    .homesection4 {
        padding: 5% 0 0
    }

    .homeSection4head1 {
        font-size: 27px
    }

    .productRangeCard {
        margin: 14% 7% 0
    }

    a.homesec4-lastAtag {
        margin: 6% 0 3%;
        font-size: 20px;
        padding: 1.5% 4%
    }

    .homsec2-bgtext {
        top: -8%;
        font-size: 31px
    }
}

@media screen and (max-width:815px) {
    .homeSec3-sub1 {
        margin: 6% 0 2%
    }

    .sec3-sub1-part {
        width: 100%;
        padding: 0 13% 1%
    }

    .homeSec3-sub1 {
        flex-direction: column;
        margin: 6% 0 2%
    }

    .homeSection5 {
        flex-direction: column
    }

    .homeSection5-sub1,
    .homeSection5-sub2 {
        width: 100%
    }

    .homeSection5-sub1>p:nth-of-type(1) {
        padding: 3% 0 2%
    }

    .homeSection5-sub1 {
        margin: 0 0 6%;
        padding: 2% 5%
    }
}

@media screen and (max-width:750px) {
    
    .sec6-part2 {
        flex-direction: column;
        margin: 4% 0 0
    }

    .homeSection6-sub1>img {
        width: 27%
    }

    .homeSection6-sub1,
    .homeSection6-sub2 {
        width: 100%
    }

    .homeSection6-sub1 {
        margin: 0 0 4%
    }

    .homeSection6-sub2 {
        padding: 0 11%
    }
}

@media screen and (max-width:645px) {
    .homesection3>p {
        font-size: 19px;
        padding: 0 11% 0
    }

    .homesection3>h2 {
        font-size: 46px
    }

    .sec3-sub1-part {
        padding: 0 9% 1%
    }

    .sub1-cotent>h3 {
        font-size: 20px
    }

    .sub1-cotent>p {
        font-size: 18px
    }

    .homesection3>img:nth-last-of-type(1) {
        width: 69%
    }

    .homesection3 {
        padding: 6% 0
    }

    .sec3-sub1-part>img {
        width: 20%
    }

    .productRangeCard {
        margin: 14% 15% 0
    }

    .homsec2-bgtext {
        top: 6%
    }

    .homeSection5-sub2-eachCard {
        width: 46%
    }

    .homeSection5 {
        margin: 8% 0 12%
    }

    .homeSection6-sub2 {
        padding: 0 7%
    }

    .homeSection4head1::before,
    .homeSection4head1:after {
        width: 84%
    }

    .homeSection5-sub1>h2:after,
    .homeSection5-sub1>h2:before {
        background-color: #fff
    }

    .homeSection6>h1::after,
    .homeSection6>h1::before {
        background-color: #fff
    }

    .productRangeCard {
        margin: 20% auto 0
    }

   

    .homesection4owl {
        padding: 0 15% 0
    }

    .homesection4owl .owl-carousel .owl-item .sec4horonImg img {
        height: 191px;
        width: 266px;
        margin: -1% auto 0
    }

    .homesection4owl .owl-carousel .owl-nav button.owl-prev {
        position: absolute;
        left: -16%;
        top: 50%
    }

    .homesection4owl .owl-carousel .owl-nav button.owl-next {
        position: absolute;
        right: -16%;
        top: 50%
    }
}

@media screen and (max-width:550px) {
    .eachCard {
        padding: 0 0 5%
    }

    .homeSec1-Part1 {
        padding: 0 8% 0
    }

    .homeSec1-Part1>p {
        font-size: 23px
    }

    .homeSec1-Part1>a {
        font-size: 20px;
        padding: 3% 7%
    }

    .homeSec1-Part2 {
        margin: 6% 0 0
    }

    .homeSectionOwlPart .owl-theme .owl-dots {
        left: 41%
    }

    .homeSectionOwlPart .owl-carousel .owl-item .hornsimg img {
        width: 27%
    }

    .homeSection1 {
        padding: 9% 0 9%;

    }

    .homeSectionOwlPart .owl-theme .owl-dots {
        bottom: -6%
    }

    .homeHead1 {
        font-size: 35px;
        line-height: 37px
    }

    a.homesec4-lastAtag {
        padding: 3.5% 11%
    }

    .homeSection5-sub1>p {
        font-size: 19px
    }

    .homeSection5-sub2-eachCard {
        font-size: 17px
    }

    .homeSection4head1 {
        font-size: 25px
    }

    .homeSection6-sub1>img {
        width: 34%
    }

    .sec6-sub1-content>p {
        font-size: 19px
    }

    .homeSection6-sub2 {
        padding: 0 3% 4% 5%
    }

    .sec6-sub1-content {
        margin: 0 0 4%
    }

    .sec6Dot {
        width: 6px;
        height: 5px
    }

    .homeSection5-sub2 {
        background-size: 79% 100%
    }
}

@media screen and (max-width:480px) {
    .homeHead1 {
        font-size: 27px;
        line-height: 32px
    }

    .homeSec1-Part1>p {
        font-size: 19px;
        margin: 5% 0 8%
    }

    .homeSec1-Part1>a {
        font-size: 18px;
        padding: 4% 8%
    }

    .homeSection1 {
        padding: 9% 0 13%
    }

    .homeSec1-Part2 {
        margin: 10% 0 0
    }

    .homesection3>p {
        font-size: 18px;
        padding: 0 6% 0
    }

    .homesection3>h2 {
        font-size: 46px;
       
    }

    .sec3-sub1-part {
        padding: 0 4% 5%
    }

    .homesection3>img:nth-last-of-type(1) {
        width: 74%
    }

    .homesection4>p {
        padding: 0% 4% 0
    }

    .productRangeCard {
        margin: 14% auto 0px
    }

    .section4WheelerContent {
        height: 480px
    }

    .section4WheelerContent-sub1>a {
        font-size: 15px;
        padding: 4% 18%
    }

    .homesection4 {
        padding: 7% 0 4%;
       
    }

    .homeSection5-sub2-eachCard {
        font-size: 15px;
        font-weight: 500
    }

    .homeSection5-sub1 {
        margin: 0 0 8%;
        padding: 2% 3%
    }

    .homsec2-bgtext {
        top: -5%;
        font-size: 25px
    }

    .homesection4owl .owl-carousel .owl-nav button.owl-next,
    .homesection4owl .owl-carousel .owl-nav button.owl-prev {
        height: 34px;
        width: 34px
    }
}

@media screen and (max-width:440px) {
    .homeHead1 {
        font-size: 27px
    }

    .homeSec3-sub1 {
        margin: 9% 0 2%
    }

    .sub1-cotent>p {
        font-size: 16px;
        line-height: 19px
    }

    .sub1-cotent>h3 {
        font-size: 18px
    }

    .homesection3>p {
        font-size: 17px
    }

    .homesection3 {
        padding: 10% 0
    }

    .homeSection4head1 {
        font-size: 25px
    }

    .homesection4>p {
        font-size: 18px
    }

    .section4WheelerContent-sub1>p {
        font-size: 16px;
        line-height: 19px
    }

    a.homesec4-lastAtag {
        margin: 3% 0 3%;
        font-size: 16px
    }

    .homeSection5-sub1>p {
        font-size: 15px
    }

    .homeSection5-sub2-eachCard {
        font-size: 13px
    }

    .homeSection5-sub1>p:nth-of-type(1) {
        padding: 4% 0 3%
    }

    .sec6-sub1-content>p {
        font-size: 17px
    }

   
}

@media screen and (max-width: 899px) {
    .homesection4>p {
        margin-bottom: -17px;
    }
}


/* -------------------------------------------------------------------------------------------------------------------------------- */
.s-aboutus {
    background-color: #fcebd7;
    margin-bottom: 5%;

}


.s-aboutus h1 {
    font-size: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 41px 9px 0px;

}



.s-aboutus p {
    font-size: 25px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
    padding: 2%;
    line-height: 1.3;
}


.aboutUs-sec1 {
    background-image: url(../assets/AboutUs/sec-bg.png);
    background-size: 100% 100%;
    background-position: center;
    padding: 10% 0 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    flex-direction: column;
}

.aboutUs-sec1-sub1,
.aboutUs-sec1-sub2 {
    width: 100%
}

.aboutUs-sec1-sub1 {
    padding: 2% 5% 0 6%;
}

.aboutUs-sec1-sub2 {
    text-align: right
}

.aboutUs-sec1-sub2>img {
    width: 100%
}

.aboutUs-sec1-sub1>h1 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 700;
    line-height: 63px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.aboutUs-sec1-sub1>p {
    color: #ffffff;
    font-size: 24px;
    margin: 3% 0 13%;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.aboutUs-sec1-sub1>a {
    color: #ffff;
    text-decoration: none;
    background-color: #f2a241;
    font-size: 24px;
    display: inline-block;
    padding: 3% 5%;
    border-radius: 8px;
    font-weight: 600;
    margin-top: -63px;
}

.aboutUs-sec2 {
    display: flex;
    color: #000;
    padding: 0 0 4%
}

.aboutUs-sec2-sub1 {
    text-align: right
}

.aboutUs-sec2-sub1,
.aboutUs-sec2-sub2 {
    width: 50%
}

.aboutUs-sec2-sub1>img {
    width: 86%
}

.aboutUs-sec2-sub2>p {
    font-size: 25px;
    line-height: 1.3;
}

.aboutUs-sec2-sub2>h3 {
    font-size: 30px;
    font-weight: 600;
    padding: 0 0 0 6px;
    border-bottom: 3px solid #3dadd2;
    margin: 0 0 25px 0;
}

.aboutUs-sec2-sub2>h3>svg {
    float: right;
    padding: 5px;
    margin-top: -15px;
}


.aboutUs-sec2-sub2>h2 {
    font-size: 27px;
    font-weight: 700;
    margin: 3% 0 5%
}

.aboutUs-sec2-sub2>p {
    font-size: 23px;
    line-height: 29px;
    font-weight: 500;
}

.sec2-sub2-p2 {
    margin: 2.5% 0 0
}

.aboutUs-sec2-sub2 {
    padding: 3% 8% 0 7%
}

.aboutus-sec3 {
    background-image: url(../assets/AboutUs/aboutUs-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly
}

.sec3-eachCard {
    width: 21%;
    text-align: center;
    background-color: #fff;
    margin: 6% 0 5%;
    border-radius: 10px;
    padding: 0 2% 3.5%;
    border: 1px solid #707070
}

.sec3-animation {
    width: 25%;
    display: flex;
    justify-content: center
}

.animationPart {
    position: relative;
    width: 54%
}

.animationPart>img {
    position: absolute;
    top: 41.5%;
    left: 31%;
    width: 38%
}

.sec3-eachCard>img {
    width: 45%;
    display: block;
    margin: -21% auto 0
}

.sec3-eachCard>h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 12% 0 12%
}

.sec3-eachCard>p {
    font-size: 23px;
    line-height: 29px;
    font-weight: 500
}

.eachPoint>img {
    display: inline-block;
    width: 23px;
    margin: 0 5% 0 0
}

.eachPoint {
    display: flex;
    align-items: center;
    margin: 0 0 3%;
    font-size: 21px
}

.aboutUs-sec4-sub1,
.aboutUs-sec4-sub2 {
    width: 50%
}

.aboutUs-sec4 {
    display: flex;
    background-color: #dfe2e3;
    margin: 3% 3%;
    padding: 4% 0 5% 4%
}

.aboutUs-sec4-sub1>h2 {
    font-size: 27px;
    border-left: 3px solid #f2a241;
    padding: 0 0 2% 1%;
    font-weight: 700
}

.aboutUs-sec4-sub1>p {
    font-size: 20px;
    line-height: 23px;
    margin: 3% 0;
    font-weight: 500
}

.aboutUs-sec4-sub1 {
    padding: 0 7% 0 0
}

.eachObjects {
    margin: 0 13%
}

.objectDetails {
    background-color: #3dadd2;
    box-shadow: 0 3px 10px #ffffff6e;
    border-radius: 10px;
    color: #fff;
    padding: 22% 8% 5%;
    text-align: center
}

.objectDetails>h2 {
    font-size: 23px;
    font-weight: 700;
    margin: 0 0 5%
}

.objectDetails>p {
    font-size: 20px;
    line-height: 25px
}

.aboutUs-sec4-sub2 .owl-carousel .owl-item img {
    display: block;
    width: 75%;
    margin: 0 auto -19%
}

.aboutUs-sec4-sub2 .owl-theme .owl-dots .owl-dot.active span {
    background: #fff;
    border: 1px solid #f2a241
}

@media screen and (max-width:1280px) {
    .sec3-eachCard {
        width: 26%
    }

    .animationPart>img {
        top: 41.5%;
        left: 30%;
        width: 42%
    }
}

@media screen and (max-width:1000px) {
    .aboutUs-sec1 {
        padding: 12% 0 5%
    }

    .aboutUs-sec1-sub1>h1 {
        font-size: 38px;
        line-height: 45px
    }

    .aboutUs-sec1-sub1>p {
        margin: 5% 0 13%
    }

    .aboutUs-sec1-sub1>a {
        font-size: 18px;
        border: none
    }

    .aboutUs-sec1-sub2>img {
        width: 98%
    }

    .aboutUs-sec2-sub1>img {
        width: 96%
    }

    .aboutUs-sec2-sub1 {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .sec3-eachCard>p {
        font-size: 20px;
        line-height: 24px
    }

    .sec3-eachCard>h2 {
        font-size: 23px;
        margin: 10% 0 8%
    }

    .animationPart {
        width: 65%
    }

    .sec3-animation {
        width: 23%
    }

    .sec3-eachCard {
        width: 28%
    }
}

@media screen and (max-width:800px) {
    .aboutUs-sec1-sub1>a {
        font-size: 17px
    }

    .aboutUs-sec1-sub1>h1 {
        font-size: 32px;
        line-height: 38px
    }

    .aboutUs-sec1-sub1>p {
        margin: 5% 0 8%
    }

    .aboutUs-sec2 {
        flex-direction: column
    }

    .aboutUs-sec2-sub1,
    .aboutUs-sec2-sub2 {
        width: 100%
    }

    .aboutUs-sec2-sub1>img {
        width: 60%
    }

    .aboutUs-sec2-sub2 {
        padding: 6% 8% 0 7%
    }

    .aboutUs-sec2-sub2>h2 {
        font-size: 27px;
        margin: 2% 0 4%
    }

    .aboutUs-sec2-sub2>p {
        font-size: 20px;
        line-height: 23px
    }

    .aboutUs-sec2 {
        padding: 7% 0 4%
    }

    .sec3-eachCard>h2 {
        font-size: 21px;
        margin: 9% 0 7%
    }

    .sec3-eachCard {
        width: 28%
    }

    .sec3-animation {
        width: 23%
    }

    .sec3-eachCard>p {
        font-size: 18px;
        line-height: 20px
    }
}

@media screen and (max-width:690px) {
    .aboutUs-sec1 {
        padding: 19% 0 5% 9%;
        flex-direction: column
    }

    .aboutUs-sec1-sub1,
    .aboutUs-sec1-sub2 {
        width: 100%
    }

    .aboutUs-sec1-sub1>h1 {
        font-size: 36px;
        line-height: 48px
    }

    .aboutUs-sec1-sub1>p {
        margin: 5% 0 5%;
        font-size: 22px
    }

    .aboutUs-sec1-sub1>a {
        font-size: 20px;
        padding: 2% 3%
    }

    .aboutUs-sec1-sub1 {
        padding: 0 8% 0 0
    }

    .aboutUs-sec1-sub2>img {
        width: 100%
    }

    .aboutUs-sec1-sub2 {
        padding: 9% 0 0
    }

    .aboutUs-sec4 {
        flex-direction: column
    }

    .aboutUs-sec4-sub1,
    .aboutUs-sec4-sub2 {
        width: 100%
    }

    .aboutUs-sec4 {
        flex-direction: column;
        padding: 7% 5% 4%
    }

    .aboutUs-sec4-sub1 {
        padding: 0 4%;
        margin: 0 0 7%
    }
}

@media screen and (max-width:600px) {
    .aboutus-sec3 {
        background-image: url(../../assets/AboutUs/aboutsec3-bg-mob.png)
    }

    .aboutus-sec3 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 8% 0 0
    }

    .sec3-eachCard {
        width: 48%
    }

    .sec3-animation {
        display: none
    }

    .sec3-eachCard>img {
        width: 37%;
        margin: -17% auto 0
    }
}

@media screen and (max-width:550px) {
    .aboutUs-sec2-sub1>img {
        width: 81%
    }

    .aboutUs-sec2-sub2 {
        padding: 6% 8% 0 9%
    }

    .aboutUs-sec2-sub2>h2 {
        font-size: 25px;
        line-height: 27px
    }

    .aboutUs-sec2-sub2>p {
        font-size: 19px
    }

    .aboutUs-sec2 {
        padding: 8% 0 8%
    }

    .sec3-eachCard {
        width: 67%;
        padding: 0 2% 5.5%;
        margin: 6% 0 11%
    }

    .eachPoint {
        font-size: 20px
    }

    .aboutUs-sec4-sub1>h2 {
        font-size: 25px
    }

    .aboutUs-sec4-sub1>p {
        font-size: 20px;
        margin: 6% 0
    }

    .eachObjects {
        margin: 0 2%
    }

    .objectDetails>h2 {
        font-size: 20px
    }

    .objectDetails>p {
        font-size: 17px;
        line-height: 22px
    }
}

@media screen and (max-width:475px) {
    .aboutUs-sec1-sub1>h1 {
        font-size: 32px;
        line-height: 36px
    }

    .aboutUs-sec1 {
        padding: 28% 0 5% 9%;
        background-image: url(../assets/AboutUs/aboutus-mob-bg.png)
    }

    .aboutUs-sec1-sub1>p {
        margin: 5% 0 10%;
        line-height: 24px
    }

    .aboutUs-sec1-sub1>a {
        padding: 3% 7%;
        font-weight: 500
    }

    .aboutUs-sec1-sub2 {
        margin: 5% 0 0
    }

    .aboutUs-sec2-sub2 {
        padding: 9% 8% 0 9%
    }

    .aboutUs-sec2-sub2>h2 {
        font-size: 23px;
        margin: 3% 0 4%
    }

    .aboutUs-sec2-sub2>p {
        font-size: 18px;
        line-height: 22px
    }

    .sec3-eachCard>h2 {
        font-size: 20px;
        margin: 6% 0 5%
    }

    .aboutus-sec3 {
        padding: 14% 0 12%
    }

    .aboutUs-sec4-sub1 {
        padding: 0 1%
    }

    .aboutUs-sec4-sub1>p {
        font-size: 18px
    }

    .eachPoint>img {
        width: 21px;
        margin: 0 3% 0 0
    }

    .eachPoint {
        font-size: 18px
    }
}

@media screen and (max-width:400px) {
    .aboutUs-sec1-sub1>h1 {
        font-size: 26px;
        line-height: 32px
    }

    .aboutUs-sec1-sub1>p {
        margin: 5% 0 10%;
        font-size: 19px
    }

    .aboutUs-sec2-sub2>h2 {
        font-size: 22px;
        margin: 3% 0 4%
    }

    .aboutUs-sec2-sub2>p {
        font-size: 17px;
        line-height: 22px
    }
}

.key-achievements {
    padding: 0 0 2% 0;
    margin-bottom: 10px;

}

.key-achievements li {
    padding: 5% 0 5% 0;
    font-size: 16px;


    .key-achievements h3 {
        margin: 0;
    }
}

.sec2-sub2-p2 {
    display: none;
}

.dropdown-header {
    cursor: pointer;
}



/* Initially hide the drop-up icon */
.dropdown-icon-up {
    display: none;
}

/* Hide dropdown icon when p tag is displayed */
.sec2-sub2-p2:target+.dropdown-header .dropdown-icon-down,
.dropdown-header .dropdown-icon-down.active {
    display: none;
}

/* Show drop-up icon when p tag is displayed */
.sec2-sub2-p2:target+.dropdown-header .dropdown-icon-up,
.dropdown-header .dropdown-icon-up.active {
    display: inline-block;
}

/* Show dropdown icon when p tag is not displayed */
.dropdown-header .dropdown-icon-down {
    display: inline-block;
}

/* ---------------------why us -------------------------------- */
/* Center the .why-us-image and .point horizontally and vertically */
.why-us-points {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
  }
  
  /* Adjust the flex properties of .why-us-image and .point */
 
  .point, .why-us-image img{
    flex-basis: 50%;
  }

  @media (max-width: 799px) and (min-width: 0px) {

        .why-us-points {
          flex-direction: column;
        }
   
    .why-us-image img {
        flex-direction: column;
        width: 340px;
       
      }
    }

  @media (max-width: 1099px) and (min-width: 800px) {
    .why-us-image img {
        width: 340px;
      
      }
    }
 

  @media (max-width: 1500px) and (min-width: 1100px) {
    .why-us-image img {
        max-width: 400px;
        margin: 0 0 0 59px;
      }
    }
    @media (max-width: 5500px) and (min-width: 1501px) {
        .why-us-image img {
            max-width: 400px;
            margin: 0 0 0 59px;
          }
        }
    

   
  /* Remove default list styling */
  .point ul {
    list-style: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 100%;
  }
  
  .point ul li {
    margin-bottom: 20px; /* Add space between list items */
  }
  
  .point ul li h3 {
    color: #3dadd2; /* Change heading color */
    font-size: 20px; /* Adjust heading font size */
    margin-bottom: 5px; /* Add space below heading */
  }
  
  .point ul li p {
    color: #000000; /* Change paragraph color */
    font-size: 1em; /* Adjust paragraph font size */
    line-height: 1.4; /* Adjust paragraph line height */
  }
  

  
  



  /* ----------------------------------------------------------------------------------------- */
  
 
  




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


      .s-aboutus h1{
        padding: 10px;
        font-size: 27px;
        margin: -130px 0 0 0;
        
      }

      .s-aboutus p{
        font-size: 19px;
      }
    }

   
   
  @media screen and (max-width: 840px) {
    .eachCard {
      display: flex;
      flex-direction: column;
    }

    .homeSec1-Part1 {
      order: 2;
    }

    .homeSec2-vehicle {
      order: 1;
    }
  }


.feedback-card h3{
    font-size:20px
}

#feedback-image{
    width: 100px;
}

#feedback-p{
    color: #333;
    font-size: 20px;
}

@media (max-width: 500px) {

    .feedback-card {
      margin:0 0 0 ;
    }

    .feedback-card h3{
        font-size:16px
    }
    
    #feedback-image{
        width: 44px;
    }
    

    #feedback-p{
        
        height: 60px;
        width: 251px;
        padding: 5px;
        font-size: 12px;
    }
  }

