
:root {
    --primary-color: #578e10;
    --secondary-color: #FF7A00;
}




.heading-line {
        width: 70px;
        height: 4px;
        border-radius: 10px;
    }

    .accordion-button {
        padding: 1.2rem;
        border-radius: 15px !important;
        transition: all 0.3s ease;
    }

    .accordion-button:not(.collapsed) {
        background-color: #ffc107; 
        color: #000;
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(0,0,0,0.1);
    }

    .accordion-button::after {
        background-size: 1rem;
    }

    .accordion-button:not(.collapsed)::after {
        filter: brightness(0); /* Black icon when open on yellow */
    }

    .faq-number {
        font-weight: 900;
    }

    .accordion-item {
        transition: transform 0.3s ease;
    }

    .accordion-item:hover {
        transform: translateY(-3px);
    }

    .tracking-wider {
        letter-spacing: 2px;
    }

    @media (max-width: 991px) {
        .col-lg-6:last-child {
            /* margin-top: -15px; Spacing fix for mobile stack */
        }
    }
    .process-section {
    padding: 80px 0;
    position: relative;
    background-image: linear-gradient(to right, #ddad11, #e09c08);
    margin: 40px auto;
  }

  

  @media (min-width: 992px) {
    .col-lg-2-4 {
      flex: 0 0 auto;
      width: 20%;
    }
  }

  .process-card {
    background: #FFFFFF;
    padding: 40px 20px;
    border-radius: 15px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .process-card:hover {
    transform: translateY(-10px);
  }

  .icon-circle {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #c23d09, #dbbd13);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #fff;
    font-size: 22px;
  }

  
  .process-card span {
    color: #1A1A1A;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
  }

  .process-card p {
    color: #e60f0f;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
  }

  /* Mobile/Tablet Adjustments */
  @media (max-width: 991px) {
    .process-section {
      margin: 20px;
      padding: 50px 15px;
    }
    .process-card {
      padding: 30px 15px;
    }
    .icon-circle {
      width: 70px;
      height: 70px;
      font-size: 26px;
    }
  }

  
:root {
    --brand-yellow: #FFC107;
    --brand-red: #DC3545;
    --brand-black: #0B1120; 
    --brand-white: #FFFFFF;
    --text-muted: #5E6D77;
}

/* Bootstrap style font */
body{
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* About Section */
.about-modern {
    padding: 60px 0;
    background: var(--brand-white);
    margin: 40px auto;
    max-width: 1300px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

/* Top Tag */
.section-tag-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.section-tag {
    color: var(--brand-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
}

.tag-line {
    height: 2px;
    width: 40px;
    background: var(--brand-yellow);
}

/* Title */
.main-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--brand-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.main-title span {
    color: var(--brand-yellow);
}

.main-title .text-red {
    color: var(--brand-red);
}

/* Text */
.about-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Button */
.about-btn {
    background: var(--brand-yellow);
    color: black;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    text-decoration: none;
}

.about-btn:hover {
    background: var(--brand-black);
    color: white;
    box-shadow: 0 10px 20px rgba(220,53,69,0.2);
}

/* Image Layout */
.about-image-container {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

/* Main Image */
.main-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.main-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Small Image */
.secondary-img-wrapper {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 55%;
    border: 6px solid white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

.secondary-img-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {

.about-modern{
margin:20px;
padding:40px 20px;
}

.main-title{
font-size:32px;
}

.about-image-container{
margin-top:50px;
}

}
 .stats-counter-section {
        position: relative;
        overflow: hidden;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        transition: transform 0.3s ease;
    }

    .stat-item:hover .icon-box {
        transform: translateY(-3px) scale(1.05);
    }

    .tracking-wide {
        letter-spacing: 0.5px;
    }

    @media (max-width: 767px) {
        .border-md-none {
            border-left: none !important;
            padding-top: 15px;
        }
    }
      /* Section Styles */
    .reviews-section {
        background-image: url('<?= base_url('assets/images/sliders.jpeg'); ?>');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .reviews-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(252, 243, 244, 0.95), rgba(231, 221, 221, 0.9));
        z-index: 1;
    }

    .heading-line {
        width: 50px;
        height: 3px;
        border-radius: 10px;
    }

    /* Horizontal Scroll Layout with Red Scrollbar */
    .reviews-wrapper {
        overflow-x: auto;
        white-space: nowrap;
        cursor: grab;
        padding-bottom: 15px !important;
    }

    /* Custom Red Scrollbar */
    .reviews-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .reviews-wrapper::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .reviews-wrapper::-webkit-scrollbar-thumb {
        background: #dc3545; /* Red color */
        border-radius: 10px;
    }

    .reviews-wrapper::-webkit-scrollbar-thumb:hover {
        background: #a71d2a;
    }

    /* Firefox Scrollbar */
    .reviews-wrapper {
        scrollbar-width: thin;
        scrollbar-color: #dc3545 rgba(255, 255, 255, 0.1);
    }

    .reviews-wrapper:active {
        cursor: grabbing;
    }

    /* Equal Height Review Card Design */
    .review-card {
        min-width: 300px;
        max-width: 300px;
        min-height: 280px; /* Uniform height */
        display: inline-block;
        white-space: normal;
        vertical-align: top;
        transition: all 0.3s ease;
        border-bottom: 4px solid #ffc107 !important;
    }

    .card-content-wrapper {
        display: flex;
        flex-direction: column;
    }

    /* Fixed height for review text area */
    .review-body {
        min-height: 120px;
        display: flex;
        align-items: flex-start;
    }

    .avatar {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .tracking-wider {
        letter-spacing: 2px;
    }

    @media (max-width: 768px) {
        .review-card {
            min-width: 260px;
            min-height: 320px;
        }
        .review-body {
            min-height: 140px;
        }
    }

     /* Section Setup */
    .services-section {
        background-color: #fdfdfd;
        background-image: radial-gradient(#ffc107 0.5px, transparent 0.5px);
        background-size: 40px 40px;
    }
    
    .fw-800 { font-weight: 800; }
    .text-warning-custom { color: #ffb100; }
    
    .heading-line {
        width: 60px;
        height: 5px;
        border-radius: 10px;
        background-color: #ffc107 !important;
    }

    /* Professional Card Design */
    .service-card {
        background: #ffffff;
        border: 1px solid #dfa60a;
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        min-height: 320px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        z-index: 1;
    }

    /* Yellow Bubbles Styling */
    .bubble {
        position: absolute;
        background: rgba(255, 193, 7, 0.08); /* Very subtle yellow */
        border-radius: 50%;
        z-index: -1;
        transition: all 0.6s ease;
    }

    .b-1 { width: 80px; height: 80px; top: -20px; right: -20px; }
    .b-2 { width: 50px; height: 50px; bottom: 40px; left: -15px; }
    .b-3 { width: 30px; height: 30px; top: 50%; left: 10px; opacity: 0.5; }

    /* Top Yellow Accent Bar */
    .card-accent-top {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0px;
        background: #ffc107;
        transition: all 0.4s ease;
    }

    /* Icon Circle Style */
    .icon-circle {
        width: 70px;
        height: 70px;
        background: #fff9e6; 
        color: #ffb100; 
        border-radius: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        transition: all 0.4s ease;
        border: 2px solid #fff;
    }

    /* Content Typography */
    .card-title {
        font-size: 1.2rem;
        color: #8b0d0d !important;
        letter-spacing: -0.01em;
    }

    .card-desc {
        font-size: 0.88rem;
        line-height: 1.7;
        font-weight: 500;
        color: #666 !important;
    }

    /* Action Link Styling */
    .view-details-btn {
        text-decoration: none;
        color: #444;
        font-size: 0.75rem;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }

    .arrow-circle {
        width: 25px;
        height: 25px;
        background: #eee;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        transition: all 0.3s ease;
    }

    /* --- UNIQUE HOVER EFFECTS --- */
    
    .service-card:hover {
        transform: translateY(-15px);
        border-color: #ffc107;
        box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
    }

    .service-card:hover .bubble {
        transform: scale(1.3);
        background: rgba(255, 193, 7, 0.15);
    }

    .service-card:hover .card-accent-top {
        height: 8px;
    }

    .service-card:hover .icon-circle {
        background: #ffc107;
        color: #fff;
        transform: rotateY(180deg);
        box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3) !important;
    }

    .service-card:hover .card-title {
        color: #ffb100;
    }

    .service-card:hover .view-details-btn {
        color: #ffb100;
    }

    .service-card:hover .arrow-circle {
        background: #ffc107;
        color: #fff;
        transform: translateX(5px);
    }

    /* Tracking */
    .tracking-widest {
        letter-spacing: 5px;
    }

    /* Stretched link index */
    .stretched-link::after {
        z-index: 5;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .service-card {
            padding: 35px 25px !important;
            border-radius: 40px;
        }
    }

       .parallax-section{
    background-image: url("<?= base_url() ?>assets/images/gallery/why.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* dark overlay for better readability */
.parallax-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.9);
    z-index:0;
}

.parallax-section .container{
    position:relative;
    z-index:2;
}
    /* Professional Hover Transitions */
    .transition-all {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Feature Box Styling */
    .feature-box {
        background-color: #fbfbfb;
        border-color: #eee !important;
        cursor: pointer;
    }

    .feature-box:hover {
        background-color: #ffffff;
        border-color: #ffc107 !important; /* Yellow border on hover */
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    }

    .feature-box:hover .icon-wrap {
        transform: scale(1.1);
    }

    /* Main CTA Hover */
    .hover-bg-danger:hover {
        background-color: #dc3545 !important;
        border-color: #dc3545 !important;
        color: white !important;
    }

    /* Image wrapper effect */
    .main-img-container img {
        transition: transform 0.8s ease;
    }

    .main-img-container:hover img {
        transform: scale(1.05);
    }

    /* Responsive Mobile Adjustments */
    @media (max-width: 576px) {
        .display-6 {
            font-size: 1.75rem;
        }
        .main-img-container {
            height: 350px !important;
        }
        .feature-box {
            padding: 12px !important;
        }
    }


    /* home */



     .tw-intro-section,
  .tw-fleet-section,
  .tw-listing-section,
  .tw-why-section,
  .tw-docs-section,
  .tw-routes-section,
  .tw-faq-section,
  .tw-testimonials-section,
  .tw-cta-section {
    padding: 80px 0;
  }

  .tw-intro-section,
  .tw-docs-section,
  .tw-faq-section {
    background: #ffffff;
  }

  .tw-fleet-section,
  .tw-routes-section {
    background: #f6f8f2;
  }

  .tw-listing-section {
    background: #ffffff;
  }

  .tw-testimonials-section {
    background: #142214;
  }

  .tw-testimonials-section .tw-kicker {
    color: var(--secondary-color);
  }

  .tw-testimonials-section .tw-section-title {
    color: #ffffff;
  }

  .tw-testimonials-section .tw-section-head p {
    color: rgba(255, 255, 255, 0.74);
  }

  .tw-kicker {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .tw-section-title {
    color: #172016;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 18px;
  }
  .tw-section-title1 {
    color: #172016;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 18px;
  }
  .tw-section-title2 {
    color: #172016;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 18px;
  }

  .tw-lead,
  .tw-section-head p,
  .tw-process-copy {
    color: #5b6658;
    font-size: 1rem;
    line-height: 1.8;
  }

  .tw-section-head {
    max-width: 780px;
    margin: 0 auto 38px;
  }

  .tw-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  .tw-mini-feature {
    min-height: 92px;
    border: 1px solid #dde7d2;
    border-radius: 8px;
    padding: 16px;
    background: #fbfdf8;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .tw-mini-feature i,
  .tw-benefit i,
  .tw-route-tile i {
    color: var(--secondary-color);
    font-size: 1.6rem;
  }

  .tw-mini-feature span {
    color: #1f2a1d;
    font-weight: 700;
  }

  .tw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .tw-btn:hover {
    transform: translateY(-2px);
  }

  .tw-btn-primary {
    background: var(--secondary-color);
    color: #111 !important;
    box-shadow: 0 12px 24px rgba(255, 122, 0, 0.22);
  }

  .tw-btn-primary:hover {
    background: #ff8c1a;
  }

  .tw-btn-outline {
    border: 1px solid #cbd9c1;
    color: #172016 !important;
    background: #fff;
  }

  .tw-btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
  }

  .tw-btn-light {
    background: #fff;
    color: #172016 !important;
  }

  .tw-ride-panel,
  .tw-fleet-card,
  .tw-benefit,
  .tw-route-tile {
    background: #fff;
    border: 1px solid #e2eadb;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(28, 45, 24, 0.08);
  }

  .tw-ride-panel {
    padding: 28px;
  }

  .tw-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e7eee0;
  }

  .tw-panel-header h3 {
    color: #172016;
    font-size: 1.55rem;
    font-weight: 800;
    margin: 0;
  }

  .tw-panel-header > i {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f2f8ea;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    flex: 0 0 auto;
  }

  .tw-ride-list {
    display: grid;
    gap: 16px;
    margin: 22px 0;
  }
  .bik-hom{
    color: #000 !important;
    font-size: 1.05rem !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
  }

  .tw-ride-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 15px;
    align-items: start;
  }

  .tw-ride-icon,
  .tw-fleet-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #172016;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
  }

  .tw-ride-item h4,
  .tw-fleet-card h3,
  .tw-benefit h3,
  .tw-route-tile h3,
  .tw-step-card h3 {
    color: #172016;
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .tw-ride-item p,
  .tw-fleet-card p,
  .tw-benefit p,
  .tw-route-tile p,
  .tw-step-card p {
    color: #61705d;
    line-height: 1.65;
    margin: 0;
  }

  .tw-panel-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff7ed;
    color: #4d351a;
    border-radius: 8px;
    padding: 14px 16px;
    font-weight: 600;
  }

  .tw-fleet-card {
    height: 100%;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .tw-fleet-card:hover,
  .tw-benefit:hover,
  .tw-route-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px rgba(28, 45, 24, 0.12);
  }

  .tw-fleet-card .tw-fleet-icon {
    margin-bottom: 18px;
    background: var(--primary-color);
  }

  .tw-fleet-card ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
  }

  .tw-fleet-card li {
    color: #293726;
    font-weight: 700;
    font-size: 0.92rem;
  }

  .tw-fleet-card li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    color: var(--secondary-color);
    margin-right: 8px;
  }

  .tw-vehicle-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e8e1;
    border-radius: 8px;
    padding: 14px;
    box-shadow: 0 18px 40px rgba(28, 45, 24, 0.08);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .tw-vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(28, 45, 24, 0.12);
  }

  .tw-location-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #f8b400;
    color: #111;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
  }

  .tw-vehicle-image {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
  }

  .tw-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .tw-vehicle-body {
    padding: 0 6px 6px;
  }

  .tw-vehicle-body h3 {
    color: #000;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .tw-vehicle-body p {
    color: #6b7667;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .tw-vehicle-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 16px;
  }

  .tw-vehicle-price span {
    color: #172016;
    font-size: 1.2rem;
    font-weight: 900;
  }

  .tw-vehicle-price small {
    color: #6b7667;
    font-weight: 800;
  }
  .pick-span{
    color: #172016 !important;
    font-size: 1.08rem !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
  }

  .tw-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .tw-card-actions a {
    min-height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #111 !important;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .tw-card-actions a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

  .tw-action-call {
    background: #000;
    color: #ffffff !important;
  }

  .tw-action-whatsapp {
    background: #f8b400;
  }

  .tw-process-section {
    background: #142214;
    padding: 80px 0;
  }

  .tw-process-section .tw-kicker {
    color: var(--secondary-color);
  }

  .tw-process-copy {
    color: rgba(255, 255, 255, 0.74);
  }

  .tw-step-card {
    height: 100%;
    min-height: 174px;
    padding: 24px;
    border-radius: 8px;
    background: #ffffff;
    border-left: 4px solid var(--secondary-color);
  }

  .tw-step-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ecf5e3;
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 16px;
  }

  .tw-dark-block {
    height: 100%;
    min-height: 420px;
    background: #172016;
    color: #fff;
    border-radius: 8px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .tw-dark-block h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 18px;
  }
  .tw-dark-blockk {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .tw-dark-block p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
    margin-bottom: 26px;
  }

  .tw-benefit {
    height: 100%;
    min-height: 190px;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .tw-benefit i {
    display: inline-flex;
    margin-bottom: 14px;
  }

  .tw-doc-list {
    display: grid;
    gap: 14px;
  }

  .tw-doc-item {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f7faf4;
    border: 1px solid #e1ead8;
    border-radius: 8px;
    padding: 18px 20px;
  }

  .tw-doc-item i {
    color: var(--primary-color);
    font-size: 1.6rem;
    flex: 0 0 auto;
  }

  .tw-doc-item span {
    color: #172016;
    font-weight: 800;
  }

  .tw-route-tile {
    height: 100%;
    min-height: 194px;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .tw-route-tile i {
    margin-bottom: 16px;
  }

  .tw-accordion .accordion-item {
    border: 1px solid #e0e9d7;
    border-radius: 8px !important;
    overflow: hidden;
    margin-bottom: 12px;
  }

  .tw-accordion .accordion-button {
    color: #172016;
    font-weight: 800;
    border-radius: 0 !important;
  }

  .tw-accordion .accordion-button:not(.collapsed) {
    background: #ecf5e3;
    color: #172016;
  }

  .tw-accordion .accordion-body {
    color: #61705d;
    line-height: 1.7;
  }

  .tw-testimonial-card {
    height: 100%;
    min-height: 280px;
    background: #ffffff;
    border-bottom: 4px solid var(--secondary-color);
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
  }

  .tw-testimonial-card p {
    color: #61705d;
    line-height: 1.65;
    margin: 0;
  }

  .tw-stars {
    color: #f7b500;
    display: flex;
    gap: 4px;
    font-size: 0.95rem;
  }

  .tw-testimonial-user {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 18px;
    border-top: 1px solid #e6eddf;
  }

  .tw-testimonial-user span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ecf5e3;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    flex: 0 0 auto;
  }

  .tw-testimonial-user p {
    color: #172016;
    font-size: 1rem;
    font-weight: 900;
    margin: 0;
  }

  .tw-testimonial-user small {
    color: #6b7667;
    font-weight: 700;
  }

  .tw-cta-section {
    padding-top: 0;
  }
  .bike-card-home{
    color: #172016 !important;
    font-size: 1.08rem !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
  }
  .tw-cta {
    background: #f6f8f2;
    border: 1px solid #e0e9d7;
    border-radius: 8px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .tw-cta h2 {
    color: #172016;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin: 0;
  }
  .tw-cta h5 {
    color: #172016;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin: 0;
  }

  @media (max-width: 991px) {
    .tw-intro-section,
    .tw-fleet-section,
    .tw-listing-section,
    .tw-process-section,
    .tw-why-section,
    .tw-docs-section,
    .tw-routes-section,
    .tw-faq-section,
    .tw-testimonials-section,
    .tw-cta-section {
      padding: 56px 0;
    }

    .tw-feature-row {
      grid-template-columns: 1fr;
    }

    .tw-dark-block {
      min-height: auto;
    }

    .tw-cta {
      align-items: flex-start;
      flex-direction: column;
    }
  }

  @media (max-width: 575px) {
    .tw-ride-panel,
    .tw-dark-block,
    .tw-cta {
      padding: 22px;
    }

    .tw-ride-item {
      grid-template-columns: 44px 1fr;
    }

    .tw-ride-icon,
    .tw-fleet-icon {
      width: 44px;
      height: 44px;
      font-size: 1.2rem;
    }
  }

  /* about us  */

  .tw-about-hero {
    min-height: 300px;
    padding: 86px 0;
    background: url('<?= base_url() ?>assets/images/vehicles/bike-br1.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
  }

  .tw-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 20, 12, 0.64);
  }

  .tw-about-hero h1 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .tw-about-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.78);
  }

  .tw-about-intro,
  .tw-about-mission,
  .tw-about-process,
  .tw-about-values,
  .tw-about-cta {
    padding: 76px 0;
  }

  .tw-about-intro,
  .tw-about-process {
    background: #ffffff;
  }

  .tw-about-stats,
  .tw-about-values {
    background: #f6f8f2;
  }

  .tw-about-stats {
    padding: 34px 0;
  }

  .tw-about-mission {
    background: #ffffff;
  }

  .tw-about-kicker {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .tw-about-kicker-light {
    color: var(--secondary-color);
  }

  .tw-about-title {
    color: #172016;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.16;
    margin-bottom: 18px;
  }

  .tw-about-lead,
  .tw-about-intro p,
  .tw-about-section-head p,
  .tw-about-dark p,
  .tw-about-card p,
  .tw-about-step p,
  .tw-about-check-list p {
    color: #5d6959;
    font-size: 16px;
    line-height: 1.78;
  }

  .tw-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
  }

  .tw-about-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .tw-about-btn:hover {
    transform: translateY(-2px);
  }

  .tw-about-btn-primary {
    background: var(--secondary-color);
    color: #111111 !important;
    box-shadow: 0 14px 24px rgba(255, 122, 0, 0.22);
  }

  .tw-about-btn-primary:hover {
    background: #ff8c1a;
  }

  .tw-about-btn-outline {
    background: #ffffff;
    color: #172016 !important;
    border: 1px solid #cbd9c1;
  }

  .tw-about-btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
  }

  .tw-about-btn-light {
    background: #ffffff;
    color: #172016 !important;
  }

  .tw-about-image-wrap {
    position: relative;
    min-height: 460px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(28, 45, 24, 0.14);
  }

  .tw-about-image-wrap img,
  .tw-about-values img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .tw-about-image-note {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  }

  .tw-about-image-note i,
  .tw-about-stat i,
  .tw-about-card i,
  .tw-about-check-list i {
    color: var(--secondary-color);
    font-size: 28px;
    flex: 0 0 auto;
  }

  .tw-about-image-note strong {
    display: block;
    color: #172016;
    font-weight: 900;
  }

  .tw-about-image-note span {
    color: #5d6959;
    font-weight: 700;
  }

  .tw-about-stat,
  .tw-about-card,
  .tw-about-step {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e0e9d7;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 16px 34px rgba(28, 45, 24, 0.07);
  }

  .tw-about-stat {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .tw-about-stat strong {
    color: #172016;
    font-size: 18px;
    font-weight: 900;
  }

  .tw-about-stat span {
    color: #62705d;
    line-height: 1.5;
  }

  .tw-about-dark {
    height: 100%;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    padding: 38px;
    background: #142214;
    color: #ffffff;
  }

  .tw-about-dark h2 h3 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.16;
    margin-bottom: 18px;
    font-size: 27px !important;
  }

  .tw-about-dark p {
    color: rgba(255, 255, 255, 0.76);
    margin: 0;
  }

  .tw-about-card {
    min-height: 218px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .tw-about-card:hover,
  .tw-about-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(28, 45, 24, 0.12);
  }

  .tw-about-card h3,
  .tw-about-step h3 {
    color: #172016;
    font-size: 19px;
    font-weight: 900;
    margin: 14px 0 8px;
  }
  .tw-about-cardd{
     color: #172016 !important;
    font-size: 19px !important;
    font-weight: 900 !important;
    margin: 14px 0 8px !important;
  }


  .tw-about-section-head {
    max-width: 760px;
    margin: 0 auto 38px;
  }

  .tw-about-step {
    min-height: 238px;
    border-top: 4px solid var(--secondary-color);
  }

  .tw-about-step span {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ecf5e3;
    color: var(--primary-color);
    font-weight: 900;
  }

  .tw-about-values img {
    min-height: 430px;
    border-radius: 8px;
    box-shadow: 0 24px 48px rgba(28, 45, 24, 0.12);
  }

  .tw-about-check-list {
    display: grid;
    gap: 16px;
    margin-top: 22px;
  }

  .tw-about-check-list > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
  }

  .tw-about-check-list p {
    margin: 0;
  }

  .tw-about-check-list strong {
    color: #172016;
  }

  .tw-about-cta {
    padding-top: 0;
    background: #ffffff;
  }

  .tw-about-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 8px;
    padding: 34px;
    background: #142214;
  }

  .tw-about-cta-box h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.18;
    margin: 0;
  }

  .tw-about-cta-box .tw-about-actions {
    margin-top: 0;
    flex: 0 0 auto;
  }

  @media (max-width: 991px) {
    .tw-about-hero {
      min-height: 260px;
      padding: 68px 0;
    }

    .tw-about-hero h1 {
      font-size: 36px;
    }

    .tw-about-intro,
    .tw-about-mission,
    .tw-about-process,
    .tw-about-values,
    .tw-about-cta {
      padding: 56px 0;
    }

    .tw-about-title {
      font-size: 32px;
    }

    .tw-about-image-wrap,
    .tw-about-values img {
      min-height: 340px;
    }

    .tw-about-dark {
      min-height: auto;
    }

    .tw-about-cta-box {
      align-items: flex-start;
      flex-direction: column;
    }

    .tw-about-cta-box .tw-about-actions {
      width: 100%;
    }
  }

  @media (max-width: 575px) {
    .tw-about-title,
    .tw-about-dark h2,
    .tw-about-dark h3,
    .tw-about-cta-box h2 {
      font-size: 27px;
    }

    .tw-about-image-note {
      left: 14px;
      right: 14px;
      bottom: 14px;
    }

    .tw-about-dark,
    .tw-about-cta-box,
    .tw-about-card,
    .tw-about-step,
    .tw-about-stat {
      padding: 22px;
    }

    .tw-about-actions,
    .tw-about-btn {
      width: 100%;
    }
  }
  .tw-vp-difference,
  .tw-vp-listing {
    padding: 78px 0;
  }

  .tw-vp-difference {
    background: #ffffff;
  }

  .tw-vp-listing {
    background: #f6f8f2;
  }

  .tw-vp-kicker {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .tw-vp-title {
    color: #172016;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.14;
    margin-bottom: 18px;
  }

  .tw-vp-lead,
  .tw-vp-head p,
  .tw-vp-feature p {
    color: #5d6959;
    font-size: 16px;
    line-height: 1.78;
  }

  .tw-vp-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 20px;
    border-radius: 8px;
    background: var(--secondary-color);
    color: #111111 !important;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 24px rgba(255, 122, 0, 0.22);
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .tw-vp-btn:hover {
    background: #ff8c1a;
    transform: translateY(-2px);
  }

  .tw-vp-feature,
  .tw-vp-vehicle-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e0e9d7;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(28, 45, 24, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .tw-vp-feature {
    min-height: 210px;
    padding: 24px;
  }

  .tw-vp-feature:hover,
  .tw-vp-vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(28, 45, 24, 0.13);
  }

  .tw-vp-feature i {
    color: var(--secondary-color);
    font-size: 30px;
    display: inline-flex;
    margin-bottom: 14px;
  }

  .tw-vp-feature h3,
  .tw-vp-vehicle-body h3 {
    color: #172016;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.28;
    margin-bottom: 9px;
  }
  .vp-why{
    color: #172016 !important;
    font-size: 19px !important;
    font-weight: 900 !important;
    line-height: 1.28 !important;
    margin-bottom: 9px !important;
  }
  .tw-vp-feature p,
  .tw-vp-vehicle-body p {
    margin: 0;
  }

  .tw-vp-head {
    max-width: 780px;
    margin: 0 auto 38px;
  }

  .tw-vp-vehicle-card {
    padding: 14px;
  }

  .tw-vp-vehicle-image {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 18px;
  }

  .tw-vp-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .tw-vp-vehicle-body {
    padding: 0 6px 8px;
  }

  .tw-vp-vehicle-body p {
    color: #6b7667;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .tw-vp-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 15px;
  }

  .tw-vp-price span {
    color: #172016;
    font-size: 20px;
    font-weight: 900;
  }

  .tw-vp-price small {
    color: #6b7667;
    font-weight: 800;
  }

  .tw-vp-vehicle-body ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .tw-vp-vehicle-body li {
    color: #293726;
    font-size: 14px;
    font-weight: 700;
  }

  .tw-vp-vehicle-body li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    color: var(--secondary-color);
    margin-right: 8px;
  }

  @media (max-width: 991px) {
    .tw-vp-difference,
    .tw-vp-listing {
      padding: 56px 0;
    }

    .tw-vp-title {
      font-size: 32px;
    }
  }

  @media (max-width: 575px) {
    .tw-vp-title {
      font-size: 27px;
    }

    .tw-vp-feature {
      min-height: auto;
    }

    .tw-vp-btn {
      width: 100%;
    }
  }





  /* city */


  