@import url('https://fonts.googleapis.com/css2?family=Lateef:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');

:root {
    --primary-color: #ee961b;
    --secondary-color: #ee5422;
    --third-color: #181E4B;
    --fourth-color: #051824;
    --jost: "Jost", serif;
    --lateef: "Lateef", serif;
    --dm: "DM Serif Text", serif;
    --ss: sans-serif;
    --default-transition: 350ms;
    --white: #fff;
    --black: #212121;
}

/* ELEMENTS */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: var(--jost);
}
.whatapp_btn 
      {
        background: #01e675;
        width: 50px;
    height: 50px;
    color: #fff;
    position: fixed;
    right: 40px;
    bottom: 110px;
    cursor: pointer;
    z-index: 999;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .16), 0 3px 10px rgba(0, 0, 0, .16);
    animation-name: pulse;
    text-decoration: none;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-play-state: paused;
  }
  .whatapp_btn.call
  {
    right: auto;
    left: 25px;
  }
  .whatapp_btn.mail
  {
    right: auto;
    left: -90px;
    flex-direction: row-reverse;
    bottom: 40px;
    width: auto;
    height: auto;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    background: #ffa45c;
    animation-name: none;
    gap: 1rem;
    transition: 0.4s;
  }
  .whatapp_btn.mail:hover
  {
    left: 25px;
  }
  .whatapp_btn.mail::before
  {
    animation-name: none;
    display: none;

  }
.whatapp_btn i{font-size:30px}
.whatapp_btn:focus,.whatapp_btn:hover{background:#01e675;color:#fff}
.whatapp_btn span{position:absolute;width:18px;height:18px;font-size:12px;border-radius:100%;background:#d8261c;color:#fff;display:flex;align-items:center;justify-content:center;top:-4px;left:-1px}


.whatapp_btn::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
.bg-transparent {
    background: transparent;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background: var(--secondary-color);
}

.text-third {
    color: var(--third-color) !important;
}

.bg-third {
    background: var(--third-color);
}

.text-fourth {
    color: var(--fourth-color) !important;
}

.bg-fourth {
    background: var(--fourth-color);
}

p {
    margin-bottom: 0;
}

body {
    overflow-x: hidden;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span{
    font-family: inherit;
}
input:focus:not(input[type=checkbox]),
textarea:focus {
    box-shadow: 0 0 1px 3px var(--primaryopacitycolor);
    border-color: var(--primarycolor) !important;
}

input:user-invalid,
textarea:user-invalid {
    box-shadow: 0 0 1px 3px #f005 !important;
    border-color: #f00 !important;
}

.sans-serif {
    font-family: var(--ss);
}

.jost {
    font-family: var(--jost);
}

.lateef {
    font-family: var(--lateef);

}

.dm {
    font-family: var(--dm);
}

strong {
    font-family: inherit;
}
.main-heading
{
    position: relative;
    font-size: 60px;
    color: #181E4B;
    text-transform: capitalize;
}
.main-heading span{
    position: relative;
    color: var(--primary-color);
    font-family: inherit;
    z-index: 0;
}
@media(max-width:992px){
    .main-heading
    {
        font-size: 40px;
    }
}
@media(max-width:768px){
    .main-heading
    {
        font-size: 32px;
    }
}
a {
    color: var(--secondary-color);
    text-decoration: none !important;
}

a:hover {
    color: var(--hoversecondary);
    text-decoration: none !important;
}

.min-h-100 {
    min-height: 100dvh;
}

.btn {
    position: relative;
    display: inline-block;
    border: 2px solid var(--primary-color);
    background: linear-gradient(45deg, var(--primary-color)
    , var(--secondary-color));
    color: var(--white);
    border-radius: 100px;
    padding: 6px 30px;
    /* overflow: hidden; */
    /* z-index: 0; */
}

.btn::before {
    position: absolute;
    left: 4px;
    top: 0;
    z-index: -1;
    content: '';
    inset: 4px;
    border-radius: inherit;
    filter: blur(4px);
    transition: var(--default-transition);
    background: linear-gradient(45deg, var(--secondary-color)
    , var(--primary-color));
    animation: rotatelgbg 2s linear forwards;
}

.btn:is(:hover, :active, :focus)::before {
    inset: -4px;
}

.btn:is(:hover, :active, :focus) {
    color: var(--white) !important;
    border: 2px solid var(--primary-color) !important;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(2px);
    z-index: 999;
    border-bottom: 1px solid #fff4;
}

header nav ul:not(.dropdown-ul) {
    position: relative;
    display: flex;
    gap: 12px;
}

header .col-md-11 {
    gap: 12px;
}

header nav ul li {
    position: relative;
}

header nav ul li .dropdown-ul {
    position: absolute;
    overflow: hidden;
    min-width: 220px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.25);
    z-index: 999;
    user-select: none;
    transform: translateY(30px);
    opacity: 0;
    transition: var(--default-transition) ease-out;
    visibility: hidden;
}

header nav ul li:has(a:hover, a:active, a:focus) .dropdown-ul,
header nav ul li:is(:hover, :active) .dropdown-ul {
    opacity: 1;
    transform: translateY(-1px);
    visibility: visible;
}

#sidebarmenu .offcanvas-body ul li a,
header nav ul li a {
    position: relative;
    display: block;
    padding: 12px 24px;
    font-size: 1.2rem;
    color: var(--black);
    transition: var(--default-transition);
    font-weight: 500;
}

#sidebarmenu .offcanvas-body ul li a::before,
header nav ul li a::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    height: 2px;
    border-radius: 4px;
    width: 0;
    transition: var(--default-transition);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

#sidebarmenu .offcanvas-body ul li a:is(:hover, .active, :active, :focus)::before,
header nav ul li a:is(:hover, .active, :active, :focus)::before {
    width: 100%;
    left: 0;
    right: auto;
}

header nav ul li a:is(:hover, .active, :active, :focus) {
    color: var(--primary-color);
}

#sidebarmenu .offcanvas-body ul li .dropdown-ul {
    position: relative;
    overflow: hidden;
    transition: var(--default-transition);
    transform: scaleY(0);
    height: 0;
    transform-origin: top;
}

#sidebarmenu .offcanvas-body ul li:has(a.active, a:hover, a:focus) .dropdown-ul {
    height: auto;
    transform: scaleY(1);
}

#sidebarmenu .offcanvas-body {
    background: url(../img/hero-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.first-element {
    padding-top: 10rem;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    background: url(../img/hero-bg.svg);
    background-size: contain;
    width: 100%;
    aspect-ratio: 1440 / 724;
    background-repeat: no-repeat;
}
.hero-section img{
    filter: drop-shadow(0 23px 10px #0007) drop-shadow(0 12px 10px #ee542277);
}
@media (max-width:992px) {
    .hero-section {
        aspect-ratio: unset;
    }
}

.hero-title {
    font-weight: 700;
    font-size: 83px;
    color: #181E4B;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.hero-title>* {
    font-family: inherit;
}

.hero-title span {
    position: relative;
    color: var(--primary-color);
}

.hero-title span::before,
.main-heading span::before 
{
    position: absolute;
    content: '';
    bottom: 4px;
    left: 16%;
    width: 100%;
    height: 12%;
    background: url(../img/shape.svg);
    z-index: -1;
    background-size: 100%;
    background-repeat: no-repeat;
    transform: scale(1.4);
}

@media(max-width:992px) {
    .hero-title {
        font-size: 60px;
    }

}

@media(max-width:768px) {
    .hero-title {
        font-size: 40px;
    }

}

/* SERVICE SECTION */
.service-card
{
    position: relative;
    overflow: hidden;
    transition: var(--default-transition);
    height: 100%;
}
.service-card::before{
    position: absolute;
    content: '';
    width: 100%;
    aspect-ratio: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)scale(1.75);
    background: conic-gradient( #fff ,#fff,#FF5A00FF);
    z-index: -1;
    animation: rotateEl 3s linear infinite;
}
@keyframes rotateEl{
    0%{
        transform: translate(-50%,-50%)scale(1.75)rotate(0);
    }100%{
        transform: translate(-50%,-50%)scale(1.75)rotate(360deg);
    }
}
.service-card::after{
    position: absolute;
    content: '';
    inset: 4px;
    background: var(--white);
    z-index: -1;
}

.steps-section
{
    position: relative;
    background: url('../img/bg.png');
    background-position: right -78px;
    background-repeat: no-repeat;
}
@media(max-width:768px){
    .steps-section{
        background: url('../img/bg.png'); 
        background-repeat: no-repeat;
        background-position: center center !important;
    }
}
.steps-section ul li:first-child svg{
    fill: var(--bs-danger);
}
.steps-section ul li:nth-child(2) svg{
    fill: var(--bs-warning);
}
.steps-section ul li:last-child svg{
    fill: var(--bs-success);
}
.steps-section .imgBx img
{
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.25);
    border: 6px solid #fff;
}
.text-justify{
    text-align: justify;
}
.owl-dots
{
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 30px 0 0;
}
.owl-dots button
{
    width: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    transition: var(--default-transition);
    border: 2px solid var(--primary-color) !important;
}
.owl-dots button.active{
    background: var(--primary-color);
}
/* client-testimonial */
.testimonials
{
    position: relative;
}
.testimonials::before{
    display: none;
    position: absolute;
    content: '';
    left: -327px;
    width: 654px;
    aspect-ratio: 1;
    bottom: 0;
    background: url(../img/bg.png);
    z-index: -1;
    background-size: 100%;
    opacity: 0.75;
}
.client-testimonial
{
    position: relative;
}
.client-testimonial .item
{
    position: relative;
    padding: 50px 50px 100px;
    border-radius: 20px;
}
.client-testimonial .item .content
{
    position: relative;
    border-radius: 10px;
    background: #fff;
    padding: 60px 30px 60px;
    padding-bottom: 10px;
    box-shadow: 0 6.25rem 5rem 0 rgba(0, 0, 0, 0.02), 
    0 4.05063rem 2.92813rem 0 rgba(0, 0, 0, 0.0152), 
    0 2.4075rem 1.5925rem 0 rgba(0, 0, 0, 0.0121), 
    0 1.25rem 0.8125rem 0 rgba(0, 0, 0, 0.01), 
    0 0.50938rem 0.4075rem 0 rgba(0, 0, 0, 0.0079), 
    0 0.11563rem 0.19687rem 0 rgba(0, 0, 0, 0.0048) !important;
}
.client-testimonial .item .content::before{
    position: absolute;
    inset: 0;
    z-index: -1;
    content: '';
    transform: translate(20px,20px);
    border-radius: inherit;
    background: inherit;
    box-shadow: inherit;
}
.client-testimonial .imgBx{position: absolute;top: 0;left: 0;z-index: 10;}
.client-testimonial .imgBx img
{
    position: relative;
    width: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
}
@media(max-width:768px){
    .client-testimonial .imgBx img{width: 80px;}

    .client-testimonial .item
    {
        position: relative;
        padding: 40px 40px 80px;
        border-radius: 20px;
    }
    .client-testimonial .item .content{padding: 40px 25px 40px;padding-bottom: 10px;}

}

.gallery-sec
{
    position: relative;
}
.gallery-sec img
{
    border: 2px solid var(--primary-color);
    transition: var(--default-transition);
    
}
.gallery-sec img:hover{
    transform: scale(1.05);
    box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.3048);
}

/* ANIMATIONS */
.shake-bottom {
  -webkit-animation: shake-bottom 2s cubic-bezier(.455, .03, .515, .955) infinite both;
  animation: shake-bottom 2s cubic-bezier(.455, .03, .515, .955) infinite both;
}

@-webkit-keyframes shake-bottom {
  /* 0–50% = active shaking (2s)
     50–100% = rest (2s) */
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
  10% { transform: rotate(2deg); }
  20%, 40%, 60% { transform: rotate(-4deg); }
  30%, 50%, 70% { transform: rotate(4deg); }
  80% { transform: rotate(-2deg); }
  90% { transform: rotate(2deg); }
  50%, 100% { transform: rotate(0deg); } /* pause period */
}

@keyframes shake-bottom {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
  10% { transform: rotate(2deg); }
  20%, 40%, 60% { transform: rotate(-4deg); }
  30%, 50%, 70% { transform: rotate(4deg); }
  80% { transform: rotate(-2deg); }
  90% { transform: rotate(2deg); }
  50%, 100% { transform: rotate(0deg); } /* pause period */
}
.icon-group {
  display: flex;
}
.icon-item 
{
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #080809;
    background-color: whitesmoke;
    transition: var(--default-transition);
    height: 2.5rem;
    width: 2.5rem;
    border: 0;
    font-size: 1rem;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1) !important;
}
.icon-item:hover{
    background: var(--primary-color);
    color: var(--white);
}

footer{
    position: relative;
    background: url('../img/hero-bg.svg');
    background-size: auto 120%;
    background-position: right top ;
    background-repeat: no-repeat;
    border-top: 12px solid #fff1da;
}
@media(max-width:768px){
    footer{
        background-size: 150% auto;
    }
}

.shadow {
    -webkit-box-shadow: 0 6.25rem 5rem 0 rgba(0, 0, 0, 0.02)
    , 0 4.05063rem 2.92813rem
46.8501px
 0 rgba(0, 0, 0, 0.0152)
 , 0 2.4075rem 1.5925rem 0 rgba(0, 0, 0, 0.0121)
 , 0 1.25rem 0.8125rem 0 rgba(0, 0, 0, 0.01)
 , 0 0.50938rem 0.4075rem 0 rgba(0, 0, 0, 0.0079)
 , 0 0.11563rem 0.19687rem 0 rgba(0, 0, 0, 0.0048) !important;
    box-shadow: 0 6.25rem 5rem 0 rgba(0, 0, 0, 0.02)
    , 0 4.05063rem 2.92813rem 0 rgba(0, 0, 0, 0.0152)
    , 0 2.4075rem 1.5925rem 0 rgba(0, 0, 0, 0.0121)
    , 0 1.25rem 0.8125rem 0 rgba(0, 0, 0, 0.01)
    , 0 0.50938rem 0.4075rem 0 rgba(0, 0, 0, 0.0079)
    , 0 0.11563rem 0.19687rem 0 rgba(0, 0, 0, 0.0048) !important;
}
/* PAGES */
.page-header
{
    position: relative;
    background:linear-gradient(#00000099,#00000099,#000000),url(../img/page-bg.jpeg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.page-header.tempo-header{
    background:linear-gradient(#00000099,#00000099,#000000),url('../img/src/TEMPO TRAVELLER ON RENT/pagecover.jpeg');
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
}
.page-header.car-header{
    background:linear-gradient(#00000099,#00000099,#000000),url('../img/src/CARS/COVER PAGE/1.jpeg');
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.page-header p{display: flex;align-items: center;justify-content: center;gap: 12px;}
.page-header p a
{
    color: var(--white);
}

.service-wrapper{overflow: hidden;border-radius: 0;border: none !important;background: transparent !important;height: 100%;}
.service-wrapper .card-header{overflow: hidden;border-radius: 1rem; background: transparent !important;border: none;}
.service-wrapper img
{
    position: relative;
    width: 100%;
    aspect-ratio: 2;
    transition: var(--default-transition);
    object-fit: cover;
}
.service-wrapper:hover img{
    transform: scale(1.05);
}


.galery-section
{
    position: relative;
    columns: 3;
}
.galery-section img
{
    width: 100%;
    margin-bottom: 1rem;
    cursor: pointer;
}
.galery-section:hover img:not(:hover){
    filter: grayscale(1);
}
.galery-section img:hover{
    transform: scale(1) !important;
}

.why-choose-us ol li
{
    position: relative;
    margin-bottom: 12px;
    padding-bottom: 11px;
    user-select: none;
    cursor: pointer;
}
.why-choose-us ol li::marker{
    color: var(--primary-color);
}
.why-choose-us ol li::before
{
    position: absolute;
    right: 0;
    transition: var(--default-transition);
    height: 4px;
    width: 0;
    bottom: 0;
    content: '';
    background: var(--primary-color);
}
.why-choose-us ol li:hover::before{
    width: 100%;
    right: auto;
    left: 0;
}


.lead-form-section .lead-form .form-head
{
    background: var(--third-color);
    position: relative;
}
.lead-form-section .lead-form .form-head::before{
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 88%;
    height: 15px;
    background: var(--white);
    transform: translateX(-50%);
    border-radius: 0 0 7px 7px;
}
.lead-form-section .lead-form img
{
    max-width: 90px;
    aspect-ratio: 1;
    object-fit: contain;
}
.lead-form-section .form-body > div{
    border-radius: 0 0 0.75rem 0.75rem;
}
.lead-form .form-body label
{
    position: relative;
    width: 100%;
}
.lead-form .form-body label svg
{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);    
    fill: var(--third-color);
}
.lead-form .form-body label input[type=submit]:focus{
    background: var(--third-color) !important;
    /* color: ; */
}
.lead-form .form-body label:has(svg) input{
    padding-left: 32px;
} 
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}