.bc-fs-18 {
  font-size: 20px !important;
  line-height: 1.6 !important;
}

.bc-fs-50 {
  font-size: 50px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

@media (max-width: 750px) {
  .bc-fs-50 {
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
  }
}

@media (max-width: 750px) {
  .bc-max750-py-30 {
    padding: 30px 0;
  }
}

.custom-logo-mobile {
  width: 100px;
  margin: 0 0 20px 0;
}
.custom-logo {
  width: 60px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .custom-logo {
    width: 50px;
    margin: 0;
  }
  .burger-icon {
    top: auto;
  }
}
.custom-brand {
  width: 80%;
  max-height: fit-content !important;
}

.scroll-offset,
.scroll-offset * {
  scroll-margin-top: 100px;
}

/* --- BeeCabs: Modern Feature Cards --- */
/* Modern Card Styling */
.card-feature-modern {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  border: 2px solid #f1f5f9;
  transition: all 0.3s ease;
  height: 100%;
}

.card-feature-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #e2e8f0;
}

/* Icon Styling */
.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card-feature-modern:hover .card-icon {
  transform: scale(1.1);
}

.card-icon-blue {
  background: #eff6ff;
  color: #2563eb;
}
.card-icon-purple {
  background: #faf5ff;
  color: #9333ea;
}
.card-icon-orange {
  background: #fff7ed;
  color: #ea580c;
}
.card-icon-green {
  background: #f0fdf4;
  color: #16a34a;
}
.card-icon-indigo {
  background: #eef2ff;
  color: #4f46e5;
}
.card-icon-pink {
  background: #fdf2f8;
  color: #ec4899;
}

/* Tag Styling */
.tag-yellow {
  display: inline-block;
  background: #fbbf24;
  color: #1f2937;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Heading adjustments */
.heading-2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 991px) {
  .heading-2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .heading-2 {
    font-size: 32px;
  }
  .card-feature-modern {
    padding: 24px;
  }
}

/* --- BeeCabs Chat Widget --- */
.bc-chat-fab {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 1050;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-brand-2);
  color: var(--bs-color-1000);
  border: 1px solid var(--bs-brand-2-darken);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.bc-chat-fab:hover {
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.bc-chat-fab:active {
  transform: translateY(0);
}

.bc-chat-panel {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 320px;
  max-height: 60vh;
  background: var(--bs-neutral-0);
  color: var(--bs-neutral-1000);
  border: 1px solid var(--bs-neutral-200);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  z-index: 1049;
  transform-origin: bottom right;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}
.bc-chat-panel.bc-closed {
  opacity: 0;
  transform: scale(0.96);
  visibility: hidden;
  pointer-events: none;
}
.bc-chat-panel.bc-open {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

.bc-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--bs-brand-2);
  color: var(--bs-color-1000);
}
.bc-chat-title {
  font-weight: 700;
  font-size: 15px;
}
.bc-chat-close {
  background: transparent;
  border: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 6px;
}
.bc-chat-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.bc-chat-messages {
  padding: 12px;
  overflow: auto;
  max-height: 44vh;
  background: var(--bs-background-card);
}
.bc-chat-message {
  display: flex;
  margin-bottom: 8px;
}
.bc-chat-message.bc-me {
  justify-content: flex-end;
}
.bc-chat-bubble {
  max-width: 80%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
  background: var(--bs-neutral-100);
  color: var(--bs-neutral-1000);
}
.bc-chat-message.bc-me .bc-chat-bubble {
  background: var(--bs-brand-2);
  color: var(--bs-color-1000);
  border: 1px solid var(--bs-brand-2-darken);
}

.bc-chat-input {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--bs-neutral-200);
  background: var(--bs-neutral-0);
}
.bc-chat-input input {
  flex: 1;
  border: 1px solid var(--bs-neutral-200);
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
  background: var(--bs-neutral-0);
  color: var(--bs-neutral-1000);
}
.bc-chat-input input:focus {
  border-color: var(--bs-brand-2-darken);
  box-shadow: 0 0 0 3px rgba(242, 204, 12, 0.18);
}
.bc-chat-send {
  min-width: 44px;
  border-radius: 10px;
  border: 1px solid var(--bs-brand-2-darken);
  background: var(--bs-brand-2);
  color: var(--bs-color-1000);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.bc-chat-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .bc-chat-panel {
    right: 12px;
    left: 12px;
    width: auto;
  }
  .bc-chat-fab {
    right: 16px;
    bottom: 18px;
  }
}

/* Utility animations */
.bc-anim-spin {
  animation: bc-spin 1s linear infinite;
}
@keyframes bc-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Chat profile form inside panel */
.bc-chat-profile {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bs-neutral-0);
}
.bc-chat-profile-form {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bc-chat-profile-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--bs-neutral-1000);
}
.bc-chat-profile-form input {
  border: 1px solid var(--bs-neutral-200);
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--bs-neutral-0);
  color: var(--bs-neutral-1000);
}
.bc-chat-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding-top: 8px;
}
.bc-chat-error {
  color: crimson;
  font-size: 13px;
}

.vehicle-image {
  width: 100% !important;
  height: 250px !important;
}

.vehicle-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 8px !important;
}

/* Logo Grid Styles */
.logo-grid-container {
  width: 100%;
  padding: 3rem 2rem;
  background-color: #fafafa;
}

.logo-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 160px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.logo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(147, 51, 234, 0.05)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Quill / blog content display fixes: ensure headings remain bold even if vendor CSS
   (like Quill's styles) load after theme CSS and reduce font-weight. Use high
   specificity and !important to guarantee visual consistency for blog content. */
.ql-editor h1, .ql-editor h2, .ql-editor h3,
.blog-content h1, .blog-content h2, .blog-content h3 {
  font-weight: 700 !important;
  color: inherit !important;
}

/* Ensure inline strong/em remain bold inside editor content */
.ql-editor strong, .blog-content strong, .ql-editor b, .blog-content b {
  font-weight: 700 !important;
}

/* Keep pre/code styling readable */
.ql-editor pre, .blog-content pre {
  background: #2d3748;
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
}

.logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #ddd;
}

.logo-card:hover::before {
  opacity: 1;
}

.logo-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.logo-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.logo-card:hover .logo-image {
  transform: scale(1.08);
}

/* Tablet View */
@media (max-width: 1024px) {
  .logo-grid-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .logo-card {
    padding: 2rem 1.25rem;
    min-height: 140px;
  }
}

/* Mobile View - 3 logos per row */
@media (max-width: 768px) {
  .logo-grid-container {
    padding: 2rem 1rem;
  }

  .logo-grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .logo-card {
    padding: 1.5rem 1rem;
    min-height: 120px;
    border-radius: 12px;
  }
}

/* Small Mobile View */
@media (max-width: 480px) {
  .logo-grid-container {
    padding: 1.5rem 0.75rem;
  }

  .logo-grid-wrapper {
    gap: 0.75rem;
  }

  .logo-card {
    padding: 1.25rem 0.75rem;
    min-height: 100px;
  }
}

.testimonial-item {
  /* Take half the available width minus a small gap compensation */
  flex: 0 0 calc(50% - 12px) !important;
  max-width: calc(50% - 12px) !important;
  width: calc(50% - 12px) !important;
  box-sizing: border-box !important;
}

  /* ==== Blog content styles adapted from the test page (preserve Quill formatting) ==== */
  .blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .blog-content h1,
  .blog-content h2,
  .blog-content h3,
  .blog-content h4,
  .blog-content h5,
  .blog-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .blog-content h1 { font-size: 2.25rem; }
  .blog-content h2 { font-size: 1.85rem; }
  .blog-content h3 { font-size: 1.5rem; }
  .blog-content h4 { font-size: 1.25rem; }
  .blog-content h5 { font-size: 1.1rem; }
  .blog-content h6 { font-size: 1rem; }

  .blog-content p {
    margin-bottom: 1.2rem;
  }

  .blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
  }

  .blog-content a {
    color: var(--bs-brand-2);
    text-decoration: none;
    word-break: break-word;
  }
  .blog-content a:hover { text-decoration: underline; }

  .blog-content blockquote {
    border-left: 4px solid var(--bs-brand-2);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #666;
  }

  .blog-content ul,
  .blog-content ol {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
  }

  .blog-content li {
    margin-bottom: 0.5rem;
  }

  .blog-content code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    word-break: break-word;
  }

  .blog-content pre {
    background: #2d3748;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
  }

  .blog-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
    word-break: normal;
  }

  /* Preserve Quill's text alignment and indentation classes */
  .blog-content .ql-align-center { text-align: center; }
  .blog-content .ql-align-right { text-align: right; }
  .blog-content .ql-align-justify { text-align: justify; }
  .blog-content .ql-indent-1 { padding-left: 3em; }
  .blog-content .ql-indent-2 { padding-left: 6em; }
  .blog-content .ql-indent-3 { padding-left: 9em; }

  /* Ensure strong/b remain bold inside blog-content */
  .blog-content strong, .blog-content b { font-weight: 700 !important; }

  /* Make headings even stronger if another stylesheet is interfering */
  .box-content-info-detail .blog-content h1,
  .box-content-info-detail .blog-content h2,
  .box-content-info-detail .blog-content h3 {
    font-weight: 700 !important;
  }

  /* Tablet Responsive Styles */
  @media (max-width: 991px) {
    .blog-content {
      font-size: 1.05rem;
      line-height: 1.75;
    }

    .blog-content h1 { font-size: 1.9rem; }
    .blog-content h2 { font-size: 1.6rem; }
    .blog-content h3 { font-size: 1.4rem; }
    .blog-content h4 { font-size: 1.2rem; }

    .blog-content blockquote {
      padding-left: 16px;
      margin: 16px 0;
    }

    .blog-content pre {
      padding: 16px;
      font-size: 0.9em;
    }
  }

  /* Mobile Responsive Styles */
  @media (max-width: 767px) {
    .blog-content {
      font-size: 1rem;
      line-height: 1.7;
    }

    .blog-content h1 { 
      font-size: 1.65rem;
      margin-top: 1.25rem;
    }
    .blog-content h2 { 
      font-size: 1.45rem;
      margin-top: 1.25rem;
    }
    .blog-content h3 { 
      font-size: 1.25rem;
      margin-top: 1rem;
    }
    .blog-content h4 { 
      font-size: 1.1rem;
      margin-top: 1rem;
    }
    .blog-content h5 { font-size: 1rem; }
    .blog-content h6 { font-size: 0.95rem; }

    .blog-content p {
      margin-bottom: 1rem;
    }

    .blog-content img {
      margin: 16px 0;
      border-radius: 6px;
    }

    .blog-content blockquote {
      border-left-width: 3px;
      padding-left: 14px;
      margin: 16px 0;
      font-size: 0.95rem;
    }

    .blog-content ul,
    .blog-content ol {
      padding-left: 1.5rem;
      margin-bottom: 1rem;
    }

    .blog-content li {
      margin-bottom: 0.4rem;
    }

    .blog-content pre {
      padding: 14px;
      margin: 16px 0;
      font-size: 0.85em;
      border-radius: 6px;
    }

    .blog-content code {
      font-size: 0.88em;
      padding: 1px 5px;
    }

    /* Adjust indentation for mobile */
    .blog-content .ql-indent-1 { padding-left: 2em; }
    .blog-content .ql-indent-2 { padding-left: 4em; }
    .blog-content .ql-indent-3 { padding-left: 6em; }
  }

  /* Small Mobile Styles */
  @media (max-width: 480px) {
    .blog-content {
      font-size: 0.95rem;
    }

    .blog-content h1 { font-size: 1.5rem; }
    .blog-content h2 { font-size: 1.35rem; }
    .blog-content h3 { font-size: 1.2rem; }

    .blog-content pre {
      padding: 12px;
      font-size: 0.8em;
    }

    .blog-content blockquote {
      padding-left: 12px;
      font-size: 0.92rem;
    }

    .blog-content .ql-indent-1 { padding-left: 1.5em; }
    .blog-content .ql-indent-2 { padding-left: 3em; }
    .blog-content .ql-indent-3 { padding-left: 4.5em; }
  }

  /* End blog-content styles */

/* Slight adjustment for very small screens to avoid overflow */
@media (max-width: 768px) {
  .testimonial-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

.hide-on-mobile {
  @media (max-width: 575px) {
    display: none !important;
  }
}

.bc-flex {
  display: flex !important;
}

.on-tablet-fs-26 {
  @media (max-width: 991px) {
    font-size: 26px !important;
    line-height: 1.5 !important;
  }
}
.on-mobile-fs-20 {
  @media (max-width: 575px) {
    font-size: 20px !important;
    line-height: 1.5 !important;
  }
}


.bc-object-center {
  object-fit: cover !important;
  object-position: center !important;
}

.bc-no-max-width {
  max-width: none !important;
}