:root {
    --yellow: #ffc107;
    --dark: #0f0f0f;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
}

a {
    text-decoration: none;
    color: #e9e7e7;
}

a:hover {
    color: #f4b21c;
}

/*About*/
.About-intro {
    position: relative;
    margin-top: 3rem;
    background: url("/img/about.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem;
    overflow: hidden;
    color: #fff;
}

/* ================= NAVBAR ================= */
/* ===== NAVBAR BASE ===== */

.custom-navbar {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.navbar-brand img {
    height: 65px;
}

/* ===== NAV LINKS ===== */

.navbar-nav .nav-link {
    font-weight: 600;
    margin: 0 12px;
    color: #222;
    position: relative;
}

.navbar-nav .nav-link:hover {
    /* color: #f4b21c; */
        color: #0dab0d;
}

/* underline hover  */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #0dab0d;
    transition: .3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* active link */
.navbar-nav .active {
    /* color: #f4b21c; */
            color: #0dab0d;
}

/*  CALL BUTTON  */

.call-btn {
    /* background: #f4b21c;
    color: #000; */
        background: #146c43d4;
            color: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.call-btn:hover {
    background: #000;
    color: #fff;
}

/*  MOBILE  */

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}


@media(max-width:991px) {

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        text-align: center;
    }

    .call-btn {
        display: block;
        margin-top: 15px;
        text-align: center;
    }

}

/*  HERO  */
.cab-hero {
    padding: 70px 0 90px;
    /* padding-top: 70px; */
    background: linear-gradient(120deg, #d7f1e5, #e6f2ff, #fff5d6);
    background-size: 200% 200%;
    animation: bgMove 8s infinite alternate ease-in-out;
    position: relative;
    overflow: hidden;
}

@keyframes bgMove {
    0% {
        background-position: left
    }

    100% {
        background-position: right
    }
}

.hero-top {
    margin-bottom: 45px;
    margin-top: 80px;
}

.call-text {
    font-weight: 700;
    font-size: 32px;
}

/*  BOOKING CARD  */
.booking-card {
    background: rgba(0, 0, 0, 0.92);
    padding: 28px;
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.booking-tabs,
.booking-subtabs {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.booking-tabs button {
    flex: 1;
    padding: 11px;
    border: none;
    background: #e9ecef;
    font-weight: 600;
}

.booking-tabs button.active {
    background: #000;
    color: #fff;
}

.booking-subtabs {
    margin: 14px 0 18px;
}

.booking-subtabs button {
    flex: 1;
    padding: 9px;
    border: none;
    background: #f1f1f1;
}

.booking-subtabs button.active {
    background: var(--yellow);
}

.booking-card .form-control {
    height: 48px;
    border-radius: 8px;
    border: none;
}

.search-btn {
    width: 100%;
    padding: 13px;
    border-radius: 40px;
    border: none;
    background: var(--yellow);
    font-weight: 600;
    transition: .3s;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/*  RIGHT SIDE  */
.hero-right {
    position: relative;
}

.shape-bg {
    position: absolute;
    right: 0;
    top: 40px;
    width: 70%;
    height: 80%;
    background: #c7d52f;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.booking-label {
    position: absolute;
    /* left:120px;
  top:90px; */
    left: 92px;
    top: 45px;
    background: #000;
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 600;
    z-index: 3;
}

.car-img {
    width: 90%;
    height: 80%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 40px 30px rgba(0, 0, 0, 0.4));
    animation: carFloat 4s ease-in-out infinite;
}

@keyframes carFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

/*  FLOATING WHATSAPP  */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

/*  MOBILE  */
@media(max-width:992px) {
    .shape-bg {
        display: none
    }

    .booking-label {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 15px;
        display: inline-block;
    }

    .car-img {
        width: 100%;
        margin-top: 20px
    }
}

/*  INTRO SECTION  */

.intro-section {
    padding: 40px 0;
    margin-top: -60px;
    /* hero overlap effect */
    position: relative;
    background: #ffffff;
}

/* glass card */
.intro-card {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* title */
.intro-title {
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-title span {
    color: #084298;
}

/* text */
.intro-text {
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* button */
.intro-btn {
    margin-top: 20px;
    background: #084298;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;
}

.intro-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* image animation same as hero */
.intro-car {
    max-width: 90%;
    filter: drop-shadow(0 40px 30px rgba(0, 0, 0, 0.25));
}

/* floating animation */
.floating {
    animation: floatCar 4s ease-in-out infinite;
}

@keyframes floatCar {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

/* mobile */
@media(max-width:992px) {
    .intro-section {
        margin-top: 0;
        padding: 60px 0;
    }
}

.taxi-section {
    padding: 80px 0;
    background: #f7f8fb;
}

/*  TAXI SECTION  */

.taxi-section {
    padding: 80px 0;
    background: #f9fafb;
}

.section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

/*  CARD  */

.taxi-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s;
}

.taxi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/*  TAG  */

.taxi-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    /* background: #f4b21c; */
    padding: 5px 14px;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/*  IMAGE  */

.taxi-img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin: 20px 0;
}

/*  TEXT  */

.price {
    font-weight: 700;
    margin-bottom: 15px;
}

/*  BUTTON  */

.book-btn {
    background: #2a8b53;
    /* background: #f4b21c; */
    border: none;
    padding: 10px;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
}

.book-btn:hover {
    background: #000;
    color: #fff;
}

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
}

.taxi-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: .3s;
    position: relative;
}

.taxi-card:hover {
    transform: translateY(-8px);
}

.taxi-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2a8b53;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.taxi-img {
    width: 85%;
    margin: 30px auto 15px;
}

.price {
    font-weight: 600;
    margin: 10px 0;
}

.book-btn {
    /* background: #ffc107; */
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
}

/*  ROUTE SECTION  */

.route-section {
    /* background: #f4b21c; */
    background: linear-gradient(135deg, #4dabf7, #51cf66);
    
    padding: 80px 0;
}

.route-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

/*  ROUTE CARD  */

.route-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    height: 100%;
    display: flex;
    flex-direction: column;
    transition: .3s;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/*  IMAGE  */

.route-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

/*  TITLE  */

.route-card h6 {
    padding: 18px 18px 0;
    font-weight: 600;
    min-height: 60px;
}

/*  BOTTOM SECTION  */

.route-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border-top: 1px solid #eee;
}

.vehicle {
    background: #000;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.route-price {
    font-weight: 700;
    color: #0909a5c2;
}


/*  FAQ  */

.faq-section {
    padding: 80px 0;
    text-align: center;
}

.faq-subtitle {
    color: #888;
}

.faq-title {
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-box {
    /* max-width:900px; */
    margin: auto;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    background: #f3f3f3;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    padding: 15px 25px;
    text-align: left;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}



/*  TESTIMONIAL  */
.testimonial-section {
    padding: 90px 0;
    background: #f5f5f5;
}

.testimonial-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform .5s ease;
}

/* CARD */
.testimonial-card {
    flex: 0 0 33.333%;
    padding: 25px;
    margin: 0 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 40px;
    border-width: 12px 12px 0;
    border-style: solid;
    border-color: #fff transparent transparent;
}

.quote {
    font-size: 28px;
    color: #f4b400;
    margin-bottom: 10px;
}

.testimonial-card p {
    color: #555;
    line-height: 1.6;
}

.testimonial-card h4 {
    margin-top: 15px;
    font-weight: 600;
}

/* arrows */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
}

.prev {
    left: -20px;
}

.next {
    right: -20px;
}

.nav-btn:hover {
    background: #f4b400;
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .testimonial-card {
        flex: 0 0 50%;
    }
}

@media(max-width:576px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.footer {
    background: #111;
    color: #ddd;
    padding: 70px 0 30px;
    font-size: 14px;
}

.footer-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: .3s;
}

.footer-links li:hover {
    color: #f4b400;
    padding-left: 5px;
}

.explore {
    margin-top: 20px;
    color: #fff;
    cursor: pointer;
}

.footer hr {
    border-color: #333;
    margin: 30px 0;
}

/* CONTACT */
.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-right i {
    margin-left: 15px;
    cursor: pointer;
    transition: .3s;
}

.contact-right i:hover {
    color: #f4b400;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.policy-links span {
    margin-left: 15px;
    cursor: pointer;
}

.policy-links span:hover {
    color: #f4b400;
}

/* RESPONSIVE */
@media(max-width:768px) {

    .footer-contact,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

.booking-subtabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.booking-subtabs button {
    flex: 1;
    padding: 10px;
    border: none;
    background: #eee;
    cursor: pointer;
    font-weight: 600;
}

.booking-subtabs button.active {
    background: #ff6600;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

@font-face {
    font-family: 'Kalam';
    src: url('assest/Kalam/Kalam-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Kalam';
    src: url('assest/Kalam/Kalam-Bold.ttf') format('truetype');
    font-weight: 700;
}

.hindi-text {
    font-family: 'Kalam', cursive;
    font-size: 2.5rem;
    font-weight: 700;
}

.hindi-text {
    font-family: 'Kalam', cursive;
    font-size: 2.4rem;
    color: darkblue;
    border-radius: 10px;
}