:root {
    --primary-color: #213d4e;
    --secondary-color: rgb(229, 232, 219);
    --custom-color: #f9f9f9;
    --gray-color: #d3d3d3;
    --brand-color: white;
    --carmy-text-color: black;
    --carmy-logo-color: #1c2f2f;
    --carmy-link-color: #f56f36;
    --carmy-input-bg: var(--gray-color);
    --carmy-button-bg: #f56f36;
    --carmy-button-hover-bg: #f56f36;
    --carmy-small-text-color: #6a6a6a;
    --action-color: #f56f36;
}

/* Bagatela Regular */
@font-face {
    font-family: "Bagatela";
    src: url("../client/fonts/BagatelaRegular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Bagatela Regular Italic */
@font-face {
    font-family: "Bagatela";
    src: url("../client/fonts/BagatelaRegularItalic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Articulat CF Normal (regular) */
@font-face {
    font-family: "ArticulatCF";
    src: url("../client/fonts/Articulat CF Normal.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Articulat CF Bold */
@font-face {
    font-family: "ArticulatCF";
    src: url("../client/fonts/Articulat CF Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.bg-theme {
    background-color: var(--custom-color);
}
.modal-content {
    background-color: var(--custom-color) !important;
    color: black !important;
}
.sidebar,
body,
header {
    background-color: var(--custom-color) !important;
}

.sidebar1 {
    background-color: var(--primary-color);
}

.offcanvas {
    background-color: var(--primary-color);
}

.text-brand {
    color: var(--primary-color);
}

.offcanvas-backdrop {
    background-color: transparent !important;
}

.sidebar1 a,
.sidebar1 i {
    color: white;
}

.sidebar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    border-right: 1px solid rgba(23, 43, 38, 0.1);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.05);
    transition: all 0.3s ease-in-out;
    width: 16rem;
    flex-shrink: 0;
}

.border-success {
    border-color: var(--secondary-color) !important;
}

.text-success {
    color: var(--action-color) !important;
}

.sidebar-header {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    border-bottom: 1px solid rgba(23, 43, 38, 0.1);
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.nav-section {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-button.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

.nav-button.active i {
    color: var(--primary-color);
}

.nav-footer {
    padding: 0.75rem;
    border-top: 1px solid rgba(23, 43, 38, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-primary2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: -webkit-fill-available;
    font-size: 13.1px;
    padding: 1rem 1rem;
    border-radius: 0.5rem;
    background-color: var(--primary-color) !important;
    color: black !important;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.2s ease,
        box-shadow 0.3s ease;
}

.btn-primary1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.1px;
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    background-color: var(--action-color) !important;
    color: white !important;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.2s ease,
        box-shadow 0.3s ease;
}

.btn:disabled {
    border-color: var(--carmy-button-hover-bg);
}

.w-fit {
    width: fit-content;
}

.btn-primary1:hover {
    background-color: var(--action-color) !important;
    box-shadow: 0 4px 12px rgba(51, 102, 153, 0.4);
    transform: translateY(-2px);
}

brand2:hover {
    background-color: var(--brand-color) !important;
    box-shadow: 0 4px 12px rgba(51, 102, 153, 0.4);
    transform: translateY(-2px);
}

.btn-primary1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    transform: skewX(-20deg);
}

.btn-primary2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    transform: skewX(-20deg);
}

.btn-primary2:hover::before {
    animation: shine 0.75s ease-in-out;
}

.btn-primary1:hover::before {
    animation: shine 0.75s ease-in-out;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.main {
    margin-top: 8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.header {
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(23, 43, 38, 0.1);
    box-shadow: 0 1px 3px rgba(59, 130, 246, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: top 0.3s ease, z-index 0.3s ease;
    padding: 0 1.5rem;
}

.header-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: black;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-small {
    padding: 0.1rem 0.8rem;
    font-size: 12px;
    border-radius: 9999px;
    background-color: var(--primary-color);
    border: 1px solid transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.live-chat-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
    z-index: 50;
}

@media (max-width: 1023px) {
    .dl-lg-none {
        display: none !important;
    }

    .navbar1 {
        padding: 17px 9px !important;
    }
}

/* Responsive sidebar */
@media (max-width: 768px) {
    .custom-table td strong {
        font-weight: normal !important;
    }
    .score-badge .score-span {
        font-size: 25px !important;
    }
    .score-badge {
        padding: 2px 11px !important;
    }
    .list-view {
        border-collapse: separate;
        width: 100%;
    }
    .list-view td[data-title]::before {
        color: black !important; /* Title ka text color */
    }

    .list-view thead {
        display: none; /* hide header */
    }

    .list-view tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid black;
        padding: 15px;
        border-radius: 10px;
        background: #f5f9f2;
    }

    .list-view td {
        display: block;
        padding: 0px 0 !important;
        white-space: normal !important;
        border: none !important;
    }

    .list-view td::before {
        content: attr(data-title);
        font-weight: 600;
        color: #444;
    }
}

.custom-w-select {
    width: 90px !important;
}

.grid-container {
    display: block !important;
}

.custom-mv {
    display: grid !important;
}

.plan-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.bg-gradient {
    flex-direction: column;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    z-index: 100;
    transition: left 0.3s ease;
}

.sidebar.active {
    left: 0;
}

.blur-bg {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
}

.card-header-gradient {
    background: linear-gradient(
        to right,
        rgba(249, 250, 251, 0.5),
        rgba(239, 246, 255, 0.5)
    );
}

.card-header-gradient-green {
    background: var(--secondary-color);
}

.card-header-gradient-purple {
    background: linear-gradient(
        to right,
        rgba(245, 243, 255, 0.5),
        rgba(239, 246, 255, 0.5)
    );
}

/* Custom styles for the components */
.bg-light {
    background-color: #f8f9fa !important;
}

.bg-primary {
    background-color: var(--custom-color) !important;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.custom-card {
    height: 100%;
    border-width: 2px;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.custom-card-header {
    border-bottom: 1px solid rgba(23, 43, 38, 0.1);
    background-color: var(--secondary-color);
}

.card-header {
    border-radius: 0px !important;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #d1fae5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-circle {
    background-color: var(--primary-color);
    /* Bootstrap success */
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.custom-btn-primary1 {
    background-color: var(--primary-color);
    font-weight: 600;
    color: white;
}

.custom-card {
    border-width: 2px;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.custom-rewards-header {
    border-bottom: 1px solid rgba(23, 43, 38, 0.1);
    background-color: var(--secondary-color);
}

.reward-balance-card {
    background-image: linear-gradient(to right, #f5f3ff, #eff6ff);
    border-color: #e9d5ff;
}

.reward-icon {
    width: 32px;
    height: 32px;
    border-radius: 0.375rem;
    background-color: #f3e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-primary-custom {
    color: var(--primary-color);
}

.offer-card {
    transition: box-shadow 0.3s;
}

.offer-success {
    background-image: linear-gradient(to bottom right, #ecfdf5, #d1fae5);
    border-color: #bbf7d0;
}

.offer-primary {
    background-image: linear-gradient(to bottom right, #eff6ff, #dbeafe);
    border-color: var(--primary-color);
}

.redeem-btn {
    background-color: var(--brand-color);
    font-weight: 600;
}

.custom-card {
    border-width: 2px;
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 0 0 1rem 1rem;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.custom-easypay-header {
    border-bottom: 1px solid rgba(23, 43, 38, 0.1);
    background-image: var(--secondary-color);
}

.current-balance-card {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
}

.balance-amount {
    font-size: 1.75rem;
}

.standing-card {
    background-color: var(--custom-color);
    border-color: #bbf7d0;
}

.text-black {
    color: black !important;
}

.text-purple {
    color: oklch(0.558 0.288 302.321);
}

.bg-green-50 {
    background-color: var(--secondary-color);
    /* Tailwind's green-50 */
}

span {
    font-size: 12px;
}

.user-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.member-btn {
    background-color: var(--secondary-color);
    color: #374151;
    font-size: 14px;
    font-weight: 200 !important;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--primary-color) !important;
    border-radius: 9999px;
    border: 1px solid #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.member-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.profile-btn {
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    border: none;
}

.profile-btn:hover {
    transform: scale(1.1);
}

.icon-user {
    width: 16px;
    height: 16px;
    color: white;
}

.notification-wrapper {
    position: relative;
}

.notification-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.icon-bell {
    font-size: 24px;
    color: white;
    transition: color 0.2s ease-in-out;
}
.icon-bell:hover {
    color: white !important;
    transition: color 0.2s ease-in-out;
}

.notification-btn:hover .icon-bell {
    color: black;
}

.notification-dot {
    position: absolute;
    top: -5px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: red;
    border: 2px solid red;
    border-radius: 50%;
}

.dot-circle-wrapper {
    margin-left: 7px;
}

.sidebar-container {
    position: relative;
}

.sidebar {
    width: 255px;
    transition: width 0.3s ease;
    overflow-x: hidden;
    background-color: white;
    height: 100vh;
}

.sidebar.collapsed {
    width: 87px;
}

.sidebar .sidebar-label {
    display: inline-block;
    transition: opacity 0.2s ease;
    font-size: 16px !important;
}

.sidebar.collapsed .sidebar-label {
    display: none;
    pointer-events: none;
    width: 0;
    overflow: hidden;
}

.mt-n3 {
    position: absolute;
    top: -14px;
    left: 36%;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: left;
}

.nav-button:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

.nav-button:hover i {
    color: var(--brand-color);
}

.redeem-btn {
    background-color: var(--brand-color);
}

.sidebar-toggle {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 100;
    transform: translateX(100%);
}

.toggle-button {
    background: white;
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 0.25rem;
    font-size: 1.25rem;
    cursor: pointer;
}

.sidebar-container .toggle-button:hover {
    background-color: #f8f9fa;
}

i {
    color: rgba(33, 37, 41, 0.75);
    font-size: 16px;
}

.odometer-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.label {
    font-size: 14px;
    color: black;
    /* gray-500 */
}

.calendar-button {
    flex: 1;
    padding: 8px 16px;
    /* px-4 py-2 */
    background-color: rgb(204, 204, 219) !important;
    /* bg-blue-50 */
    color: rgb(23, 43, 38);
    /* text-blue-600 */
    border: none;
    border-radius: 8px;
    text-decoration: none;
    /* rounded-lg */
    font-weight: 500;
    /* font-medium */
    font-size: 14px;
    /* text-sm */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* space-x-2 */
    cursor: pointer;
    transition: background-color 0.2s;
}

.calendar-button:hover {
    background-color: #dbeafe;
    /* hover:bg-blue-100 */
}

.calendar-icon {
    width: 16px;
    /* w-4 */
    height: 16px;
    /* h-4 */
}

.odometer-display {
    display: flex;
    align-items: center;
    gap: 4px;
}

.odometer-info {
    display: flex;
    align-items: center;
    gap: 4px;
}

.reading {
    font-size: 12px;
    color: #374151;
    /* gray-700 */
}

.unit {
    font-size: 12px;
    color: black;
    /* gray-500 */
}

.icon-button {
    padding: 4px;
    border: none;
    background: transparent;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
}

.icon-button:hover {
    background-color: #f3f4f6;
    /* gray-100 */
}

.icon {
    width: 12px;
    height: 12px;
    color: #9ca3af;
    /* gray-400 */
    transition: color 0.2s;
}

.icon-button:hover .icon {
    color: black;
    /* gray-600 */
}

.icon-box {
    width: 32px;
    /* w-8 */
    height: 32px;
    /* h-8 */
    border-radius: 8px;
    /* rounded-lg */
    background-color: var(--custom-color);
    /* bg-green-100 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-green {
    width: 16px;
    /* w-4 */
    height: 16px;
    /* h-4 */
    color: #16a34a;
    /* text-green-600 */
}

.text-12 {
    font-size: 12px !important;
}

i {
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

i:hover {
    transform: scale(1.2) rotate(-5deg);
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(51, 102, 153, 0.4);
}

.icon-check {
    margin-top: 0.7rem;
    width: 20px;
    /* Tailwind w-5 = 1.25rem = 20px */
    height: 20px;
    /* Tailwind h-5 */
    color: black;
    /* Tailwind text-green-600 */
}

.profile-menu-wrapper {
    padding: 24px;
}

.profile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

* {
    font-family: "ArticulatCF", Arial, sans-serif;
}

.title {
    font-family: "Bagatela", "ArticulatCF", sans-serif !important;
    text-transform: capitalize !important;
    margin: 0;
}

.subtitle {
    font-size: 14px;
    color: black;
    margin: 0;
}

.close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    color: #9ca3af;
    font-size: 24px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.close-btn:hover {
    background-color: #f3f4f6;
}

.profile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background-color: var(--primary-color);
    border: 1px solid #e5e7eb;
    color: white;
    font-weight: 600;
    text-align: left;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
    cursor: pointer;
}

.menu-btn:hover {
    background-color: var(--custom-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.menu-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-white {
    width: 16px;
    height: 16px;
    color: white;
}

.close-section {
    margin-top: 32px;
}

.close-footer-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-footer-btn:hover {
    background-color: var(--primary-color);
}

.menu-icon2 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar a {
    color: unset !important;
    text-decoration: none !important;
}

.sidebar1 a {
    text-decoration: none !important;
}

/*---------------service page ----------*/

.card-header-gradient {
    background: linear-gradient(to right, #e0f7fa, #ede7f6);
    /* blue-50 to purple-50 */
}

.icon-w-12 {
    width: 3rem;
    /* 12 * 0.25rem = 3rem */
    height: 3rem;
}

.bg-green-100-custom {
    background-color: #d4edda;
    /* A light green */
}

.text-green-600-custom {
    color: #28a745;
    /* A darker green */
}

.bg-green-800-custom {
    background-color: #155724;
    /* Even darker green for text */
}

.text-green-800-custom {
    color: #155724;
}

.bg-blue-100-custom {
    background-color: #e0f7fa;
    /* A light blue */
}

.bg-blue-800-custom {
    background-color: #0056b3;
    /* Even darker blue for text */
}

.text-blue-800-custom {
    color: #0056b3;
}

.bg-purple-100-custom {
    background-color: #ede7f6;
    /* A light purple */
}

.text-purple-600-custom {
    color: #6f42c1;
    /* A darker purple */
}

.bg-purple-800-custom {
    background-color: #4b0082;
    /* Even darker purple for text */
}

.text-purple-800-custom {
    color: #4b0082;
}

.text-blue-600-stat {
    color: #007bff;
    /* Bootstrap primary blue */
}

.text-green-600-stat {
    color: #28a745;
    /* Bootstrap success green */
}

.text-purple-600-stat {
    color: #6f42c1;
    /* Bootstrap purple */
}

.card-header-gradient {
    background: var(--secondary-color);
    /* green-50 to blue-50 */
}

.icon-box-lg {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom colors for Tires card */
.bg-blue-100-custom {
    background-color: #e0f7fa;
    /* light blue */
}

.border-blue-600-custom {
    border-color: var(--primary-color) !important;
    /* Bootstrap primary blue */
}

.bg-orange-500-custom {
    background-color: #fd7e14 !important;
}

.hover-bg-blue-100-custom:hover {
    background-color: #cce5ff !important;
    /* Even lighter blue on hover */
}

/* Custom colors for Wheels card */
.bg-orange-100-custom {
    background-color: #fff3e0;
    /* light orange */
}

.border-orange-600-custom {
    border-color: #fd7e14 !important;
    /* Bootstrap orange */
}

.bg-orange-600-custom {
    background-color: #fd7e14;
    /* Bootstrap orange */
}

.text-orange-600-custom {
    color: #fd7e14 !important;
    /* Bootstrap orange */
}

.bg-orange-50-custom {
    background-color: #fff9e6;
    /* Lighter orange */
}

.hover-bg-orange-100-custom:hover {
    background-color: #ffe6b3 !important;
    /* Even lighter orange on hover */
}

/* Hover shadow for cards */
.hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.custom-width {
    width: 70%;
    margin: auto;
}

/* .container{
            padding-left: 100px !important;
            padding-right: 100px !important;
        } */
.card-header-gradient {
    background: linear-gradient(to right, #f3e5f5, #e3f2fd);
    /* purple-50 to blue-50 */
}

.icon-w-10 {
    width: 2.5rem;
    /* 10 * 0.25rem = 2.5rem */
    height: 2.5rem;
}

.text-purple-600-custom {
    color: #6a1b9a !important;
    /* A darker purple */
}

.text-blue-600-custom {
    color: var(--primary-color) !important;
    /* Bootstrap primary blue */
}

.bg-blue-600-custom {
    background-color: #0d6efd !important;
}

.bg-green-100-custom {
    background-color: var(--secondary-color);
    /* Light green */
}

.text-green-600-custom {
    color: #28a745;
    /* Bootstrap success green */
}

.bg-blue-100-custom {
    background-color: #e3f2fd;
    /* Light blue */
}

/* Hover shadow for cards */
.hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Custom styles if Bootstrap doesn't cover everything */
.card-header-gradient {
    background: var(--secondary-color);
    /* green-50 to blue-50 */

    .bg-blue-50-custom {
        background-color: #e6f7ff;
        /* light blue */
    }

    .border-blue-200-custom {
        border-color: black !important;
        /* A slightly darker light blue */
    }

    .bg-green-50-custom {
        background-color: #e6ffe6;
        /* light green */
    }

    .border-green-200-custom {
        border-color: #a7f0a7 !important;
        /* A slightly darker light green */
    }

    .bg-green-500-custom {
        background-color: #28a745;
        /* Bootstrap success green */
    }

    .text-green-700-custom {
        color: #196f3d !important;
        /* A darker shade of green */
    }

    .text-green-600-custom {
        color: #28a745 !important;
        /* Bootstrap success green */
    }

    .bg-red-50-custom {
        background-color: #ffe6e6;
        /* light red */
    }

    .border-red-200-custom {
        border-color: #f7a7a7 !important;
        /* A slightly darker light red */
    }

    .bg-red-100-custom {
        background-color: #ffe0e0;
        /* A lighter red */
    }

    .text-red-600-custom {
        color: #dc3545 !important;
        /* Bootstrap danger red */
    }

    .text-red-700-custom {
        color: #c82333 !important;
        /* A darker red */
    }

    .bg-orange-100-custom {
        background-color: #fff3e0;
        /* light orange */
    }

    .text-orange-700-custom {
        color: #e65c00 !important;
        /* A darker orange */
    }

    /* Hover shadow for cards */
    .hover-shadow:hover {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }

    /* For flex-grow-1 equivalent on buttons or other elements */
    .flex-grow-1 {
        flex-grow: 1;
    }

    .text-purple-600-custom {
        color: #6a1b9a !important;
        /* A darker purple */
    }
}

.border-blue-200-custom {
    border-color: black !important;
    /* A slightly darker light blue */
}

.bg-blue-100-custom {
    background-color: #bbdefb;
    /* Another shade of light blue */
}

.text-blue-700-custom {
    color: #0288d1 !important;
    /* A darker blue */
}

.text-blue-800-custom {
    color: #0d47a1 !important;
    /* Even darker blue */
}

.bg-orange-500-custom {
    background-color: #fd7e14 !important;
    /* Bootstrap orange */
}

.text-green-600-custom {
    color: #28a745 !important;
    /* Bootstrap success green */
}

/* Hover effects */
.hover-bg-white-50:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.transition-colors {
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Custom icon sizing */
.w-12 {
    width: 3rem;
    /* Tailwind w-12 equivalent */
}

.h-11 {
    height: 4rem;
}

.h-12 {
    height: 3rem;
    /* Tailwind h-12 equivalent */
}

.l-h {
    line-height: 13px;
}

.text-unst {
    text-decoration: none;
}

.line-height {
    line-height: 17px;
    padding-top: 8px;
}

@media only screen and (max-width: 574.9px) {
    .width-ase {
        width: 150px !important;
    }
    .service-category-card {
        border-radius: 1rem !important;
    }

    .swiper {
        height: 300px;
    }
    .dashboard-card h5 {
        margin-top: 1rem;
    }

    .loan-status.paid {
        width: 35%;
        text-align: center;
    }

    .info-row .status-badge {
        width: 50%;
        text-align: center;
    }

    .info-row {
        align-items: start !important;
    }

    .report-header {
        display: block !important;
    }

    .service-table .icon-w-12 {
        width: 3rem !important;
        height: 2rem !important;
    }

    .service-table svg {
        width: 18px !important;
    }

    .service-table h4 {
        font-size: 12px !important;
    }

    .btn-book {
        font-size: 12px !important;
        text-align: left;
    }

    .service-card-header .service-title,
    .service-subtitle,
    .status-badge {
        font-size: 12px !important;
    }

    .service-card-header .icon-w-12 {
        width: 2rem !important;
        height: 2rem !important;
    }

    .service-card-header svg {
        width: 18px !important;
    }

    .w-md-50 {
        width: 100% !important;
    }

    .header {
        padding: 1rem 0.5rem !important;
    }

    .card-header .me-3 {
        margin-right: -0.1rem !important;
    }

    .xs-d-block {
        display: block !important;
    }

    .xs-d-block a {
        margin-top: 0.5rem;
    }

    .me {
        margin-right: 0.5rem !important;
    }

    .btn-primary1 {
        font-size: 1rem !important;
    }

    .user-buttons {
        display: none !important;
    }

    .desktop {
        display: none !important;
    }

    .d-xs-flex {
        display: flex;
    }

    .p-4 {
        padding: 0.7rem !important;
    }

    .px-4 {
        padding: 1rem 0.7rem 1rem 0.7rem !important;
    }

    .px-5 {
        padding: 1rem 0.7rem 1rem 0.7rem !important;
    }
}

@media only screen and (min-width: 567px) {
    .title {
        font-size: 42px !important;
    }

    .sep {
        border-left: 1px solid grey;
    }
    .dashboard-card {
        padding: 20px 40px;
    }
    .d-flex-responsive {
        display: flex;
    }

    .mobile {
        display: none !important;
    }
}

@media only screen and (min-width: 769px) {
    .form-select-lg {
        min-width: 280px !important;
    }
    .custom-table tr:last-child td {
        border-bottom: 1px solid #000 !important;
        /* bottom border for last row */
    }

    .w-md-25 {
        width: 25% !important;
    }
    .skip-button {
        margin-right: 3rem;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .md-d-none {
        display: none !important;
    }
}

.sidebar1 {
    overflow: auto;
    height: 100dvh;
}

.small {
    font-size: 12px !important;
}

.bg-blue-50-custom {
    background-color: var(--custom-color);
    /* Tailwind's blue-50 */
}

.text-red-500-custom {
    color: #dc3545 !important;
    /* Bootstrap danger red */
}

.bg-gray-50-custom {
    background-color: #f8f9fa !important;
    /* Lighter gray for input backgrounds */
}

.focus-ring-blue-500:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    /* Bootstrap's focus ring for primary */
    border-color: #0d6efd;
    /* Bootstrap primary blue */
}

.hover-bg-white-50:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hover-bg-gray-200:hover {
    background-color: var(--gray-color) !important;
    /* Bootstrap light gray */
}

.bg-custom-blue {
    background-color: var(--primary-color);
    /* Specific blue from original */
}

.transition-colors-custom {
    transition: background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, color 0.15s ease-in-out,
        opacity 0.15s ease-in-out;
}

.disabled-opacity-50:disabled {
    opacity: 0.5;
}

.disabled-cursor-not-allowed:disabled {
    cursor: not-allowed;
}

.form-control-p-3 {
    padding: 0.75rem !important;
    /* p-3 equivalent */
}

.text-xs-custom {
    font-size: 0.75rem !important;
    /* Tailwind text-xs */
}

label {
    font-size: 12px;
}

.offcanvas .menu-btn {
    text-decoration: none !important;
}

.btn-primary1:active {
    background-color: var(--action-color) !important;
    border-color: var(--action-color) !important;
}

.h-42 {
    height: 42px !important;
}

.font-20 {
    font-size: 18px;
}

.bg-custom-blue {
    background-color: var(--primary-color);
}

.border-custom-blue {
    border-color: #336699 !important;
}

.text-custom-blue {
    color: #336699 !important;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hover-shadow:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease-in-out;
}

.card-offer {
    border: 1px solid #d1d5db;
}

.rounded-circle-with-icon {
    width: 32px;
    /* w-8 equivalent (1 unit = 4px) */
    height: 32px;
    /* h-8 equivalent */
    background-color: #22c55e;
    /* bg-green-500 equivalent */
    border-radius: 50%;
    /* rounded-full equivalent */
    display: flex;
    /* flex equivalent */
    align-items: center;
    /* items-center equivalent */
    justify-content: center;
    /* justify-center equivalent */
}

.rounded-circle-with-icon .icon {
    width: 20px;
    /* w-5 equivalent */
    height: 20px;
    /* h-5 equivalent */
    color: #fff;
    /* text-white equivalent */
}

.text-22 {
    font-size: 22px;
}

.bg-green-600 {
    background-color: #16a34a !important;
}

.custom-top2 {
    margin-top: 0.7rem !important;
}

.text-14 {
    font-size: 14px !important;
}

.rounded-circle1 {
    width: 60px;
    height: 60px;
    display: flex;
    border-radius: 50%;
    margin: auto;
    align-items: center;
    justify-content: center;
}

/* Custom CSS to match the original design */
.service-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    /* Rounded corners */
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    transition: background-color 0.2s;
}

.service-icon {
    color: white;
    width: 24px;
    height: 24px;
    transition: color 0.2s;
}

.service-btn:hover {
    background-color: #f3f4f6;
    /* Equivalent to hover:bg-gray-100 */
}

.service-btn {
    border: none;
    background-color: transparent;
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.service-btn:hover {
    background-color: #f9fafb;
    /* Equivalent to hover:bg-gray-50 */
}

.service-label {
    font-size: 0.75rem;
    /* Equivalent to text-xs */
}

.login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.bg-custom {
    background-color: var(--secondary-color);
}

.bg-custom button {
    color: rgb(23, 43, 38) !important;
}

.bg-custom .nav-link.active {
    background-color: var(--custom-color);
    border: 0 !important;
    border-radius: 0.5rem !important;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1200px !important;
    }
}

.icon-circle {
    background-color: rgba(23, 43, 38, 0.1) !important;
}

.history-box {
    width: 2rem;
    /* w-8 */
    height: 2rem;
    /* h-8 */
    border-radius: 0.5rem;
    /* rounded-lg */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(23, 43, 38, 0.1);
}

.history-icon {
    width: 1rem;
    /* w-4 */
    height: 1rem;
    /* h-4 */
    color: rgb(23, 43, 38);
}

.btn.secondary:hover {
    background: #e5e8db;
    color: #172b26;
    border: 1px solid #172b26;
}

/* CSS (put this in your stylesheet) */
.btn-menu {
    /* p-2 -> 0.5rem padding */
    padding: 0.3rem 0.4rem;
    /* rounded-lg -> 0.5rem (8px) radius */
    border-radius: 0.5rem;

    /* background color copied from inline style */
    background-color: rgba(23, 43, 38, 0.05);

    /* makes the button size match content and allow alignment */
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* transition-colors -> smooth color/background transitions */
    transition: background-color 160ms ease, color 160ms ease, stroke 160ms ease;
    border: none;
    cursor: pointer;
}

/* lg:block -> display:block at large screens (>= 1024px) */
@media (min-width: 1024px) {
    .btn-menu {
        display: block;
    }
}

/* Icon sizing (w-5 h-5 -> 1.25rem = 20px) */
/* The SVG uses stroke="currentColor", so color controls stroke color */
.btn-menu .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-color);
    /* matches the inline svg style */
    fill: none;
    /* keep original 'fill="none"' behavior */
    stroke: var(--primary-color);
    stroke-width: 2;
}

/* Optional hover/focus styling (keeps visual language of transition-colors) */
.btn-menu:hover,
.btn-menu:focus {
    background-color: rgba(23, 43, 38, 0.12);
    outline: none;
}

.card-header {
    padding: 0;
}

.contact-desc,
.faq-desc {
    margin-bottom: 0rem !important;
}

#appointments-container .card-header {
    padding: 1rem !important;
}

.text-left {
    text-align: left !important;
}
.btn-text {
    font-size: 16px !important;
}
.carmy-create-account-button {
    width: 100%;
    font-family: "ArticulatCF", Arial, sans-serif;
    padding: 15px;
    margin-top: 30px;
    border: none;
    border-radius: 15px;
    background-color: var(--carmy-button-bg);
    color: white;
    font-size: 16px !important;

    font-weight: medium;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-transform: uppercase;
    line-height: 1.5;
}

.carmy-create-account-button:hover {
    background-color: var(--carmy-button-hover-bg);
    color: white;
}

.carmy-create-account-button:disabled {
    background-color: var(--carmy-button-bg);
    opacity: 0.6;
    cursor: not-allowed;
}

.notif-list a,
.notifications-list a,
.notifications-footer a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
}

.notification-empty {
    text-align: center;
    display: flex;
    padding-top: 1rem;
    padding-bottom: 1rem;
    justify-content: center;
    font-weight: 500;
}

.arti {
    font-family: "ArticulatCF", Arial, sans-serif;
}

.bega-regular {
    font-family: "Bagatela", "ArticulatCF", sans-serif !important;
}

footer,
footer * {
    font-family: "ArticulatCF", Arial, sans-serif !important;
}

.footer-logo img {
    width: 200px;
}

.loans-text {
    font-size: 13px;
    /* color: var(--carmy-logo-color); */
}

/* Dashboard card */
.dashboard-card {
    border-radius: 20px;
    background-color: white;
}

.dashboard-card1 {
    border-radius: 40px;
}

.d-b-color {
    background-color: var(--gray-color);
}

/* Vehicle Info Section */

.vehicle-info img {
    width: 160px;
    height: 191px;
    object-fit: cover;
    border-radius: 27px;
    border: 1px solid;
}
.info-smd{
    width: auto;
    height: 200px;
    margin: auto;
    border-radius: 27px;
    background-size: contain;
    border: 1px solid;
    background-repeat: no-repeat;
    background-position: center;
}


.vehicle-details {
    font-family: "ArticulatCF", Arial, sans-serif;
}

/* Progress Circle */
.progress-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#22312d 0% 87%, #9ea98f 87% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #22312d;
    margin-bottom: 20px;
}

/* Status Text */

.status-text a {
    text-decoration: underline;
    color: #000;
}

/* Circular Progress Card */
.card1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
}

.card1 .percent {
    position: relative;
}

.card1 svg {
    position: relative;
    width: 180px;
    height: 180px;
    transform: rotate(-90deg);
}

.card1 svg circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #00000073;
    stroke-width: 10;
    stroke-linecap: round;
}

.card1 svg circle:last-of-type {
    stroke: #132423;
    stroke-dasharray: 502;
    stroke-dashoffset: calc(502 - (502 * var(--percent)) / 100);
    stroke-linecap: square;
}

.card1 .number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.number span:first-child {
    font-size: 55px !important;
}

.number span:last-child {
    font-size: 35px !important;
    font-weight: 500;
    font-family: bagatela;
}

.card1 .title h2 {
    margin: 25px 0 0;
}

/* Product Section */
.product-section {
    background-color: white;
    position: relative;
    border: 1px solid #b5b5ad;
    padding: 60px 20px;
    border-radius: 20px;
    text-align: center;
}

.product-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-images img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 20px;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.product-images img:nth-child(2) {
    transform: rotate(0deg);
    z-index: 1;
    margin-bottom: 57px;
}

.product-images img:nth-child(3) {
    transform: rotate(10deg);
}

.product-images img:hover {
    transform: scale(1.05);
}

.product-title {
    font-weight: 700;
    font-family: "ArticulatCF", Arial, sans-serif;
    font-size: 1.8rem;
    color: #0b0f0e;
}

.product-subtext {
    font-family: "ArticulatCF", Arial, sans-serif;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.explore-btn {
    background-color: var(--action-color);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.explore-btn:hover {
    background-color: var(--action-color);
}

/* Appointment Section */

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

.appointment-card {
    border-radius: 25px;
}

.appointment-card h5 {
    font-weight: 700;
    font-size: 19px;
    font-family: "ArticulatCF", Arial, sans-serif;
    margin-bottom: 0.6rem;
}

.appointment-card p {
    margin-bottom: 1.5rem;
    color: #132423;
}

.appointment-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-view {
    border: 1px solid #132423;
    color: #132423;
    font-weight: 600;
    background: transparent;
    border-radius: 12px;
    padding: 8px 18px;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: var(--action-color);
    color: white;
    border-color: var(--action-color);
}

.btn-calendar {
    background: none;
    border: none;
    font-weight: 600;
    color: #132423;
    text-decoration: underline;
    padding: 8px 0;
}

.btn-calendar:hover {
    color: #22312d;
}

/* Responsive Adjustments */

@media (max-width: 575px) {
    .service-container {
    padding: 20px 6px !important;
}
    .title {
        font-size: 32px !important;
    }
    .nav-tabs .nav-link {
        padding: 9px 11px !important;
    }

    .welcome {
        font-size: 32px !important;
    }

    .product-title {
        font-size: 1.4rem !important;
    }
    .explore-btn {
        padding: 13px 26px !important;
        font-size: 14px !important;
    }

    .qr-box {
        max-width: 100% !important;
    }

    .product-images img:nth-child(2) {
        transform: rotate(0deg);
        z-index: 1;
        margin-bottom: 21px !important;
    }

    .product-images img {
        width: 87px !important;
        height: 91px !important;
        border-radius: 20px;
        transform: rotate(-10deg);
        transition: transform 0.3s ease;
    }
}

@media (min-width: 1200px) {
    .col-5th {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 44.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 1rem;
    height: 240px;
    border: 0;
}

.welcome {
    font-size: 42px;
    font-family: "Bagatela", sans-serif;
}

.welcome_p {
    font-size: 18px;
    font-family: "ArticulatCF", Arial, sans-serif;
    color: black;
}

.point1 {
    color: black !important;
    text-align: left !important;
}

.welcome-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border-left: 2px solid #d6d6e0;
}

.redeem-box {
    border: 1px solid #000;
    border-radius: 6px;
    padding: 10px 14px;

    font-size: 13px;
    text-transform: uppercase;
    line-height: 1.4;
}

.shape {
    font-size: 15px;
    font-family: "ArticulatCF", Arial, sans-serif;
}

p {
    font-size: 13px;
    margin-bottom: 0 !important;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 200px;
    font-family: "ArticulatCF", Arial, sans-serif;
}

.custom-select select {
    width: 100%;
    padding: 8px 35px 8px 12px;
    font-size: 14px;
    color: #000;
    background-color: var(--brand-color);
    border: 1px solid !important;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* remove border and change background on focus */
.custom-select select:focus {
    outline: none;
    border: none;
    background-color: var(--brand-color);
}

/* hover effect */
.custom-select select:hover {
    background-color: var(--brand-color);
}

/* Font Awesome dropdown arrow */
.custom-select::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    pointer-events: none;
}

.toast-success {
    background-color: var(--primary-color) !important;
}

.carmy-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-top: 8px;
    color: var(--carmy-text-color);
}

.carmy-text-input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 15px !important;
    background-color: var(--carmy-input-bg);
    box-sizing: border-box;
    font-size: 16px;
    color: var(--carmy-text-color);
    transition: background-color 0.2s;
    box-shadow: none !important;
}

.carmy-text-input:focus {
    outline: none;
    background-color: var(--carmy-input-bg);
}

.offcanvas.offcanvas-end {
    top: 133px !important;
    right: 0 !important;
    width: 320px !important;
}

.carmy-select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 15px !important;
    background-color: var(--carmy-input-bg);
    box-sizing: border-box;
    font-size: 16px;
    color: var(--carmy-text-color);
    transition: background-color 0.2s;
    box-shadow: none !important;
    appearance: none;
    /* Hide default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='12' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M2 4l4 4 4-4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    /* Adjust arrow position */
    background-size: 12px;
    cursor: pointer;
}

.carmy-select:focus {
    outline: none;
    background-color: var(--carmy-input-bg);
}

.profile-menu-buttons span {
    font-size: 16px !important;
    font-weight: 400 !important;
}

.pointer {
    cursor: pointer;
}

.blink-zoom {
    font-size: 2.2rem;
    color: #fff;
    font-weight: bold;
    animation: glowBlinkZoom 2s forwards;
    /* play once */
}

@keyframes glowBlinkZoom {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

#main-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15000;
}

/* ========== Dots ========== */
.main-loader .dot {
    width: 20px;
    height: 20px;
    background-color: var(--action-color);
    /* dot color */
    border-radius: 50%;
    animation: bounce 0.6s infinite ease-in-out;
}

/* ========== Animation Keyframes ========== */
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-30px) scale(1.3);
        opacity: 1;
    }
}

/* ========== Delay for Staggered Effect ========== */
.main-loader .dot:nth-child(1) {
    animation-delay: 0s;
}

.main-loader .dot:nth-child(2) {
    animation-delay: 0.25s;
}

.main-loader .dot:nth-child(3) {
    animation-delay: 0.5s;
}

.btn-secondary:hover {
    background-color: var(--gray-color) !important;
    border-color: var(--gray-color);
}

.btn-secondary:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.box li:hover {
    transform: none !important;
}

.card1 svg circle:nth-child(1) {
    width: 100% !important;
    height: 100% !important;
    fill: none !important;

    stroke-width: 10 !important;
}

.percent svg circle {
    stroke-linecap: square;
}
#closeNotificationsBtn span {
    font-size: 28px;
}
.text-18 {
    font-size: 18px;
}
.text-15 {
    font-size: 15px;
}

.form-select:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: unset;
}
#notificationsPanel * {
    color: white !important;
}
.notifications-list {
    max-height: 400px;
    overflow-y: auto;
}
.notif-container * {
    color: black !important;
}
.notif-container .notification-item {
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}
/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #888;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.appointment-modal-grid .carmy-label {
    text-transform: capitalize !important;
}
#appointment-modal-services li {
    font-size: 15px !important;
}
.account-dropdown-menu {
    background: var(--primary-color) !important;
    border-radius: 0 !important;
    border: none !important;
    top: 83% !important;
    min-width: 350px;
    padding: 0;
}

.dropdown-toggle::after {
    display: none !important;
}
.btn-chover:hover {
    background-color: var(--action-color);
    color: white !important;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 1rem;
    text-decoration: none;
}
.text-16 {
    font-size: 16px !important;
}

#serviceTabs .nav-item {
    font-size: 13px !important;
}
.anchor {
    color: var(--carmy-link-color) !important;
    text-decoration: none;
    font-weight: 500;
}
.anchor:hover {
    text-decoration: underline !important;
}
.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    color: #000; /* arrow color */
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 40px !important;
}

.swiper-button-next,
.swiper-button-prev {
    top: 94% !important;
}
.swiper-button-prev {
    left: 39% !important;
}
.swiper-button-next {
    left: 51% !important;
}
.custom-service-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 0.25rem;
    cursor: pointer;
    position: relative;
    transition: 0.2s ease-in-out;
}

/* Checked state */
.custom-service-checkbox:checked {
    background: #0f1a17;
    border-color: #0f1a17;
}

/* White tick */
.custom-service-checkbox:checked::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 12px;
    left: 5px;
    top: 0px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.d-b-color {
    background-color: var(--gray-color);
}
.service-card p {
    font-size: 27px !important;
}
.dashboard-card1 {
    border-radius: 40px;
    height: 245px;
}

.service-card.selected {
    border: 3px solid var(--primary-color) !important;
}

.service-card.selected .service-check {
    display: inline-flex;
}
.service-card:hover {
    background-color: #b2b2cc !important;
}
.arti {
    font-family: "ArticulatCF", Arial, sans-serif;
}
.call-mechanic {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}
.book-btn {
    background-color: var(--action-color); /* dark greenish-black */
    color: white; /* soft off-white text */
    border: none;
    border-radius: 12px; /* fully rounded pill shape */
    padding: 9px 28px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.25s ease;
    display: none;
    /* hidden by default */
    opacity: 0;
}

.book-btn:hover {
    background-color: var(--action-color);
    transform: translateY(-2px);
}

.book-btn.show {
    display: inline-block;
    opacity: 1;
}
@media only screen and (min-width: 1700px) {
    .container {
        max-width: 1100px !important;
    }
}
@media only screen and (max-width: 767.98px) {
    .form-select {
        min-width: 130px !important;
    }
    .welcome-right {
        padding-left: 0.5rem;
    }
}
@media (min-width: 1200px) {
    .col-5th {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}
.form-select {
    border-radius: 25px !important;
    border: 0 !important;
    font-size: 14px !important;
    border: 0 !important; /* remove border always */
    cursor: pointer;
}

/* Dropdown menu rounded when opened */
.form-select:focus {
    border-radius: 25px 25px 0px 0px !important;
    box-shadow: none !important;
}
/* Remove focus outline */
.form-select:focus-visible {
    outline: none !important;
}
.form-select:focus-visible {
    border-radius: 25px 25px 0 0 !important;
}

.form-select {
    appearance: none; /* hide default */
    padding: 0.7rem 2.25rem 0.7rem 0.75rem !important;
}
.form-select {
    border-color: transparent !important; /* optional rounding */
    box-shadow: none !important;
}
.form-select option:hover {
    background-color: var(--primary-color) !important; /* your hover color */
    color: #fff !important; /* text color on hover */
}
.clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* approx 110 characters */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* SELECT BUTTON */
/* .bootstrap-select .dropdown-toggle {
  background-color: var(--gray-color);
  border-color: var(--gray-color);
  
} */

/* OPTION HOVER */
.bootstrap-select .dropdown-menu li a:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

/* SELECTED OPTION */
.bootstrap-select .dropdown-menu .selected a {
    background-color: var(--gray-color);

    color: #000 !important;
}

/* REMOVE DEFAULT CARET */
.bootstrap-select .dropdown-toggle::after {
    display: none !important;
}

/* ADD CUSTOM ICON */
.bootstrap-select .dropdown-toggle {
    position: relative;
    padding-right: 45px !important;
}

/* Remove outline on focus */
.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
    box-shadow: none !important;
}
/* Default bootstrap caret hatao */

/* Font Awesome down icon */
.bootstrap-select .dropdown-toggle {
    position: relative;
    padding-right: 40px; /* space for icon */
}

.bootstrap-select .dropdown-toggle {
    position: relative;
    padding-right: 40px;
}

.bootstrap-select .dropdown-toggle::before {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cpath fill='%23000000' d='M.08 58.86h37.24l111.72 161.46h2.39l111.72-161.46h36.76L171.48 241.15h-42.49L.08 58.86Z'/%3E%3C/svg%3E");
}

/* Remove outline and shadow from the dropdown button inside bootstrap-select */
.bootstrap-select .btn.dropdown-toggle,
.bootstrap-select .btn.dropdown-toggle:focus,
.bootstrap-select .btn.dropdown-toggle:active,
.bootstrap-select .btn.dropdown-toggle:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove outline for the hidden select element as well */
.bootstrap-select > select.mobile-device:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Optional: remove outline from all buttons globally */
button:focus,
button:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
.stroke-good circle:first-of-type {
    stroke: #67c782 !important; /* lighter green */
}

.stroke-attention circle:first-of-type {
    stroke: #e2be65; /* light yellow */
}

.stroke-critical circle:first-of-type {
    stroke: #c9806e; /* light reddish-brown */
}
.stroke-good circle:last-of-type {
    stroke: #00af5b !important; /* vibrant green */
}

.stroke-attention circle:last-of-type {
    stroke: #f89d20 !important; /* orange */
}

.stroke-critical circle:last-of-type {
    stroke: #c52132 !important; /* deep red */
}
@media (min-width: 2500px) {
    .flex-grow-1 {
        min-height: 90dvh;
    }
}
.flex-grow-1 {
    display: flex;
    flex-direction: column;
}
.carmy-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    border-left: 4px solid #bfc6cf;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid black;
    font-size: 12px;
    color: #5f6b7a;
    max-width: 100%;
    margin-top: 16px;
}

.carmy-disclaimer p {
    margin: 0;
    line-height: 1.4;
}

.carmy-disclaimer strong {
    font-weight: 600;
    color: #4b5563;
}

.carmy-disclaimer .info-icon {
    font-size: 13px;
    line-height: 1.2;
    color: #7c8aa0;
    margin-top: 1px;
}
.bootstrap-select .dropdown-toggle {
    background-color: var(--gray-color) !important;
    border-color: var(--gray-color) !important;
}
.text-action {
    color: var(--action-color);
}
.roadside-close-btn {
    width: 100%;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600 !important;
    border: 1px solid #b8c2cc;
    background-color: #b8c2cc !important;
    color: white;
    transition: box-shadow 0.2s ease;
}
.roadside-close-btn:hover {
    border: 1px solid #babfc7;
    color: white !important;
}
.roadside-close-btn:active {
    border-color: #babfc7 !important;
    color: white !important;
}
