  :root {
    --bs-primary: #0859d3; /* Primary color */
    --bs-secondary: #6c757d; /* Secondary color */
    --bs-success: #fd7e14; /* Success color */
    --bs-danger: #dc3545; /* Danger color */
    --bs-warning: #ffc107; /* Warning color */
    --bs-info: #0dcaf0; /* Info color */
    --bs-light: #f8f9fa; /* Light color */
    --bs-dark: #212529; /* Dark color */
    --bs-muted: #6c757d; /* Muted text color */
    --bs-white: #fff; /* White color */
    --bs-black: #000; /* Black color */
    --bs-gray-100: #f8f9fa; /* Light Gray */
    --bs-gray-200: #e9ecef; /* Gray */
    --bs-gray-300: #dee2e6; /* Gray */
    --bs-gray-400: #ced4da; /* Gray */
    --bs-gray-500: #adb5bd; /* Gray */
    --bs-gray-600: #6c757d; /* Gray */
    --bs-gray-700: #495057; /* Darker Gray */
    --bs-gray-800: #343a40; /* Dark Gray */
    --bs-gray-900: #212529; /* Dark Gray */
    --sun-gradient: radial-gradient(
    circle farthest-corner at 50% 50%, 
    #FFF57B 0%,      /* Sunny Yellow (Center) */
    #FCB033 40%,     /* Yellow Orange */
    #FA8607 70%,     /* American Orange */
    #C83C00 100%     /* Deeper Red/Orange (Edge) */
  );
    }

  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

  html, body {
    font-family: poppins, sans-serif;
    line-height: 1.5;
    background-color: var(--bs-light);
    color: var(--bs-dark);
    overflow-x: hidden;
    }

  h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin-bottom: 0.5em;
    }

  h1 {
    font-size: 3rem;
    color: var(--bs-success);
;
    }

  h2 {
    font-size: 2.75rem;
    background: linear-gradient(45deg, #FFD700, #FFC107, #FF8C00, #FF6F00);
    -webkit-background-clip: text; /* for Chrome, Safari */
    -webkit-text-fill-color: transparent; /* makes text show the gradient */
    }

  h3 {
    font-size: 1.5rem;
    color: var(--bs-success);
    }

  h4 {
    font-size: 1.25rem;
    }

  h5 {
    font-size: 1rem;
    }

  h6 {
    font-size: 0.875rem;
    }

  p {
    margin-bottom: 1em;
    font-size: 1rem;
    color: var(--bs-muted);
    }

  a {
    color: var(--bs-success);
    text-decoration: none;
    }

  a:hover {
    text-decoration: underline;
    color: var(--bs-success);
    }

    .custom-bg {
      background-color: #f7f8fa;
    }

    /* Remove underline from nav links and buttons */
    .navbar-nav .nav-link,
    .btn {
      text-decoration: none !important;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .btn:hover,
    .btn:focus {
      text-decoration: none !important;
    }

    /* 🎨 Custom buttons */
    .btn-login {
      background-color: var(--bs-white); /* Login button color */
      color: var(--bs-primary);
      border: 1px solid var(--bs-primary);
      transition: all 0.3s ease;
    }
    .btn-login:hover {
      background-color: var(--bs-primary);
      color: #fff;
    }

    .btn-quote {
      background-color: var(--bs-white); /* Sign Up button color (orange) */
      color: var(--bs-success);
      border: 1px solid var(--bs-success);
      transition: all 0.3s ease;
    }
    .btn-quote:hover {
      background-color: var(--bs-success);
      color: #fff;
    }

    /* 🖼️ Custom logo size */
    .navbar-brand img {
      width: auto;
      height: 60px;
      object-fit: contain;
    }

    /* 📏 Add gap between menu items */
    .navbar-nav {
      gap: 20px;
    }

    /* 🧱 Add small gap between buttons */
    .btn-group-custom a {
      margin-left: 10px;
    }

    /* Header Section styling */
    .request-section {
      padding: 60px 0;
      background-color: #f9fafb;
    }

    .form-control,
  .form-select {
    border-radius: 25px;
    border: 1px solid #ccc;
    padding: 5px 14px;
  }

  .input-icon {
    position: relative;
  }
  .input-icon img {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 16px;
  }
  .input-icon input {
    padding-left: 45px;
  }

  .btn-submit {
    background-color: var(--bs-white);
    color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
    padding: 10px 20px;
    border-radius: 6px;
    transition: 0.3s;
  }

  .btn-submit:hover {
    background-color: var(--bs-primary);
    color: #fff;
  }

  .formh5 {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--bs-primary);
    text-align: center;
  }

  /* ===== Toggle Tab Styling ===== */
  .toggle-container {
    display: flex;
    justify-content: center;
    background: #f1f1f1;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .toggle-btn {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
  }

  .toggle-btn.active {
    background: var(--bs-primary);
    color: #fff;
  }

  .form-section {
    display: none;
  }

  .form-section.active {
    display: block;
  }

    .formh5{
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--bs-primary);
    }

    /* Text content (right side) */
    .content-section h2 {
      font-weight: 700;
    }
    .content-section h5 {
      color: var(--bs-primary);
      margin-bottom: 15px;
    }
    .content-section p {
      color: #555;
    }

  .cities-section{
    background-color: var(--bs-gray-200);
  }

  .five-per-row {
    flex: 0 0 20%; /* 100 / 5 = 20% width */
    max-width: 20%;
  }

  .cities-list i.bi-geo-alt-fill {
    color: var(--bs-primary); /* Bootstrap Primary Color */
    font-size: 1.1rem; /* optional size tweak */
  }

  .cities-list li{
    transition: transform 0.3s;
  }

  .cities-list li:hover{
    transform: translateY(-3px);
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) { /* lg */
    .five-per-row {
      flex: 0 0 25%; /* 4 per row on medium screens */
      max-width: 25%;
    }
  }

  @media (max-width: 768px) { /* md */
    .five-per-row {
      flex: 0 0 33.3333%; /* 3 per row on small screens */
      max-width: 33.3333%;
    }
  }

  @media (max-width: 576px) { /* sm */
    .five-per-row {
      flex: 0 0 50%; /* 2 per row on extra small screens */
      max-width: 50%;
    }
  }

  .why-choose-us .icon-box {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .why-choose-us .icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }

  .why-choose-us .icon-box .icon {
    font-size: 2.5rem;
    color: var(--bs-primary); /* primary color for all icons */
  }

  .why-choose-us .icon-box h5 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .why-choose-us .icon-box p {
    color: #6c757d; /* muted text */
    font-size: 0.95rem;
  }

  .cta-section {
    background-color: var(--bs-primary);
    border-radius: 12px;
    padding: 60px 20px;
    position: relative;
  }
  
  .cta-logo-overlay {
      position: absolute;
      left: 20px;
      right: auto;
      width: 200px;      /* adjust size */
      z-index: 10;
      opacity: 0.5;      /* soft blend */
    }

    @media (max-width: 768px) {
      .cta-logo-overlay {
        width: 80px;
        top: 15px;
        right: 15px;
      }
    }

  .cta-section h2 {
    font-weight: 600;
  }

  .cta-section .btn {
    border-radius: 50px;
    padding: 12px 30px;
    transition: transform 0.3s;
  }

  .cta-section .btn:hover {
    transform: translateY(-3px);
  }

  .cta-section .cab-img {
    max-width: 100%;
    height: auto;
  }

  .footer-section {
    background: #f8f9fa; /* Light background */
    color: var(--bs-primary);
  }

  .footer-section a:hover {
    color: #0d6efd;
  }

  .footer-section i {
    transition: transform 0.3s;
    color: var(--bs-primary);
    font-size: 1.2rem;
  }

  .footer-section i:hover {
    transform: scale(1.2);
  }

  .breadcrumb-row {
      background-color: #ddd;
      padding-left: 65px;
      padding-right: 50px;
  }

    /* Responsive tweaks for smaller screens */
    @media (max-width: 767px) {
      .breadcrumb-row {
        padding-left: 0px;
        padding-right: 0px;
      }
    }

/* About page About Section */
    .about-company {
        position: relative;
        overflow: hidden;
        background: var(--bs-primary);
        color: #fff;
        padding: 5rem 0;
    }

    /* Decorative circle animation */
    .about-company::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        top: -100px;
        right: -100px;
        animation: floatCircle 8s ease-in-out infinite alternate;
    }

    @keyframes floatCircle {
        0% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(20px) rotate(45deg); }
        100% { transform: translateY(0) rotate(0deg); }
    }

    /* Glassmorphism cards */
    .about-company .card {
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border: none;
        border-radius: 1rem;
        padding: 2rem 1rem;
        transition: all 0.4s ease;
        text-align: center;
    }

    .about-company .card:hover {
        transform: translateY(-10px) scale(1.05);
        background: rgba(255,255,255,0.15);
        box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    }

    /* Headings & text */
    .about-company h2 {
        color: #fff;
    }

    .about-company p {
        color: #e0e0e0;
    }

    /* Button hover effect */
    .about-company .btn-light {
        transition: all 0.3s ease;
        font-weight: 600;
    }

    .about-company .btn-light:hover {
        background-color: #fff;
        color: #2575fc;
        transform: translateY(-3px);
    }

    /* Responsive tweaks for smaller screens */
    @media (max-width: 767px) {
        .about-company .card {
            margin-bottom: 20px;
        }
    }

    .p-italic{
      font-style: italic;
    }

    /* Fleet */
  .fleet-card {
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .fleet-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }

  /* Badge styling */
  .fleet-card .badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    border-radius: 0.5rem;
  }

  /* Card image hover zoom */
  .fleet-card img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: transform 0.3s;
  }

  .fleet-card:hover img {
    transform: scale(1.05);
  }

/* Service */
  .service-card {
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #ffffff;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }

  .service-card i {
    transition: transform 0.3s;
  }

  .service-card:hover i {
    transform: scale(1.2);
  }

  .service-card .card-title {
    margin-top: 10px;
    margin-bottom: 15px;
  }
  
  .img-box {
    height: 250px; /* Adjust height as you like */
    overflow: hidden;
  }
  .object-fit-cover {
    object-fit: cover;
  }

  .back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

  .back-to-top:hover {
    background: #084298;
}

/* Floating Chat Button (LEFT SIDE) */
#chatToggle {
    position: fixed;
    bottom: 25px;
    left: 25px;  /* <-- LEFT SIDE */
    z-index: 9999;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb703, #ff8f00);
    color: #fff;
    border: none;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: 0.3s;
}
#chatToggle:hover {
    transform: scale(1.1);
}

/* Chat Widget (LEFT FLOAT) */
#chatWidget {
    position: fixed;
    bottom: 100px;
    left: 25px; /* <-- LEFT POSITION */
    width: 350px;
    border-radius: 18px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    overflow: hidden;
    display: none;
    animation: popIn 0.3s ease-out;
    z-index: 99999;
}

@keyframes popIn {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.chat-header {
    background: linear-gradient(135deg, #ffb703, #ff8f00);
    padding: 15px;
    color: #fff;
}

.chat-box {
    height: 260px;
    overflow-y: auto;
    padding: 15px;
}

.bot-msg, .user-msg {
    padding: 10px 14px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 14px;
    margin-bottom: 8px;
}

.bot-msg {
    background: #fff3cd;
    border-left: 4px solid #ffb703;
}

.user-msg {
    background: #e0f2ff;
    border-right: 4px solid #0d6efd;
    margin-left: auto;
}

.input-area {
    padding: 12px;
    background: #f8f9fa;
}

.input-area .form-control {
    border-radius: 20px;
}

#sendBtn {
    border-radius: 20px;
    padding: 8px 18px;
    background: #ffb703;
    border: none;
    color: white;
}
#sendBtn:hover {
    background: #ff9800;
}

#chatToggle.attention-pop {
    animation: attentionPop 0.6s ease-out;
}

@keyframes attentionPop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); }
}






