@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --primary-color: #9cc438;
    --white-color: #fff;
    --black-color: #000;
    --dark-color: #020207;
}
body{
    font-family: "Poppins", sans-serif !important;
}

#page-header{
    background: var(--primary-color);
    padding: 100px 0;
}

#navbar{
    background: var(--dark-color);
    padding: 10px 0;
}

.navbar{
    display: flex;
    justify-content: space-between;
}

.hamburger{
    background: var(--primary-color);
    width: 48px;
    height: 48px;
    border: 2px solid var(--white-color);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
}

.hamburger.active .line-1{
    width: 50%;
    transform: rotate(-30deg) translateX(-10px);
}

.hamburger.active .line-3{
    width: 50%;
    transform: rotate(30deg) translateX(-10px);
}

.line{
    background: var(--dark-color);
    height: 4px;
    width: 100%;
    transition: 0.2s ease-in-out;
}

.sidebar{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    z-index: 9999;
    background: var(--dark-color);
    gap: 20px;
    transition: 0.2s ease-in;
}

.sidebar.active{
    left: 0;
}

.sidebar img{
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.sidebar a{
    text-decoration: none;
    color: var(--white-color);
}

#hero-bg{
    padding: 240px 0;
    background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('./../images/hero-img.jpg');
    position: relative;
    z-index: 99;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content{
    position: relative;
    z-index: 99;
}

.heading-1{
    font-size: 60px;
    font-weight: 700;
}

.heading-2{
    font-size: 48px;
    font-weight: 600;
}

.heading-6{
    font-size: 24px;
}

.heading-4{
    font-size: 32px;
}
#hero-bg::before{
    content: '';
    position: absolute;
    top: 0;
    right: 10%;
    width: 500px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.5;
    transform: skew(-20deg);
    z-index: -1;
}


#hero-bg::after{
    content: '';
    position: absolute;
    top: 30%;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--primary-color);
    /* opacity: 0.5; */
    transform: skew(-20deg);
    z-index: -1;
}

.btn-primary-custom{
    background: var(--primary-color);
    padding: 18px 0;
    display: inline-block;
    position: relative;
    width: 250px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    /* transform: skewX(-20deg); */
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    color: var(--dark-color);
    overflow: hidden;
    /* box-shadow: 0 20px 30px rgba(0,0,0,0.4); */
}

.btn-primary-custom span{
    position: absolute;
    top: 0;
    right: 30px;
    background: var(--black-color);
    z-index: 99;
    width: 10px;
    height: 100%;
    transform: skewX(-20deg);
    transition: 0.2s 0.1s linear;
    /* clip-path: polygon(50% 0, 100% 0%, 50% 100%, 0% 100%); */
}

.btn-primary-custom::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    transform: translateX(-100%);
    z-index: -1;
    transition: 0.2s linear;
}

.btn-primary-custom:hover::before{
    transform: translateX(0);
}

.btn-primary-custom:hover span{
    background: var(--primary-color);
}


.btn-dark-custom{
    background: var(--primary-color);
    padding: 18px 0;
    display: inline-block;
    position: relative;
    width: 250px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    /* transform: skewX(-20deg); */
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    color: var(--dark-color);
    overflow: hidden;
    /* box-shadow: 0 20px 30px rgba(0,0,0,0.4); */
}

.btn-dark-custom span{
    position: absolute;
    top: 0;
    right: 30px;
    background: var(--black-color);
    z-index: 99;
    width: 10px;
    height: 100%;
    transform: skewX(-20deg);
    transition: 0.2s 0.1s linear;
    /* clip-path: polygon(50% 0, 100% 0%, 50% 100%, 0% 100%); */
}

.btn-dark-custom::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    transform: translateX(-100%);
    z-index: -1;
    transition: 0.2s linear;
}

.btn-dark-custom:hover::before{
    transform: translateX(0);
}

.btn-dark-custom:hover{
    color: var(--primary-color);
}

.btn-dark-custom:hover span{
    background: var(--primary-color);
}

.service-box{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    overflow:visible;
    padding-bottom: 20px;
    border-radius: 10px;
    padding: 10px;
}

.service-box::before{
    content: '';
    position: absolute;
    top: 50px;
    transform: rotate(10deg);
    background: #e2e2e2;
    width: 150px;
    height: 100%;
    z-index: -1;
}

.service-box:hover::before{
    background: var(--primary-color);
    opacity: 0.5;
}

.service-box .img{
    border-radius: 100%;
    border: 10px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width:300px;
    /* height:300px; */
    padding: 0px;
    overflow: hidden;
}

.service-box .img img{
    border-radius: 100%;
    transition: 0.3s linear;
}

.service-box:hover img{
    transform: scale(1.2);
}

.about-img{
    position: relative;
    z-index: 9;
}

.about-img-1{
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 -10px 30px rgba(0,0,0,0.2);
}

.about-img-3{
    position: absolute;
    bottom: -20px;
    right: 0;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 -10px 30px rgba(0,0,0,0.2);
}

.about-icon-box{
    display: flex;
    align-items: center;
    gap: 10px;
    /* background: #f7f7f7; */
    padding: 10px;
    margin: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 5px;
}

.about-icon-box .icon{
    font-size: 30px;
}

.fleet-box{
    border: 1px solid #ddd;
    overflow: hidden;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
    position: relative;
    transition: 0.4s 0.2s linear;
}

.fleet-box .img{
    height: 340px;
    background: linear-gradient(to right, rgba(0,0,0,0.2), rgba(0,0,0,0.4)), url('./../images/hero-img.jpg');
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
    background-size: cover;
}

.fleet-box img{
    position: absolute;
    top: 140px;
    right: -80px;
}
.fleet-box .body{
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.fleet-box .body::before{
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 130%;
    background: var(--dark-color);
    z-index: -1;
    transition: 0.3s linear;
    transform: translateY(-100%);
}

.fleet-box:hover .body::before{
    transform: translateY(0);
}

.fleet-box:hover{
    color: var(--white-color);
}

.fleet-icons{
    display: block;
    grid-template-columns: repeat(3, 1fr);
}

.btn-primary-custom {
    display: inline-block;
    background-color: var(--primary-color, #007bff); /* fallback color */
    color: #fff;
    padding: 10px 20px;
    margin: 20px auto 0;
    text-align: center;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s ease;
    text-decoration: none;
    width: 80%; /* makes it look good on small screens */
    max-width: 200px;
}
.btn-primary-custom span {
  position: relative;
 
  width: 100%;
  background: black;
  transform: translateX(-50%);
  z-index: 0; /* line goes behind */
}
.btn-primary-custom:hover {
    background-color: var(--primary-dark, #0056b3);
    color: #000000;
}






#testimonials{
    background: var(--primary-color);
}

.testimonial-slider {
position: relative;
width: 90%;
margin: auto;
padding: 20px;
background-color: #fff;
/* border-radius: 10px; */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
}

.testimonial-slide {
display: none;
text-align: center;
padding: 20px;
}

.testimonial-slide p {
font-style: italic;
color: #555;
padding: 0 40px;
}

.testimonial-slide h3 {
font-weight: bold;
color: #333;
}

button {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
border: none;
padding: 10px;
font-size: 18px;
cursor: pointer;
border-radius: 50%;
}

button:hover {
background-color: rgba(0, 0, 0, 0.8);
}

.prev {
left: 80px;
}

.next {
right: 80px;
}

/* Show the first testimonial */
.testimonial-slide:first-child {
display: block;
}

#footer{
    background: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0;
}

.social-icons{
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.social-icons .icon{
    background: var(--primary-color);
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black-color);
    font-size: 20px;
    clip-path: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
    cursor: pointer;
}

dl{
    list-style: none;
}

#footer li{
    margin: 10px 0;
}

.footer-link{
    color: var(--primary-color);
    text-decoration: none;
}

.footer-icon-box{
    display: grid;
    grid-template-columns: min-content 1fr;
    gap: 10px;
}

.footer-icon-box .icon{
    background: var(--primary-color);
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black-color);
    font-size: 20px;
    clip-path: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
}


.footer-link:hover{
    color: var(--white-color);
}
#copyright{
    background: var(--black-color);
    border-top: 1px solid #ddd;
    color: var(--white-color);
    margin-bottom: 120px;
}

#download{
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--dark-color);
    z-index: 999;
    color: var(--white-color);
    padding: 10px 0;
}

#download img{
    height: 30px;
}
  
#download .btn-dark-custom{
    padding: 5px 0 !important;
}

#download p{
    margin: 0;
}
@media screen and (max-width: 600px) {
    .col-sm-4,.col-sm-3, .col-sm-6,.col-sm-8{
        margin: 20px 0;
    }
    #hero-bg::before, #hero-bg::after{
        display: none;
    }

    #hero-bg{
        padding: 140px 0;
    }

    .heading-1{
        font-size: 36px;
    }

    .about-img{
        text-align: center;
    }
    .about-img-3{
        display: none;
    }
    /* .row-mt-4{
        display: block;;
    } */

    .prev{
        left: 30px;
    }
    .next{
        right: 30px;
    }

    #copyright{
        margin-bottom: 150px;
    }
}



