* {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #FFC000;
    --title-font: 'Radio Canada', sans-serif;
    --body-font: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5{
    font-family: var(--title-font);
}

p, span{
    font-family: var(--body-font);
}
/* Navbar */
.navbar{
    background-color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: #000000;
    padding: 10px 15px !important;
    border-radius: 25px;
}

.navbar-nav .nav-link:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 25px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 25px;
}

/* Hero Section */
.hero {
    background-image: url('../images/car-rental-service-in-sasan-gir.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 200px 0;
}

@media (max-width: 768px) {
    .hero {
        background-position: center center;
    }
}

h1 {
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgb(0, 0, 0), 0 0 1em rgb(255, 255, 255), 0 0 0.2em rgb(55, 55, 55);
    font-weight: 600 !important;
}

.lead {
    text-shadow: 1px 1px 2px rgb(0, 0, 0), 0 0 1em rgb(0, 0, 0), 0 0 0.2em rgb(0, 0, 0);
    padding: 0px 8px;
    font-weight: 600;
}

/* Span */
.title-start {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    font-family: var(--title-font);
    text-transform: capitalize;
    position: relative;
    margin-bottom: 25px;
}

.title-start:before {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    height: 2px;
    width: 50px;
    top: auto;
    bottom: 7px;
    left: -60px; /* Adjusted left value */
}

.title-start:after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    margin-top: 3px;
    height: 2px;
    width: 30px;
    top: 7px;
    left: -42px; /* Adjusted left value */
}

.title-end {
    margin-left: 0;
}

.title-end:before {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    height: 2px;
    width: 50px;
    bottom: 7px;
    right: -10px;
    left: auto;
    transform: translate(100%, 0);
}

.title-end:after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    height: 2px;
    width: 30px;
    top: 7px;
    right: -10px;
    left: auto;
    margin-top: 3px;
    transform: translate(100%, 0);
}

.sec-title {
    margin-top: -0.25em;
    font-size: 44px;
    text-transform: capitalize;
    line-height: 54px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .sec-title {
         margin-top: 25px !important;
    }
}

/*About Us*/
.img-box{
    position: relative;
}

.img2{
    position: absolute;
    top: 200px;
    left: 200px;
}

@media (max-width: 768px) {
    .img2 {
        top: 170px;
        left: 80px;
    }
}

.icon-info{
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-background {
    background-color: var(--primary-color); 
    padding: 15px; 
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.phone-icon {
    color: black; 
    font-size: 24px;
}

.icon-text a{
    text-decoration: none;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
}

.icon-text .btn .btn-warning{
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

/* Our Awesome Fleet */
.nav-pills {
    justify-content: center;
}

.nav-link {
    color: var(--primary-color);
}

.nav-pills .nav-link {
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    margin: 5px;
}

.nav-pills .nav-link:hover {
    color: white;
    background-color: var(--primary-color);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: white;
    background-color: var(--primary-color);
}

.price-tab {
    color: white;
    background-color: var(--primary-color);
    border-radius: 35px;
    padding: 20px 0px;
    font-weight: bold;
    font-size: large;
}

/* Call Us to Book */
.call-us{
    background-image: url('../images/car-rental-about-us-bg.jpg');
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
}

.call-us-text{
    display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    max-width: 1050px;
    padding: 60px 40px 60px 40px;
}

.call-us-text a{
    text-decoration: none;
    font-size: 55px;
    font-weight: 600;
}

.call-us-text p{
    font-size: 25px;
    font-weight: 400;
    max-width: 850px;
}

@media (max-width: 768px) {
    .call-us-text a{
        font-size: 36px;
        font-weight: 600;
    }
    .call-us-text p{
        font-size: 20px;
        font-weight: 400;
    }
}

/*Why Choose Us*/
.card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.card-text {
    color: gray;
}

.card {
transition: all 0.5s;
}

.card:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.card:hover .icon,
.card:hover .card-text {
    color: #fff;
}

/* Testimoinal */
.testimo{
    background-color: #000000; 
    color: #fff;
    padding-top: 60px; 
    padding-bottom: 80px;
}

.carousel .carousel-item {
    color: #999;
    overflow: hidden;
    min-height: 120px;
    font-size: 13px;
}

.carousel .media img {
    width: 80px;
    height: 80px;
    display: block;
    float: left;
    border-radius: 50%;
}

.carousel .testimonial {
    padding: 0 15px 0 150px;
    position: relative;
}

.carousel .testimonial::before {
    content: "\201C";
    font-family: Arial, sans-serif;
    color: #e2e2e2;
    font-weight: bold;
    font-size: 68px;
    line-height: 54px;
    position: absolute;
    left: 100px;
    top: 0;
}

.carousel .overview b {
    text-transform: uppercase;
    color: var(--primary-color);
}

.carousel .carousel-indicators {
    bottom: -40px;
}

/* Contact Us */
.contact-us{
    align-items: center;
    justify-content: center;
}

.contact-us .col-md-6{
    padding: 0px 0px;
    max-width: 500px;
    min-height: 565px;
}

.contact-us h2, p {
    text-align: left !important;
}

.contact-us h2 {
    font-weight: 700;
}

.contact-us .btn{
    font-size: 12px !important;
}

.btn-warning{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer */
.footer{
    background-color: #000000 !important;
    padding: 55px 25px 25px 25px;
}

.footer h4 {
    color: var(--primary-color) !important;
    font-weight: bold;
    text-decoration: underline;
}

.footer P {
    font-family: Arial, Helvetica, sans-serif !important;
}

.footer a {
    color: #ffffff !important;
    text-decoration: none !important;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50%;
}