:root {
    --primary-color: #1F5FA9;
    --primary-dark: #174c8a;
    --gray-border: #e9ecef;
    --secondary-color: rgb(252, 164, 2);
    --text-color: #ffffff;
}

body {
    font-family: 'Segoe UI', system-ui;
    margin: 0;
}

/* ================= Navigation ================= */
.top-info-bar {
    background: #fff;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}

.top-info-bar a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.top-info-right a {
    margin-left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
    .top-info-bar {
        display: none;
    }
}


.main-navbar {
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    top: 0;
    z-index: 1050;
}


/* ================= LOGO ================= */
.brand-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.brand-sub {
    font-size: 13px;
    color: #000;
}

.navbar-brand i {
    font-size: 38px;
    color: var(--primary-color);
}

/* ================= REQUEST QUOTE ================= */

.btn-get-quote {
    background: var(--secondary-color) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #000;
    padding: 12px 26px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-get-quote:hover {
    background: var(--primary-dark);
    color: var(--text-color);
}

@media (max-width: 991px) {
    .main-navbar .nav-quote-btn {
        display: none !important;
    }
}

/* ================= HAMBURGER ================= */

.navbar-toggler {
    border-radius: 6px;
    padding: 6px 8px;
    display: block !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-size: 100%;
    filter: invert(27%) sepia(97%) saturate(550%) hue-rotate(188deg);
}

.btn-close-white {
    position: absolute;
    right: 20px;
    top: 20px;
    filter: invert(0);
    opacity: 1;
    z-index: 2100;
}

/* ================= OFFCANVAS ================= */
.offcanvas {

    width: 100vw !important;
    height: 100vh !important;
    z-index: 2000;
    /* Ye navbar ke bhi upar rahega */
    border: none;
}

body:has(.offcanvas.show):not(:has(.modal.show)) .main-navbar {
    display: none !important;
}

/* Header */
.custom-offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
}

.modal {
    z-index: 3000 !important;
}

.modal-backdrop {
    z-index: 2990 !important;
}

.offcanvas-divider {
    height: 3px;
    background: var(--primary-color);
}

/* Position bottom-right inside hamburger */
.offcanvas-quote-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2100;
}

/* Horizontal wrapper */
.menu-horizontal {
    display: flex;
    gap: 40px;
    padding: 24px;
}

/* Each section */
.menu-section {
    flex: 1;
}

/* Heading */
.menu-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

/* Links */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 10px;
}

.menu-list a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
    transition: 0.3s;
}

.menu-list a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.follow-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 25px;
    color: #444;
}

.follow-inline span {
    font-weight: 600;
    color: #222;
}

.follow-inline i {
    font-size: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.follow-inline i:hover {
    color: var(--primary-color);
}

/* Mobile fallback */
@media (max-width: 991px) {
    .menu-horizontal {
        flex-direction: column;
        gap: 24px;
    }

}

/*  footer  */
.footer-dark {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 60px 0 30px;
    font-size: 18px;
}

.footer-dark .footer-brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-dark .footer-text {
    color: var(--text-color);
    ;
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-dark .footer-rating {
    color: var(--secondary-color);
    font-size: 14px;
}

.footer-dark .footer-rating span {
    color: var(--text-color);
    margin-left: 6px;
}

.footer-dark .footer-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
    border-bottom: 2px solid;
    display: inline-block;
    padding-bottom: 4px;
}

.footer-dark .footer-links,
.footer-dark .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-dark .footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    transition: 0.3s;
    color: var(--text-color);
}

.footer-dark .footer-contact li a {
    color: var(--text-color);
    text-decoration: none;
}



.footer-dark .footer-links li {
    margin-bottom: 10px;
}

.footer-dark .footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s;
}



.footer-dark .footer-social a {
    color: var(--text-color);
    margin: 0 8px;
    font-size: 30px;
    transition: 0.3s;
}



.footer-dark .footer-divider {
    border: 1px solid var(--secondary-color);

}

.footer-dark .footer-bottom {
    color: var(--text-color);
    font-size: 13px;
}



/*  slider  */
.hero-section {
    background: linear-gradient(135deg, #1F5FA9, #2E7BCF, #6A4DBA);
    padding: 90px 0;
    color: var(--text-color);
}

@media only screen and (max-width:520px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-section h1 {
        font-size: 30px !important;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 12px;
}

.hero-section h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    margin: 15px 0 22px;
    opacity: 0.95;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    margin-bottom: 25px;
    font-size: 15px;
}

.trust-points i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.btn-call,
.btn-whatsapp {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
}

.btn-call {
    background: #000;
}

.btn-whatsapp {
    background: #25D366 !important;
}

.trusted-section.colorful {
    padding: 70px 0;
    background: #f8f9fb;
}

.trusted-card {
    padding: 30px 18px;
    border-radius: 18px;
    color: #000;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.35s ease;
}

.trusted-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.trusted-card i {
    font-size: 38px;
    margin-bottom: 12px;
    display: inline-block;
}

.trusted-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.trusted-card p {
    font-size: 14px;
    opacity: 0.95;
}

.trusted-card {
    border-radius: 18px;
    padding: 32px 22px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trusted-card i {
    font-size: 34px;
    color: var(--secondary-color);
    margin-bottom: 14px;
    display: inline-block;
}

.trusted-card h4 {
    font-weight: 600;
    margin-bottom: 8px;
}

.trusted-card p {
    color: #01070e;
    font-size: 14px;
}

/* hover effect (optional but premium) */
.trusted-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}


/* Mobile tweak */
@media (max-width: 575px) {
    .trusted-card {
        padding: 22px 14px;
    }

    .trusted-card h4 {
        font-size: 16px;
    }
}

/*   home page */

.rating-card img {
  max-height: 150px;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.rating-card:hover img {
  transform: rotateY(180deg) scaleX(-1);
}

.rating-card h5 {
  font-weight: 600;
  margin-top: 15px;
}

.rating-card p {
  font-size: 14px;
  margin-bottom: 0;
}

/* achievement */
.achievements-section {
    background: var(--primary-color);
    padding: 30px;
}

.achievements-heading {
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.achievement-card {
    background: var(--primary-dark);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    color: var(--text-color);
    transition: 0.3s ease;
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-8px);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #fff;
}

.achievement-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievement-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.achievement-description {
    font-size: 14px;
    opacity: 0.9;
}

/* Headings & text */
.services-label {
    color: var(--primary-dark);
}

.services-title {
    color: var(--primary-dark);
}

.services-desc {
    color: #444;
}

/* Service Box */

.services-section .service-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(23, 76, 138, 0.35);
}


.services-section .service-box {
    background: #eef3fb;
    border-radius: 16px;
    border: 1px solid var(--primary-dark);
    box-shadow: 0 4px 18px rgba(23, 76, 138, 0.15);
    transition: all 0.3s ease;
}

/* Service Box Button */
.service-btn {
    padding: 8px 20px;
    border-radius: 10px;
    background-color: var(--primary-dark);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
    transform: translateY(-3px);
}


/* Icon Circle */
.services-section .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px dashed var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}




/* Icon Image */
.services-section .icon-circle img {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.services-section .service-box:hover .icon-circle img {
    width: 100%;
    height: 100%;
}

/* Service Heading */
.service-heading {
    color: var(--primary-dark);
}

/* .about-img img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    border: 1px solid var(--secondary-color);
} */

/* .about-img {
    height: 100%;
} */

.experience-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 25px 20px;
    border-radius: 12px;
}

.experience-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.experience-box p {
    margin: 0;
    font-size: 14px;
}

.about-badge {
    background: var(--secondary-color);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.about-title span {
    color: var(--primary-color);
}

.view-more-btn {
    background: var(--secondary-color);
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    transition: 0.3s;
}

.view-more-btn:hover {
    background: var(--primary-dark);
    color: var(--text-color);
}

/* Section Background */
.testimonial-section {
    background: linear-gradient(135deg, #0a0f2d, #1b244a);
    color: var(--text-color);
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Heading */
.testimonial-heading {
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--secondary-color);
}

/* Cards */
.testimonial-card {
    background: rgba(31, 41, 77, 0.8);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.testimonial-card h5 {
    margin-top: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
}

/* Button */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--text-color);
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-view-all:hover {
    background: var(--secondary-color);
    color: var(--text-color);
}

.faq-section {
    background-color: var(--light-bg);
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Centered Heading */
.faq-heading {
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 40px;
    width: 100%;
}

/* FAQ Image */
.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Accordion / FAQ Boxes */
.accordion-item {
    border: 2px solid var(--primary-dark);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    font-weight: 600;
    padding: 1rem 1.25rem;
    font-size: 1rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(31, 95, 169, 0.08);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    color: #495057;
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
    .faq-heading {
        text-align: center;
        margin-bottom: 30px;
    }

    .faq-image {
        margin-bottom: 20px;
    }
}

/* quotemodel  */
/* ================= QUOTE MODAL BASE ================= */
.quote-modal {
    background: #ffffff;
    border-radius: 16px;
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* ================= HEADER ================= */
.quote-header {
    position: relative;
    padding: 22px 26px;
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--primary-dark));
    border-bottom: none;
}

.quote-title {
    margin: 0;
    color: var(--text-color);
    font-size: 26px;
    font-weight: 700;
}

/* OPTIONAL SUBTITLE (agar add karo) */
.quote-subtitle {
    color: var(--text-color);
    font-size: 14px;
    margin-top: 4px;
}

/* ================= CLOSE BUTTON ================= */
.btn-close-custom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s ease;
    z-index: 5;
}

.btn-close-custom:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg);
}

/* ================= BODY ================= */
.quote-body {
    padding: 26px;
    background: #ffffff;
}

/* ================= BACKDROP ================= */
.modal-backdrop.show {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
}

/* ================= FORM ICON INPUT ================= */
.form-icon {
    position: relative;
}

.form-icon i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 15px;
    opacity: 0.85;
}

.textarea-icon i {
    top: 18px;
    transform: none;
}

/* ================= INPUTS ================= */
.form-control {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #f9fbff;
    transition: 0.25s;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(31, 95, 169, 0.2);
}

/* ================= BUTTONS ================= */
.btn-submit {
    background: var(--secondary-color);
    color: #000;
    padding: 12px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: 0.25s;
    box-shadow: 0 10px 26px rgba(31, 95, 169, 0.35);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-clear {
    background: #ffffff;
    color: var(--primary-dark);
    padding: 12px 36px;
    border-radius: 30px;
    border: 1px solid #ddd;
    font-weight: 500;
    transition: 0.25s;
    opacity: 0.75;
}

.btn-clear:hover {
    background: #f4f7fb;
    opacity: 1;
}

/* ================= SUCCESS MESSAGE ================= */
#resultquotemodal .alert-success {
    background: #f2f8ff;
    border-left: 4px solid var(--primary-color);
    color: var(--primary-dark);
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 576px) {

    .modal-dialog {
        margin: 10px;
    }

    .quote-title {
        font-size: 22px;
    }

    .quote-body {
        padding: 20px;
    }

    .btn-submit,
    .btn-clear {
        width: 100%;
        margin-bottom: 10px;
    }
}

/*     quoteform  */
.quote-form-box {
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.glass {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
}

.quote-form-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
}

/* Floating Labels */
.floating-group {
    position: relative;
    margin-bottom: 18px;
}

.floating-group input {
    width: 100%;
    height: 50px;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
}

.floating-group label {
    position: absolute;
    top: 50%;
    left: 14px;
    color: #777;
    font-size: 14px;
    background: #fff;
    /* padding: 0 6px; */
    transform: translateY(-50%);
    pointer-events: none;
    transition: 0.3s ease;
}

.floating-group input:focus+label,
.floating-group input:valid+label {
    top: -7px;
    font-size: 12px;
    color: #1F5FA9;
}

.quote-form-box button {
    height: 50px;
    font-weight: 700;
    border-radius: 12px;
}

.form-note {
    font-size: 12px;
    text-align: center;
    margin-top: 12px;
    color: #555;
}

/*  breadcrump */
.page-breadcrumb {
    position: relative;
    padding: 90px 0;
}


.page-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #2e7bcf;
}

.page-breadcrumb .container {
    position: relative;
    z-index: 2;
}

.page-breadcrumb h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

/* breadcrumb pill */
.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgb(187 184 184 / 35%);
    backdrop-filter: blur(6px);
    color: #fff;
}

.breadcrumb-box a {
    color: #eceaea;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-box .active {
    font-weight: 600;
}

/* mobile fix */
@media (max-width: 575px) {
    .page-breadcrumb {
        padding: 60px 0;
    }

    .page-breadcrumb h1 {
        font-size: 30px;
    }
}

/*  services  page */

.bike-transport-section {
    padding: 70px 0;
    background: #fff;
}

.bike-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.bike-text {
    color: black;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.bike-points {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.bike-points li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #333;
}

.bike-points i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 16px;
}

.bike-img {
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.bike-packing-section {
    background: var(--text-color);
}

.pack-heading {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.pack-subtext {
    max-width: 720px;
    margin: 0 auto;
    font-size: 20px;
    color: black;
    line-height: 1.7;
}

.pack-box {
    background: var(--text-color);
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: 0.3s ease;
}

.pack-box i {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.pack-box h6 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.pack-box p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.pack-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.why-choose-bike {
    padding: 80px 0;
    background: #f9fafc;
}

.section-head h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.section-head p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.choose-box {
    background: var(--text-color);
    border: 1px solid var(--secondary-color);
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    transition: 0.3s ease;
    border-radius: 10px;
}

.choose-box i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.choose-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.choose-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.choose-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}


/*  contacts page  */

.contact-section {
    padding: 60px 0;
}

.contact-info h2 span {
    color: var(--secondary-color);
}

.info-box {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-border);
}

.info-icon {
    background: var(--primary-color);
    color: var(--text-color);
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 22px;
    max-width: 480px;
    margin-left: auto;
}

.contact-form .form-control {
    padding: 8px 12px;
    font-size: 14px;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form textarea {
    resize: none;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.7;
}

.btn-primary-custom {
    background-color: var(--secondary-color);
    color: #000;
    border: none;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/*     cta  page     */

.cta-section {
    padding: 20px 0;
}

.cta-box {
    background: var(--primary-color);
    border-radius: 16px;
    padding: 50px 30px;
    color: var(--text-color);
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}



.btn-call {
    background: var(--secondary-color);
    color: #000;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-call:hover {
    background: var(--secondary-color);
    color: #000;
}

/* Responsive */
@media (max-width: 767px) {
    .cta-box h2 {
        font-size: 26px;
    }
}


/*  about page   */

.about-section {
    padding: 80px 0;
    background: #f9fbff;
}
/* 
.about-img img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-img img:hover {
    transform: scale(1.03);
} */

.about-content .about-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.about-content .about-subtitle {
    font-size: 18px;
    color: #000;
    margin-bottom: 25px;
}

.about-content span{
    color: var(--primary-dark);
    font-size: 20px;
}

.about-points {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.about-points li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-points i {
    color: var(--secondary-color);
    /* yellow color for points */
    font-size: 20px;
}

.btn-about {
    display: inline-block;
    padding: 12px 36px;
    background: var(--secondary-color);
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-about:hover {
    background: var(--primary-dark);
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    /* .about-img img {
        max-width: 100%;
        margin-bottom: 25px;
    } */

    .about-content .about-title {
        font-size: 28px;
    }

    .about-content .about-subtitle {
        font-size: 16px;
    }

    .about-points li {
        font-size: 15px;
    }
}


.why-choose-section {
    padding: 70px 0;
    background: #ffffff;
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.section-icon {
    color: var(--primary-color);
    font-size: 22px;
}

.section-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.about-box-icon {
    font-size: 34px;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.horizontal-box {
    flex-direction: row;
    border: 1px solid var(--gray-border);
    border-left: 5px solid var(--primary-color);
    background: #f8fbff;
    padding: 36px 40px;
}

.horizontal-box h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.horizontal-box p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

/* Hover effect (optional but nice) */
.horizontal-box:hover {
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 767px) {
    .horizontal-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px;
    }
}

.big-box {
    padding: 40px;
    min-height: 160px;
}

.big-box h5 {
    font-size: 22px;
}

.big-box p {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 28px;
    }
}


.experience-section {
    background: #f8f9fa;
}

.experience-circle {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-circle h2 {
    font-size: 52px;
    font-weight: 800;
    margin: 0;
}

.experience-circle p {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}

.experience-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.experience-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.experience-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
}

.experience-list i {
    color: var(--primary-color);
    font-size: 18px;
}


/* RESPONSIVE */
@media (max-width: 991px) {
    .experience-circle {
        width: 180px;
        height: 180px;
        margin-bottom: 20px;
    }

    .experience-circle h2 {
        font-size: 42px;
    }

    .experience-content h3 {
        font-size: 26px;
    }
}




/*  why choose us  */
.why-choose-section {
    padding: 80px 0;
    background: #f8fafc;
}
.custom-left-border {
  border-left: 6px solid var(--primary-color);  
  padding-left: 20px;              
}

.section-heading h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-heading p {
    color: #555;
    font-size: 15px;
}


/* Box */
.why-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    border-top: 4px solid var(--secondary-color);
    height: 100%;
    transition: 0.3s ease;
}

.why-box i {
    font-size: 34px;
    color: var(--secondary-color);
    margin-bottom: 14px;
    display: inline-block;
}

.why-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* Hover effect */
.why-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 767px) {
    .section-heading h2 {
        font-size: 26px;
    }
}


.what-you-get-section {
    padding: 50px 0;
    background: #ffffff;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 86, 210, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-size: 14px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.get-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.get-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.get-list i {
    color: var(--secondary-color);
    font-size: 18px;
}

/* Feature Boxes */
.get-box {
    background: #f8fafc;
    padding: 28px;
    border-radius: 14px;
    height: 100%;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: 0.3s ease;
}

.get-box i {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: inline-block;
}

.get-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.get-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.get-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }
}

/*    all cities page */
.city-intro {
    padding: 60px 0;
}

.city-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.city-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 14px;
}


/* Right Card */
.contact-card {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
}

.contact-card .card-header {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 14px;
    text-align: center;
    font-weight: 600;
}

.contact-card .card-body {
    padding: 16px;
}

.company-box {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: #fff;
}

/* Left image */
.logo-box {
    flex-shrink: 0;
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    padding: 8px;
}

.logo-box img {
    width: 60px;
}

/* Right mail */
.mail-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
      word-break: break-word;
}

.mail-box i {
    font-size: 20px;
    color: var(--secondary-color);
}


/* CTA Buttons */
.btn-whatsapp,
.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
}

.btn-whatsapp {
    background: var(--primary-dark);
}

.btn-call {
    background: var(--secondary-color);
}

.shifting-process {
    padding: 60px 0;
    background: var(--primary-color);
}


.process-title {
    text-align: center;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.process-subtext {
    text-align: center;
    color: var(--text-color);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto 35px;
}

/* White box */
.process-box {
    background: #fff;
    padding: 22px 18px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    height: 100%;
}

.process-row {
    display: flex;
    flex-wrap: wrap;
}

.process-col {
    flex: 1;
    min-width: 0;
}


/* Step number */
.step-no {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

/* Icon circle */
.icon-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 14px;
}

.icon-circle i {
    font-size: 26px;
    color: var(--secondary-color);

}

/* Text */
.process-box h5 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

.process-box p {
    font-size: 14px;
    color: #252121;
    margin: 0;
    line-height: 1.6;
}

/* Arrow */
.process-arrow {
    font-size: 26px;
    color: var(--text-color);
}

.service-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.service-heading {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-section p {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
}

.service-img {
    max-width: 90%;
    border-radius: 8px;
}


.customer-genuine-reviews {
    padding: 60px 0;
    background: #fff;
}

.review-heading {
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.review-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 14px;
    color: #333;
    line-height: 1.7;
}

.review-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-top: 25px;
}

.review-content p {
    font-size: 14px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 10px;
}


.service-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.service-heading {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color, #0d6efd);
    margin-bottom: 15px;
}

.service-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.page-breadcrumb.has-quote-overlay {
    padding-bottom: 180px;
}

.has-quote-overlay~.quote-form-section {
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.quote-form-section {
    margin-top: 20px;
}

.quote-form-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.quote-form-header {
    background: linear-gradient(90deg,
            var(--primary-dark),
            var(--primary-color));
    color: var(--text-color);
    padding: 14px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.quote-form-header i {
    margin-right: 6px;
}

.quote-form {
    padding: 18px 22px;
}

.quote-form .form-control {
    height: 40px;
    border-radius: 6px;
    border: 1px solid var(--gray-border);
    font-size: 14px;
    font-size: 13px;
}

.quote-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.input-group-text {
    background: #f8f9fa;
    border: 1px solid var(--gray-border);
    color: var(--primary-color);
}

.quote-btn {
    padding: 0px 15px;
    height: 42px;
    border: none;
    border-radius: 6px;
    background: var(--secondary-color);
    color: #000;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    display: block;
    margin: 0 auto;
}

.quote-btn:hover {
    background: var(--primary-dark);
}

.quote-form-footer {
    text-align: center;
    font-size: 13px;
    color: #555;
    padding: 6px 0 12px;
}

.quote-form-footer i {
    color: var(--secondary-color);
    margin-right: 4px;
}

/* Add By Roshan */
.footer-dark .bi,
.top-info-bar .bi {
    color: var(--secondary-color);
}

.footer-links li {
    font-size: 16px;

}

.footer-contact li {
    font-size: 16px;

}

.state-box {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.state-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.state-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.state-name {
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    background: var(--secondary-color);
}

.page-breadcrumb {
    background: #2e7bcf;
    padding: 80px 0 60px;
    color: #fff;
}

.breadcrumb-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: float 12s infinite ease-in-out;
}

.c1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
}

.c2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 15%;
    animation-delay: 3s;
}

.c3 {
    width: 90px;
    height: 90px;
    top: 40%;
    right: 30%;
    animation-delay: 6s;
}

/* lines */
.bg-line {
    position: absolute;
    width: 160px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    animation: slide 8s infinite linear;
}

.l1 {
    top: 30%;
    left: -200px;
}

.l2 {
    bottom: 25%;
    left: -300px;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(140vw);
    }
}

.page-breadcrumb .container {
    position: relative;
    z-index: 2;
}

.bg-one {
    background: linear-gradient(135deg,
            #2e7bcf 0%,
            #3f8efc 50%,
            #5aa9ff 100%);
}

.bg-two {
    background: linear-gradient(135deg, #ff7a18, #ff3d77);
}

.bg-three {
    background: linear-gradient(135deg, #0f766e, #06b6d4);
}

.bg-four {
    background: linear-gradient(135deg, #6d28d9, #2563eb);
}

.hero-section {
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.hero-text {
    color: #eaeaea;
}