body {
    font-family: 'VietnamPro-Regular';
padding-top: 80px;
}

/* nav start */
.logo-img {
    height: 60px;
    /* increase size here */
    width: auto;
}

@media (max-width: 991px) {
    .logo-img {
        height: 50px;
    }
}

.navbar {
    padding: 12px 0;
}

.brand-text {
    font-weight: 600;
    font-size: 18px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 12px;
    position: relative;
}

.navbar-nav .nav-link.active {
    color: #000;
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #f4b400;
    left: 0;
    bottom: -5px;
}

.book-btn {
    background-color: #f4b400 !important;   /* Default Yellow */
    color: #000 !important;                 /* Black text */
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
}

/* Hover */
.book-btn:hover {
    background-color: #f4b400 !important;   /* Keep yellow */
    color: #fff !important;                 /* White text */
}

/* Press / Active / Click */
.book-btn:active,
.book-btn.active,
.book-btn:focus:active {
    background-color: #000 !important;      /* Black */
    color: #fff !important;                 /* White */
    box-shadow: none !important;
    transform: scale(0.96);
}


.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Default (Desktop) */
.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #f4b400;
    left: 0;
    bottom: -5px;
}

/* Mobile Offcanvas Active Line Smaller */
/* Reduce Offcanvas Width */
.offcanvas {
    width: 320px !important;
    /* change size here */
}

.offcanvas .nav-link {
    position: relative;
    display: inline-block;
}

.offcanvas .nav-link.active::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #f4b400;
    left: 0;
    bottom: -3px;
}

/* nav end  */

/* ================= HOME PAGE ================= */

/* Dark Overlay */
/*.hero-section::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: rgba(0, 0, 0, 0.20);*/
/*}*/


/* HERO SECTION */
.hero-section {
    position: relative;
    background: url('../src/banner2.jpg') no-repeat center center/cover;
    min-height: 100vh;
    padding: 120px 0;
}



/* Dark Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: linear-gradient(*/
    /*    rgba(0, 0, 0, 0.45),*/
    /*    rgba(0, 0, 0, 0.25)*/
    /*);*/
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Title */
.hero-title {
    font-size: 48px;
    font-weight: 700;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    margin-top: 15px;
    opacity: 0.9;
}

/* Button */
.hero-btn {
    background-color: #f4b400;
    color: #000;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
}

.hero-btn:hover {
    background-color: #d99a00;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-section {
        min-height: 80vh;
        padding: 100px 20px;
    }
}

/* hero section end  */


/* book now form  */

.card-box {
    background: #f4f4f4;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.btn-tab {
    border: 1px solid #ccc;
    background: white;
    margin-right: 10px;
}

.btn-tab.active {
    background: black;
    color: white;
}

.yellow-btn {
    background: #ffc400;
    font-weight: 600;
}

.black-btn {
    background: black;
    color: white;
}

.fare-box {
    background: #eaeaea;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.hidden {
    display: none;
}

.vehicle-btn {
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 8px;
    padding: 8px 20px;
    margin-right: 10px;
    transition: 0.3s;
}


.btn-tab {
    border: 2px solid #ccc;   /* keep same thickness */
    background: white;
    margin-right: 10px;
    transition: 0.3s ease;
}

.btn-tab:hover {
    border-color: black;   /* only change color */
}

.btn-tab.active {
    background: black;
    color: white;
    border-color: black;
}

/* Selected */
.vehicle-btn.active {
    background: #000;
    color: #fff;
}

/* Hover */
.vehicle-btn:hover {
    border-color: #000;
}

/* Disable hover effect completely */
.yellow-btn:hover,
.yellow-btn:focus,
.yellow-btn:active {
    background-color: #ffc400 !important;
    color: #000 !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Black button */
.black-btn:hover,
.black-btn:focus,
.black-btn:active {
    background-color: #000 !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Remove Bootstrap default effects */
button,
.btn {
    transition: none !important;
}

.btn:hover,
.btn:focus,
.btn:active {
    box-shadow: none !important;
    transform: none !important;
}

.fare-box {
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    background: #fff;
}

.fare-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #555;
}

.total-badge {
    background: #ffc400;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: bold;
}

.tab-btn {
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}

/* Active button */
.tab-btn.active {
    background: #000;
    color: #fff;
}

.btn-tab {
    margin-right: 10px;
    margin-bottom: 12px;   /* ADD THIS */
}

/* Proper spacing between form rows */
#bookingSection .row {
    margin-bottom: 20px !important;
}

/* Extra spacing for full width inputs */
#bookingSection input.form-control,
#bookingSection select.form-select {
    margin-bottom: 15px;
}

#vehicleGroup {
    margin-bottom: 25px;
}
/*  book now form end */


/* why choose us  */

.why-choose {
    padding: 80px 0;
    background-color: #f3f3f3;
}

.why-choose h2 {
    font-weight: 700;
    margin-bottom: 50px;
}

.feature-box {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #f4e3b2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 28px;
    color: #333;
}

.feature-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .why-choose {
        padding: 50px 0;
    }
}

/* why choose us ends */


/* ================= Taxi Ride Section ================= */

.taxi-ride-section {
    background: #fff;
}

.taxi-section-title {
    font-size: 34px;
    font-weight: 700;
    color: #000;
}

.taxi-section-subtitle {
    max-width: 600px;
    margin: 10px auto 0;
    color: #444;
}

/* Card */
.taxi-ride-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.taxi-ride-card:hover {
    transform: translateY(-8px);
}

/* Image */
.taxi-ride-img-wrapper {
    background: #f9f9f9;
    text-align: center;
    padding: 25px;
}

.taxi-ride-img-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

/* Body */
.taxi-ride-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.taxi-ride-name {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

/* Price Box */
.taxi-price-box {
    background: #fff8e1;
    border-left: 4px solid #f4b400;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.taxi-price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 14px;
}

.taxi-price-row strong {
    color: #f4b400;
}

/* Features */
.taxi-ride-features {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 18px;
}

.taxi-ride-features i {
    margin-right: 6px;
    color: #6f6f6f;
}

/* Buttons */
.taxi-book-btn {
    width: 100%;
    background: #f4b400;
    color: #000;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: 0.3s;
}

.taxi-book-btn:hover {
    background: #000;
    color: #f4b400;
}

.taxi-call-btn {
    display: block;
    text-align: center;
    width: 100%;
    background: #495057;
    color: #f4b400;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.taxi-call-btn:hover {
    background: #f4b400;
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}




/* ================= Testimonial Section ================= */

.testimonial-section {
    background-color: #f5f5f5;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-subtitle {
    color: #666;
    margin-top: 10px;
    font-size: 16px;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #f4b400;
    font-size: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.customer-name {
    font-weight: 500;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
}



/* ================= CTA Section ================= */

.cta-section {
    background-color: #f5c400;
    /* Yellow background */
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.cta-subtitle {
    font-size: 16px;
    color: #222;
    max-width: 650px;
    margin: 0 auto;
}

.cta-btn {
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* ================= Footer ================= */

.footer-section {
    background-color: #f3f3f3;
    padding-bottom: 30px;
}

.footer-logo {
    width: 70px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    color: #555;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #FFCC00;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: #FFCC00;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #ddd;
}

.footer-brand-name {
    font-weight: 700;
    font-size: 18px;
}

/* Equal spacing */
.row > div {
    padding-left: 15px;
    padding-right: 15px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

#bookingSection {
    scroll-margin-top: 100px;
}

/* ================= DESKTOP (Laptop 992px and above) ================= */

@media (min-width: 992px) {

    /* Hide mobile icons */
    .mobile-footer-icons {
        display: none !important;
    }

    /* Show normal links */
    .desktop-links {
        display: block !important;
    }

    /* Contact always visible */
    .contact-content {
        display: block !important;
    }

    /* Remove toggle arrow completely */
    .toggle-arrow {
        display: none !important;
    }

    .contact-toggle {
        cursor: default;
        display: block;
    }
}

/* ================= MOBILE + TABLET (Below 992px) ================= */

@media (max-width: 991.98px) {

    .footer-section {
        text-align: center;
    }

    /* Hide normal links */
    .desktop-links {
        display: none !important;
    }

    /* Show icon row */
    .mobile-footer-icons {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 25px;
        margin-top: 10px;
    }

    .mobile-footer-icons a {
        font-size: 20px;
        color: #555;
        transition: 0.3s;
    }

    .mobile-footer-icons a:hover {
        color: #FFCC00;
    }

    /* Hide long paragraph */
    .hide-mobile-text {
        display: none;
    }

    /* Contact toggle behavior */
    .contact-content {
        display: none;
        margin-top: 10px;
    }

    .show-contact {
        display: block !important;
        animation: fadeIn 0.3s ease-in-out;
    }

    .contact-toggle {
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .toggle-arrow {
        display: inline-block;
        font-size: 14px;
        transition: 0.3s;
    }

    .rotate {
        transform: rotate(180deg);
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* Fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= SERVICE PAGE  ================= */
/* ================= TAXI HERO SECTION ================= */

#txHeroSection {
    background: #f4f4f4;
}

.tx-hero-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}

.tx-hero-img-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.tx-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tx-hero-content {
    padding-left: 20px;
}

.tx-hero-title {
    font-size: 40px;
    font-weight: 700;
    color: #4a4a4a;
    line-height: 1.3;
}

.tx-hero-title span {
    color: #4a4a4a;
}

.tx-hero-subtitle {
    font-size: 18px;
    color: #6c6c6c;
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.tx-hero-btn {
    background: #ffc107;
    color: #000;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.tx-hero-btn:hover {
    background: #e0a800;
    color: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .tx-hero-content {
        padding-left: 0;
        text-align: center;
    }

    .tx-hero-title {
        font-size: 32px;
    }
}

/* ================= TAXI SERVICES SECTION ================= */

#txServicesSection {
    background: #f7f7f7;
}

.tx-services-title {
    font-size: 34px;
    font-weight: 700;
    color: #4a4a4a;
}

.tx-services-subtitle {
    color: #6c6c6c;
    font-size: 16px;
    margin-top: 8px;
}

.tx-service-card {
    background: #ffffff;
    padding: 30px 22px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

/* Space between icon and heading */
.tx-service-icon {
    margin-bottom: 20px;  /* increase spacing */
}

.tx-service-heading {
    margin-top: 10px;
}
.tx-service-text {
    font-size: 14px;
    color: #6c6c6c;
    min-height: 60px;
}

.tx-service-highlight {
    display: block;
    font-size: 13px;
    color: #000;
    font-weight: 600;
    margin-bottom: 12px;
}
.tx-service-card svg {
    margin-bottom: 20px;
    display: block;
}
.tx-service-link {
    text-decoration: none;
    font-weight: 600;
    color: #ffc107;
    transition: 0.3s;
}

/* Hover Effect */
/* Remove card hover color change */
.tx-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* Book Now button normal state */
.tx-service-btn {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 6px;
    background: transparent;
    color: #f4b400;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Only button becomes yellow on hover */
.tx-service-card:hover .tx-service-btn {
    background: #f4b400;
    color: #000;
}
/* ================= TRANSPARENT PRICING================= */

/* Section Background */
#tx-transparent-pricing {
    background-color: #f3e2a5;
}

/* Title */
.tx-pricing-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.tx-pricing-subtitle {
    color: #555;
}

/* Card Styling */
.tx-pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
}

.tx-pricing-card:hover {
    transform: translateY(-8px);
}

/* Card Title */
.tx-pricing-card-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* List Styling */
.tx-pricing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.tx-pricing-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

/* Estimate Box */
.tx-pricing-estimate {
    border-top: 1px solid #ddd;
    padding-top: 12px;
}

.tx-pricing-estimate small {
    display: block;
    color: #666;
    font-size: 12px;
}

.tx-pricing-estimate h4 {
    font-weight: 700;
    margin: 5px 0 0;
}

/* Bottom Note */
.tx-pricing-note {
    background: #f8f4e4;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    color: #444;
}

/* ================= Service Available Cities ================= */

/* Section Background */
#sdc-cities-section {
    background-color: #f4f4f4;
}

/* Heading */
.sdc-section-title {
    font-weight: 700;
    font-size: 28px;
}

.sdc-section-subtitle {
    color: #666;
    font-size: 15px;
}

/* Search Box */
.sdc-search-box {
    position: relative;
}

.sdc-search-input {
    border-radius: 50px;
    padding: 12px 20px;
    border: 2px solid #f4b400;
    box-shadow: none;
}

.sdc-search-input:focus {
    border-color: #f4b400;
    box-shadow: none;
}

/* City Card */
.sdc-city-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.sdc-city-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

/* Hover Effect */
.sdc-city-card:hover img {
    transform: scale(1.08);
}

.sdc-city-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* City Tag */
.sdc-city-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f4b400;
    color: #000;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
}

/* City Card */
.sdc-city-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.sdc-city-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.5s ease;
}

/* Zoom Image */
.sdc-city-card:hover img {
    transform: scale(1.1);
}

/* ===============================
   YELLOW OVERLAY DESIGN
================================= */

.sdc-city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Premium Yellow Gradient */
    background: linear-gradient(
        to top,
        rgba(244, 180, 0, 0.95) 0%,
        rgba(244, 180, 0, 0.85) 40%,
        rgba(244, 180, 0, 0.6) 70%,
        rgba(244, 180, 0, 0.2) 100%
    );

    color: #000;
    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    transform: translateY(100%);
    transition: transform 0.5s ease;
}

/* Slide Up Effect */
.sdc-city-card:hover .sdc-city-overlay {
    transform: translateY(0);
}

/* Overlay Title */
.sdc-overlay-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

/* Overlay Description */
.sdc-overlay-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Extra Beautiful Shadow */
.sdc-city-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* ================= ABOUT US PAGE  ================= */
/* Section Background */
#sdc-hero-section {
    background-color: #f2f2f2;
}

/* Title */
.sdc-hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #4b4b4b;
    line-height: 1.3;
}

/* Paragraph */
.sdc-hero-text {
    font-size: 16px;
    color: #666;
    margin: 20px 0;
    max-width: 500px;
}

/* Button */
.sdc-hero-btn {
    background-color: #f4b400;
    color: #000;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.sdc-hero-btn:hover {
    background-color: #d99c00;
    color: #000;
}

/* Image */
.sdc-hero-image {
    border-radius: 20px;
    max-height: 350px;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .sdc-hero-title {
        font-size: 28px;
    }

    .sdc-hero-text {
        font-size: 14px;
    }

    .sdc-hero-image {
        margin-top: 20px;
    }
}

/* Our Journey */
/* Section Background */
#sdc-journey-section {
    background-color: #f3f3f3;
}

/* Title */
.sdc-journey-title {
    font-size: 28px;
    font-weight: 700;
    color: #444;
}

/* Subtitle */
.sdc-journey-subtitle {
    font-size: 15px;
    /* color: #777; */
}

/* Image Styling */
.sdc-journey-image {
    border-radius: 20px;
    width: 80%;
    object-fit: cover;
}

/* Text Styling */
.sdc-journey-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .sdc-journey-title {
        font-size: 22px;
    }

    .sdc-journey-text {
        font-size: 14px;
    }

}


/* safety-section */
body {
    font-family: 'Segoe UI', sans-serif;
}

/* Section Background */
.safety-section {
    background-color: #f4e6b3;
    padding: 70px 0;
}

/* Title Styling */
.section-title {
    font-weight: 700;
    color: #333;
}

.section-subtitle {
    color: #555;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Card Styling */
.safety-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    height: 100%;
}

.safety-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* Card Text */
.safety-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.safety-card p {
    color: #666;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .safety-section {
        padding: 50px 20px;
    }
}

/* vision mission  */


/* Section Styling */
.vision-mission-section {
    padding: 80px 0;
}

/* Title */
.section-title {
    font-weight: 700;
    color: #444;
}

/* Card Styling */
.vm-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    height: 100%;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    /*background-color: #f4e6b3;
    */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

/* Headings */
.vm-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Paragraph */
.vm-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vision-mission-section {
        padding: 50px 20px;
    }
}

/* FAQ */
/* Section Background */
.faq-section {
    background-color: #f4e6b3;
    padding: 80px 0;
}

/* Title */
.faq-title {
    font-weight: 700;
    color: #000;
}

.faq-subtitle {
    color: #555;
    font-size: 16px;
}

#faqAccordion {
    max-width: 700px;
    /* Reduce width */
    margin: 0 auto;
    /* Center horizontally */
}

/* Accordion Custom Styling */
.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion-item {
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #000;
    box-shadow: none;
}

.accordion-body {
    background-color: #ffffff;
    color: #555;
    padding: 20px;
    line-height: 1.6;
}

/* Remove default arrow color */
.accordion-button:focus {
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }
}

/* ================= CONTACT  US PAGE  ================= */

.contact-section {
    background-color: #f7c600;
    /* Yellow background */
    padding: 80px 0;
}

.contact-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-top: 15px;
}

.badge-box {
    background: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    cursor: default;
}

.badge-box:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 1.8rem;
    }

    .badge-box {
        margin-bottom: 10px;
    }
}


/* contact info */
.contact-info-section {
    background-color: #f8f9fa;
    padding: 70px 0;
}

.info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.info-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
}

.info-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.info-subtext {
    font-size: 0.9rem;
    color: #6c757d;
}

.info-card a {
    text-decoration: none;
    color: #000;
}

.info-card a:hover {
    color: #ffc107;
}


/* contact section */
.contact-section {
    background-color: #f6e6a9;
    /* Light yellow like your image */
    padding: 60px 0;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ddd;
     border-radius: 12px !important;

  /* 👇 this makes the box visible */
  background-color: #fff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ffc107;
}

.btn-submit {
    background: #ffc107;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #e0a800;
}

.contact-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .contact-image {
        margin-top: 20px;
    }
}



/* Location Section */
.location-section {
    background-color: #f6e6a9;
    /* Light yellow */
    padding: 60px 0;
    text-align: center;
}

/* Title */
.location-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Address */
.location-address {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* Map Container */
.map-box {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Map iframe */
.map-box iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .map-box iframe {
        height: 300px;
    }

    .location-title {
        font-size: 22px;
    }
}

/* ===== Booking Summary Design ===== */

.summary-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 800px;
}

.summary-header h2 {
    font-weight: 700;
}

.trip-badge {
    background: #ffcc00;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 10px;
}

.summary-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.section-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
}

.summary-row span:first-child {
    color: #666;
}

.summary-row span:last-child {
    font-weight: 600;
}

.highlight {
    background: #fff8e1;
    padding: 10px;
    border-radius: 8px;
}

.terms-box ul {
    padding-left: 18px;
    font-size: 14px;
}

.terms-box li {
    margin-bottom: 8px;
}

.note-box {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 15px;
}

/* extra
added css 
style for total badges */
.fare-total {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.fare-note {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.fare-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fare-label {
    font-weight: 600;
    font-size: 15px;
    color: #222;
}

.total-badge {
    background: #ffc107;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
    min-width: 110px;
    text-align: center;
}


/* Book Button */
.book-btn {
    background-color: #f4b400;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
}

.book-btn:hover {
    background-color: #000;
    color: #f4b400;
    transform: translateY(-3px);
}

/* Call Button */
.call-btn {
    background-color: #000;
    color: #f4b400;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #f4b400;
    transition: 0.3s ease;
}

.call-btn i {
    font-size: 16px;
}

.call-btn:hover {
    background-color: #f4b400;
    color: #000;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .book-btn,
    .call-btn {
        width: 100%;
        justify-content: center;
    }
}

.call-btn i {
    transform: scaleX(-1);
}

/* Arrow Button Design */
.testimonial-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.testimonial-toggle:hover {
    transform: translateY(3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

#arrowIcon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Hidden by default */
.testimonial-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

/* When active */
.testimonial-wrapper.active {
    max-height: 1000px;
}

/* Rotate arrow */
.rotate {
    transform: rotate(180deg);
}