/* =================================== Haeder =========================== */

.header-2 .header-2-wrapper .header-2-logo img {
    max-height: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.header-2 .mobile-header .mobile-logo img {
    max-height: 100%;
}

.header-2 .header-2-wrapper .header-2-button .btn {
    min-width: 100px;
    padding: .5rem 1.5rem;
    background: #198754;
    color: white;
    border-color: #198754;
}

.header-2 {
    top: 38px;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

/* =================================== Haeder =========================== */

/* =================================== Topbar =========================== */

/* ✅ TOPBAR */
.vt-topbar {
    background: #0b0f16;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.vt-topbar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.vt-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.vt-topbar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s ease;
}

.vt-topbar-link:hover {
    color: #ffc107;
}

.vt-topbar-sep {
    color: rgba(255, 255, 255, 0.35);
}

.vt-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vt-topbar-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s ease;
}

.vt-topbar-whatsapp:hover {
    background: #1ebc57;
}

/* ✅ MOBILE RESPONSIVE */
@media(max-width: 576px) {
    .vt-topbar-wrap {
        justify-content: center;
        text-align: center;
    }

    .vt-topbar-left {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .vt-topbar-right {
        justify-content: center;
        width: 100%;
    }

    .vt-topbar-link {
        font-size: 12px;
    }
}

/* =================================== Topbar =========================== */

/* =================================== Banner =========================== */

.hero-full-image {
    height: auto;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-area-2 img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-area-2 {
    background-color: #fff5e1;
    top: 78px;
}

@media (min-width: 0) and (max-width: 991.98px) {
    .hero-area-2 {
        top: 109px !important;
    }
}

/* =================================== Banner =========================== */

/* =================================== Counter Section =========================== */

.impact-section-2 {
    position: relative;
    background: #fff;
    padding: 90px 0 30px;
    overflow: hidden;
}

/* Curved color background shapes */
.impact-section-2::before,
.impact-section-2::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    opacity: 0.35;
    filter: blur(0px);
    z-index: 0;
}

.impact-section-2::before {
    background: #dbeafe;
    /* light blue */
    left: -140px;
    top: 120px;
}

.impact-section-2::after {
    background: #fef3c7;
    /* light yellow */
    right: -140px;
    bottom: -160px;
}

/* Cards */
.impact-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: 0.3s ease;
}

/* Top corner soft blob colors */
.impact-card::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    top: -25px;
    right: -25px;
    border-radius: 45% 55% 60% 40% / 55% 40% 60% 45%;
    opacity: 0.35;
}

/* Card themes */
.impact-card.pink::before {
    background: #fecaca;
}

.impact-card.green::before {
    background: #bbf7d0;
}

.impact-card.blue::before {
    background: #bfdbfe;
}

.impact-card.orange::before {
    background: #fde68a;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Icon bubble */
.impact-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.impact-icon.pink {
    background: #ffe4e6;
    color: #e11d48;
}

.impact-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.impact-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.impact-icon.orange {
    background: #fef3c7;
    color: #d97706;
}

/* Number + text */
.impact-card h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #111827;
}

.impact-card p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

/* Mobile */
@media(max-width:768px) {
    .impact-title {
        font-size: 30px;
    }
}

/* =================================== Counter Section =========================== */

/* =================================== Home About =========================== */

.premium-taxi-about {
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Premium Left Image Box */
.premium-img-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.premium-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    transform: scale(1.02);
    transition: 0.6s ease;
}

.premium-img-box:hover .premium-img {
    transform: scale(1.08);
}

/* Premium Overlay */
.premium-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.15) 45%,
            rgba(0, 0, 0, 0.75) 100%);
}

/* Floating Badge */
.premium-float-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 700;
    z-index: 2;
}

.premium-float-badge i {
    color: #ffc107;
}

/* Right Side Premium Badge */
.premium-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    background: #fff7db;
    border: 1px solid #ffd77a;
    font-weight: 700;
    font-size: 14px;
    color: #c47b00;
}

/* Title */
.premium-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #111827;
}

.premium-title span {
    color: #c47b00;
}

.premium-desc {
    font-size: 18px;
    color: black;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Features as Premium Cards */
.premium-feature-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
    transition: 0.3s ease;
}

.premium-feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-icon.yellow {
    background: #fff6da;
    color: #c47b00;
}

.feature-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.feature-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.feature-icon.red {
    background: #fee2e2;
    color: #dc2626;
}

.feature-text h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}

.feature-text p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

/* Responsive Fix */
@media(max-width: 991px) {
    .premium-img {
        height: 420px;
    }

    .premium-title {
        font-size: 30px;
    }
}

@media(max-width: 991px) {

    /* (Optional) thoda badge ko bhi adjust kar do */
    .premium-float-badge {
        top: 12px;
        left: 12px;
        font-size: 13px;
        padding: 8px 12px;
    }

    .premium-img {
        height: 420px;
    }

    .premium-title {
        font-size: 30px;
    }
}

/* =================================== Home About =========================== */

/* =================================== Partner Section =========================== */

/* Premium Partners Section */
.partners-section-premium {
    background: #fdd98b1f;
    position: relative;
}

/* Background Shapes */
.partners-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Badge */
.partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff7db;
    border: 1px solid #ffd77a;
    font-weight: 800;
    font-size: 14px;
    color: #c47b00;
}

.partners-badge i {
    color: #ffc107;
}

/* Title */
.partners-title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 10px;
    color: #111827;
}

.partners-title span {
    color: #c47b00;
}

.partners-subtitle {
    margin: 0 auto;
    max-width: 560px;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* Premium Partner Card */
.partner-card-premium {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 193, 7, 0.55);
}

/* Logo Box */
.partner-logo-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-premium {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1 !important;
    filter: none !important;
}

/* Swiper spacing */
.partners-carousel .swiper-slide {
    height: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .partners-title {
        font-size: 30px;
    }

    .partner-logo-box {
        height: 60px;
    }

    .partner-logo-premium {
        max-width: 140px;
        max-height: 50px;
    }
}

/* =================================== Partner Section =========================== */

/* =================================== Why Choose Section Section =========================== */

.features-premium {
    background: #fff;
    position: relative;
}

/* Badge */
.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff7db;
    border: 1px solid #ffd77a;
    font-weight: 800;
    font-size: 14px;
    color: #c47b00;
}

.features-badge i {
    color: #ffc107;
}

/* Heading Title */
.features-title {
    font-size: 42px;
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 12px;
}

.features-subtitle {
    max-width: 620px;
    margin: 0 auto;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* Premium Cards */
.feature-card-premium {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 24px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    height: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.feature-card-premium:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 193, 7, 0.55);
}

/* Icon box */
.feature-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

/* Theme Colors */
.feature-icon-box.yellow {
    background: #fff6da;
    color: #c47b00;
}

.feature-icon-box.green {
    background: #dcfce7;
    color: #16a34a;
}

.feature-icon-box.blue {
    background: #dbeafe;
    color: #2563eb;
}

/* Text */
.feature-card-title {
    font-size: 20px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 10px;
}

.feature-card-text {
    font-size: 16px;
    color: #6b7280;
    line-height: normal;
    margin-bottom: 0;
}

/* Responsive */
@media(max-width: 991px) {
    .features-title {
        font-size: 30px;
    }

    .feature-card-premium {
        padding: 22px 18px;
    }

    .feature-icon-box {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
}

/* =================================== Why Choose Section Section =========================== */

/* =================================== Testimonial Section =========================== */

/* ===== Premium Testimonial Section ===== */
.testimonial-1 {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Dark layer background */
.testi-bg-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            #0b0f16 0%,
            #0b0f16 40%,
            #ffffff 40%,
            #ffffff 100%);
    z-index: -1;
}

/* Badge */
.testi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.18);
    border: 1px solid rgba(255, 193, 7, 0.35);
    color: #ffc107;
    font-weight: 800;
    font-size: 14px;
}

/* Title */
.testi-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Premium Card */
.testi-card-premium {
    background: #fff;
    border-radius: 22px;
    padding: 28px 26px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(17, 24, 39, 0.08);
    transition: all 0.35s ease;
    position: relative;
    min-height: 220px;
}

.testi-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 193, 7, 0.45);
}

/* Quote icon top left */
.testi-quote-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fecc1826;
    color: #fecc18;
    font-size: 20px;
    margin-bottom: 16px;
}

/* Review text */
.testi-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* User */
.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px dashed rgba(17, 24, 39, 0.18);
}

.testi-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffc107;
}

.testi-name {
    font-size: 16px;
    font-weight: 900;
    color: #111827;
    margin: 0;
}

.testi-role {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

/* Swiper Dots Styling */
.testimonial-1 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: rgba(17, 24, 39, 0.25);
}

.testimonial-1 .swiper-pagination-bullet-active {
    background: #ffc107;
}

/* Responsive */
@media (max-width: 991px) {
    .testi-title {
        font-size: 28px;
    }

    .testi-card-premium {
        padding: 22px 18px;
    }
}

/* =================================== Testimonial Section =========================== */

/* =================================== Blog Section =========================== */

.blog-area-1 {
    background: #ffffff;
}

/* Badge */
.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff7db;
    border: 1px solid #ffd77a;
    font-weight: 800;
    font-size: 14px;
    color: #c47b00;
}

/* Title */
.blog-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #111827;
}

.blog-subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

/* Image */
.blog-img-wrap {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid #f1f1f1;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.08);
}

/* Body */
.blog-body {
    padding: 18px 18px 20px;
}

/* Meta */
.blog-meta {
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 10px;
}

/* Heading */
.blog-heading {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 10px;
}

.blog-heading a {
    text-decoration: none;
    color: #111827;
    transition: 0.3s ease;
}

.blog-heading a:hover {
    color: #c47b00;
}

/* Desc */
.blog-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Footer */
.blog-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.blog-readmore {
    font-weight: 800;
    font-size: 14px;
    color: #c47b00;
    text-decoration: none;
    transition: 0.3s ease;
}

.blog-readmore:hover {
    color: #111827;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-title {
        font-size: 28px;
    }

    .blog-img {
        height: 200px;
    }
}

/* =================================== Blog Section =========================== */

/* =================================== Footer Section =========================== */

:root {
    --waw-bg: #0b1220;
    --waw-card: #0f172a;
    --waw-text: #e5e7eb;
    --waw-muted: rgba(229, 231, 235, .72);
    --waw-line: rgba(255, 255, 255, .08);
    --waw-shadow: 0 18px 55px rgba(0, 0, 0, .35);
    --waw-radius: 16px;
}

.wa-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99999;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* floating button */


.wa-fab svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* panel */
.wa-panel {
    width: 320px;
    max-width: calc(100vw - 36px);
    background: linear-gradient(180deg, rgba(34, 197, 94, .12), rgba(255, 255, 255, 0));
    border: 1px solid var(--waw-line);
    border-radius: var(--waw-radius);
    box-shadow: var(--waw-shadow);
    overflow: hidden;
    margin-bottom: 10px;
    display: none;
}

.wa-widget.open .wa-panel {
    display: block;
}

.wa-header {
    background: var(--waw-bg);
    color: var(--waw-text);
    padding: 12px 12px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--waw-line);
}

.wa-header .title {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
}

.wa-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #16a34a;
    color: white;
    font-weight: 800;
}

.wa-close {
    border: none;
    background: transparent;
    color: var(--waw-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 6px 8px;
    line-height: 1;
}

.wa-body {
    background: var(--waw-card);
    padding: 12px;
}

/* bubbles */
.wa-msg {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 10px 0;
}

.wa-avatar {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .18);
    border: 1px solid rgba(34, 197, 94, .35);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #86efac;
    font-weight: 800;
    font-size: 12px;
}

.wa-bubble {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--waw-line);
    color: var(--waw-text);
    padding: 10px 12px;
    border-radius: 14px;
    max-width: 240px;
}

.wa-bubble .hint {
    display: block;
    color: var(--waw-muted);
    font-size: 12px;
    margin-top: 3px;
}

/* clickable bubble buttons */
.wa-bubble-btn {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    color: inherit;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.wa-footer {
    padding: 10px 12px 12px;
    background: var(--waw-card);
    border-top: 1px solid var(--waw-line);
    color: var(--waw-muted);
    font-size: 12px;
}

#call-button {
    background-color: #28a745;
}

#call-button:hover {
    background-color: white;
    color: #ffb300;
}

.wa-fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: var(--waw-shadow);
    display: grid;
    place-items: center;
    background: #1daa61;
}

.action-button {
    position: fixed;
    left: 20px;
    right: auto;
    bottom: 15px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.footer-1 .footer-nav-div {
    position: relative;
    z-index: 2;
    background-color: #3b3b3b;
    color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-1 .footer-nav-div .footer-brand img {
    max-width: 210px;
}

.footer-1 .footer-nav-div .footer-brand {
    margin-bottom: 10px;
}

.footer-1 p a {
    color: #fecc18;
}

.footer-1 .copyright-div .social-nav li {
    background: #fecc18;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-1 .copyright-div .social-nav a {
    color: black;
}

/* =================================== Footer Section =========================== */

/* =================================== Package Section =========================== */

.package-section {
    background: #fff;
}

/* Heading Badge */
.package-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff7db;
    border: 1px solid #ffd77a;
    font-weight: 800;
    font-size: 14px;
    color: #c47b00;
}

.package-title {
    font-size: 40px;
    font-weight: 900;
    color: #111827;
}

.package-subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-top: 10px;
}

/* Package Card */
.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

/* Image Box */
.package-img-box {
    position: relative;
    overflow: hidden;
    padding: 18px;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.5s ease;
}

.package-card:hover .package-img {
    transform: scale(1.06);
}

/* Tag Badge */
.package-tag {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: #fecc18;
    color: black;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 10px;
}

/* Content */
.package-content {
    padding: 0px 22px 24px;
}

.package-heading {
    font-size: 22px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 10px;
}

.package-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Button */
.package-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fecc18;
    color: black;
    padding: 10px 18px;
    font-weight: 800;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

.package-btn:hover {
    background: #e9b90a;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .package-title {
        font-size: 28px;
    }

    .package-img {
        height: 200px;
    }
}

/* =================================== Package Section =========================== */

/* =================================== Fleet Section =========================== */

.taxi-fleet-style {
    background: #fff;
}

/* Card */
.fleet-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
    transition: 0.35s ease;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Image */
.fleet-img-wrap {
    background: #f7f7f7;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
}

/* Body */
.fleet-body {
    padding: 18px 18px 20px 18px;
    text-align: center;
}

.fleet-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #111827;
}

/* Info list */
.fleet-info {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.fleet-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.fleet-info li i {
    color: #c47b00;
    font-size: 14px;
}

/* Button */
.fleet-btn {
    background: #fecc18;
    color: black;
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 18px;
    border: none;
    transition: 0.3s ease;
}

.fleet-btn:hover {
    background: #e9b90a;
    color: #fff;
}

/* =================================== Fleet Section =========================== */

/* =================================== Breadcrumb =========================== */

.vt-breadcrumb {
    padding: 135px 0 20px;
    background: linear-gradient(135deg, #0b0f16 0%, #0e1624 100%);
    position: relative;
    overflow: hidden;
}

.vt-breadcrumb::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    width: 220px;
    height: 220px;
    background: rgba(255, 193, 7, 0.20);
    /* 🔥 opacity increase */
    border-radius: 50%;
    z-index: 1;
    filter: blur(0px);
}

.vt-breadcrumb::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.10);
    /* 🔥 opacity increase */
    border-radius: 50%;
    z-index: 1;
    filter: blur(0px);
}


.vt-breadcrumb-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 10px 20px;
}

.vt-breadcrumb-title {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px 0;
    letter-spacing: 0.2px;
}

.vt-breadcrumb-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vt-bc-link {
    color: #ffc107;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s ease;
    font-size: 14px;
}

.vt-bc-link:hover {
    color: #ffffff;
}

.vt-bc-sep {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.vt-bc-current {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 14px;
}

@media(max-width:576px) {
    .vt-breadcrumb-title {
        font-size: 22px;
    }

    .vt-breadcrumb-box {
        padding: 16px;
        border-radius: 16px;
    }
}

/* =================================== Breadcrumb =========================== */

/* =================================== Team Section =========================== */

.team-section {
    background-color: #fbfbfb;
}

/* ✅ TEAM PREMIUM DESIGN */
.vt-team-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px 18px;
    border: 1px solid #f3f3f3;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.vt-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

/* Top highlight line */
.vt-team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: #ffc107;
}

/* Image */
.vt-team-img-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 14px auto;
    padding: 6px;
    background: rgba(255, 193, 7, 0.20);
    border: 2px solid rgba(255, 193, 7, 0.35);
}

.vt-team-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

/* Name + Role */
.vt-team-name {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: #111827;
}

.vt-team-role {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff7db;
    border: 1px solid #ffd77a;
    color: #b77900;
}

.team-carousel .swiper-pagination {
    position: relative !important;
    /* absolute hatao */
    bottom: 0 !important;
    margin-top: 18px !important;
    z-index: 5;
}

/* ✅ Mobile */
@media(max-width:576px) {
    .vt-team-card {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .vt-team-img-wrap {
        width: 105px;
        height: 105px;
    }

    .vt-team-name {
        font-size: 16px;
    }
}

/* =================================== Team Section =========================== */

/* =================================== Services Section =========================== */

/* ✅ SERVICES SECTION PREMIUM */
.vt-services {
    background: #fff;
    position: relative;
}

/* Badge */
.vt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    background: #fff7db;
    border: 1px solid #ffd77a;
    color: #b77900;
}

/* Title */
.vt-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #111827;
}

.vt-title span {
    display: block;
    color: #c47b00;
}

/* Subtitle */
.vt-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 0;
}

/* Service Card */
.vt-service-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #f3f3f3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
    height: 100%;
}

.vt-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

/* Image */
.vt-service-img {
    position: relative;
    height: auto;
    overflow: hidden;
}

.vt-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.vt-service-card:hover .vt-service-img img {
    transform: scale(1.08);
}

.vt-service-body {
    padding: 18px 18px 20px 18px;
}

.vt-service-name {
    font-size: 18px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 8px;
}

.vt-service-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Points */
.vt-service-points {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.vt-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    font-weight: 600;
}

.vt-point i {
    color: #ffc107;
    font-size: 15px;
}

/* Button */
.vt-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    background: #ffc107;
    color: #111;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s ease;
    border: 2px solid #ffc107;
}

.vt-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(255, 193, 7, 0.35);
}

/* ✅ Responsive */
@media(max-width: 576px) {
    .vt-title {
        font-size: 28px;
    }

    .vt-service-img {
        height: 200px;
    }
}

/* =================================== Services Section =========================== */

/* =================================== Faq Section =========================== */

/* ✅ Premium FAQ Section */
.vt-faq-section {
    background: #ffffff;
    position: relative;
}

/* Badge */
.vt-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    background: #fff7db;
    border: 1px solid #ffd77a;
    color: #b77900;
}

/* Title */
.vt-faq-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 10px;
    color: #111827;
}

.vt-faq-title span {
    display: block;
    color: #c47b00;
}

.vt-faq-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 0;
}

/* FAQ Box */
.vt-faq-box {
    background: #fff;
    border-radius: 22px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    padding: 16px;
}

/* Accordion item */
.vt-faq-item {
    border: none;
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 12px;
    background: #ffffff;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.04);
}

/* Button */
.vt-faq-btn {
    font-weight: 900;
    font-size: 15px;
    padding: 16px 16px;
    color: #111827;
    background: #fff;
    border-radius: 16px !important;
    box-shadow: none !important;
}

.vt-faq-btn:focus {
    box-shadow: none !important;
}

/* Remove bootstrap default arrow */
.vt-faq-btn::after {
    display: none;
}

/* Left Icon */
.vt-faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 12px;
    background: #fff7db;
    border: 1px solid #ffd77a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b77900;
    font-size: 13px;
    margin-right: 12px;
    transition: 0.2s ease;
}

/* When open */
.accordion-button:not(.collapsed) .vt-faq-icon {
    background: #ffc107;
    border-color: #ffc107;
    color: #111;
    transform: rotate(45deg);
}

/* Body */
.vt-faq-body {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
    padding: 14px 18px 18px 64px;
}

/* ✅ Mobile */
@media(max-width:576px) {
    .vt-faq-title {
        font-size: 28px;
    }

    .vt-faq-icon {
        width: 22px;
        height: 22px;
        min-width: 20px;
        font-size: 10px;
    }

    .vt-faq-body {
        padding-left: 18px;
    }

    .vt-faq-btn {
        font-size: 14px;
        padding: 4px 20px;
    }
}

/* =================================== Faq Section =========================== */

/* =================================== Gallery =========================== */
.vt-gallery-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.vt-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

/* Image Wrapper */
.vt-gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

/* Image */
.vt-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.vt-gallery-card:hover img {
    transform: scale(1.08);
}

/* Overlay */
.vt-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.55) 55%,
            rgba(0, 0, 0, 0.85) 100%);
    opacity: 0;
    transition: 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.vt-gallery-card:hover .vt-gallery-overlay {
    opacity: 1;
}

.vt-gallery-overlay-content {
    width: 100%;
}

/* Button */
.vt-gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
    background: #ffc107;
    color: #111;
    text-decoration: none;
    transition: 0.3s ease;
}

.vt-gallery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 193, 7, 0.45);
    color: #111;
}

/* ✅ Responsive */
@media(max-width:576px) {
    .vt-gallery-img img {
        height: 100%;
    }

    .vt-gallery-title {
        font-size: 16px;
    }
}

/* =================================== Gallery =========================== */

/* =================================== Conatct Page =========================== */

.contact-section .social-links .btn-light {
    width: 40px;
    background: #fecc18;
    height: 40px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

/* =================================== Conatct Page =========================== */

/* =================================== Blog Details Page =========================== */

.vt-blog-details {
    background: #f8fafc;
}

/* ✅ Blog Main Card */
.vt-blog-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.vt-blog-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.vt-blog-card:hover .vt-blog-cover img {
    transform: scale(1.04);
}

.vt-blog-body {
    padding: 26px;
}

/* ✅ Meta chips */
.vt-blog-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.vt-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff7db;
    border: 1px solid #ffd77a;
    color: #b77900;
}

.vt-blog-title {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #111827;
}

.vt-blog-short {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 18px;
}

.vt-blog-description p {
    font-size: 16px;
    color: #374151;
    line-height: 1.9;
    margin-bottom: 16px;
}

.vt-divider {
    height: 1px;
    background: #eee;
    margin: 22px 0;
}

/* ✅ Bottom bar */
.vt-blog-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.vt-bottom-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vt-bottom-label {
    font-weight: 800;
    color: #111827;
    font-size: 14px;
}

.vt-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #111;
    text-decoration: none;
    transition: 0.25s ease;
}

.vt-share-btn:hover {
    background: #ffc107;
    transform: translateY(-2px);
}

.vt-cta-btn {
    background: #ffc107;
    color: #111;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.25s ease;
}

.vt-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 193, 7, 0.45);
}

/* ✅ Sidebar */
.vt-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vt-side-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.vt-side-title {
    font-weight: 900;
    font-size: 25px;
    text-align: center;
    margin-bottom: 8px;
    margin-bottom: 20px;
    color: #ffc107;
}

.vt-side-text {
    color: #6b7280;
    text-align: center;
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.vt-side-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    background: #111827;
    color: #fff;
    margin-bottom: 10px;
    transition: 0.25s ease;
}

.vt-side-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.vt-side-btn-wa {
    background: #25D366;
    color: #fff;
}

.vt-side-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: #111827;
    background: #f9fafb;
    margin-bottom: 10px;
    transition: 0.25s ease;
}

.vt-side-links a:hover {
    background: #fff7db;
    border: 1px solid #ffd77a;
}

/* ✅ Responsive */
@media(max-width: 576px) {
    .vt-blog-cover img {
        height: 260px;
    }

    .vt-blog-title {
        font-size: 22px;
    }

    .vt-blog-body {
        padding: 18px;
    }

    .vt-sidebar {
        position: relative;
        top: 0;
    }
}

/* =================================== Blog Details Page =========================== */