 .main_container {
            /* border: 1px solid; */
            width: 70%;
            margin: 0 auto;
            /* text-align: center; */
            padding: 5px;
        }

        .main_card {
            width: 70%;
            margin: 0 auto;
        }

        .sub_card {
            display: flex;
            align-items: center
        }

        .drpdwn {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .serice_card_img {
            width: 30%;
            margin: 0 10px;
            border-radius: 25%;
        }

        .service_card_p {
            font-size: 1rem;
            font-weight: bold;
        }

        .sub_card {
            text-align: center;
            transition: all 0.3s ease;
            padding: 1rem 1rem;
        }

        .crd:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            border: 1px solid #87CEEB;
            /* sky blue outline */
        }

        .serice_card_img {
            transition: transform 0.3s ease;
        }

        .crd:hover .serice_card_img {
            transform: scale(1.08);
        }

        .crd:hover .sub_card {
            background-color: #f0faff;
            /* very light sky blue */
        }

          .bage {
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            background: #fff;
        }

        /* Colors */
        .badge-outline-primary {
            color: #0d6efd;
            border: 1px solid #0d6efd;
        }

        .badge-outline-success {
            color: #198754;
            border: 1px solid #198754;
        }

        .badge-outline-warning {
            color: #ffc107;
            border: 1px solid #ffc107;
        }

        .badge-outline-info {
            color: #0dcaf0;
            border: 1px solid #0dcaf0;
        }

        .badge-outline-purple {
            color: #6f42c1;
            border: 1px solid #6f42c1;
        }

        .badge-outline-orange {
            color: #fd7e14;
            border: 1px solid #fd7e14;
        }

        .badge-outline-teal {
            color: #20c997;
            border: 1px solid #20c997;
        }

        .badge-outline-pink {
            color: #d63384;
            border: 1px solid #d63384;
        }

        .badge-outline-danger {
            color: #dc3545;
            border: 1px solid #dc3545;
        }

        .badge-outline-dark {
            color: #000;
            border: 1px solid #000;
        }

        .badge-outline-brown {
            color: #795548;
            border: 1px solid #795548;
        }

        .badge-outline-cyan {
            color: #0dcaf0;
            border: 1px solid #0dcaf0;
        }

         .badge-purple {
            background-color: #6f42c1;
            color: #fff;
        }

        .badge-orange {
            background-color: #fd7e14;
            color: #fff;
        }

        .badge-teal {
            background-color: #20c997;
            color: #fff;
        }

        .badge-brown {
            background-color: #795548;
            color: #fff;
        }

        .badge-pink {
            background-color: #d63384;
            color: #fff;
        }

        .badge-cyan {
            background-color: #0dcaf0;
            color: #000;
        }
        .badge-gray {
            background-color: #7E8299;
            color: #000;
        }

        .pointer {
    cursor: pointer;
    transition: 0.2s ease;
    display: inline-block;
}

.pointer:hover {
    opacity: 0.8;
    transform: scale(1.03);
}

    .loader-wrapper {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: all;
}
.blur-content {
    pointer-events: none; /* disable clicks */
}
.loader-wrapperservice {
    width: 100%;
    height: 200px;           /* card ke andar center dikhane ke liye fixed height */
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
}

.collapse-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.collapse-content.open {
  max-height: 500px;
  opacity: 1;
}


/* Hide by default (desktop/tablet) */
.mobileHeader {
    display: none;
}

/* Show only on mobile screens */
@media (max-width: 768px) {
    .mobileHeader {
        display: block;
    }
}

/* Mobile menu button */
.mobile-menu-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    padding: 0;
    font-size: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.35);      /* translucent white */
    backdrop-filter: blur(6px);              /* glass effect (iOS style) */
    -webkit-backdrop-filter: blur(6px);
    color: #000;
    z-index: 9999;
    display: none; /* shows only on mobile */
    width: 45px;
    height: 45px;
}

/* Slide menu container */
.slide-menu {
    position: fixed;
    top: 0;
    left: -260px; /* Hidden initially */
    width: 260px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    transition: left 0.3s ease-in-out;
    z-index: 9998;
    padding: 15px;
}

.slide-menu.open {
    left: 0; /* Slide in */
}

/* Menu header */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-title {
    font-weight: bold;
    font-size: 18px;
}

.close-btn {
    border: none;
    background: transparent;
    font-size: 28px;
}

/* Overlay background */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 9990;
}

.overlay.show {
    display: block;
}

/* Menu list */
.menu-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

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

.menu-list li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.menu-list li a:hover {
    color: #0d6efd;
}
.mobile-menu-btn.hide {
    display: none !important;
}

/* Show button only on mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}


.removeUnderL{
    text-decoration: none;
}


.upperCase{
    text-transform: uppercase;
}


.btn-badge-wrapper {
    position: relative;
    display: inline-block;
}

/* .btn-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff3b3b;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
} */



.preview-box {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.preview-frame {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 8px;
    object-fit: cover;
    background: #f5f5f5;
}

.desc-cell {
     max-width: 300px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.custom_active {
    background: linear-gradient(135deg, #f5f7ff, #e2e7ff);
    color: #2323a7 !important;
}

.nav-section {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d74b3;
    margin-top: 1rem;
    padding-left: 0.25rem;
}

/* Tabs wrapper */
.my-tabs {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

/* Each tab */
.my-item {
    margin-right: -1px; /* clean border join */
}

/* Tab link */
.my-item .my-link {
    display: inline-flex;        
    align-items: center;
    justify-content: flex-start; 
    background-color: #f8f9fa;
    padding: 7px 15px;
    font-size: 14px;
    color: #212529;
    border: 1px solid #c3c9cf;
    text-decoration: none;
    white-space: nowrap;         
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover & active */
.my-item .my-link:hover,
.my-item .my-link.active {
    background-color: #ffffff;
    color: #010101 !important;
}

/* Badge */
.btn-badge {
    background-color: #f44336;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 12px;
    line-height: 1;
    margin-left: 6px;
    flex-shrink: 0;  
}

    th{
        font-weight: 600;
        font-size: 0.875rem;
    }
    td{
        font-size: 0.812rem;
    }



      @media(max-width: 768px)
    {
        .hide{
            display: none;
        }
        
        .my_account .card-stat{
            height: 7rem;
        }

        .card_center{
            justify-content: center;
            align-items: center;
            display: flex;
        }

        .mobile-margin-bottom{
            margin-bottom: 4rem;
        }
    }



      

         .tracking-line .step {
            padding: 8px 15px;
            border-radius: 20px;
            background: #e9ecef;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
        }

        .tracking-line .step.active {
            background: #0d6efd;
            color: white;
        }

        .tracking-line .line {
            flex: 1;
            height: 2px;
            background: #ced4da;
            margin: 0 10px;
        }

        .badge-success, .preview-list .preview-item .preview-thumbnail .badge.badge-online {
  color: white !important;
  background: #4DA761 !important;
  border: 1px solid #4DA761 !important;
  border-radius: 4px;
}

.badge-info, .preview-list .preview-item .preview-thumbnail .badge.badge-offline {
  color: white !important;
  background: #00AAB7 !important;
  border: 1px solid #00AAB7 !important;
  border-radius: 4px;
}

.badge-warning, .preview-list .preview-item .preview-thumbnail .badge.badge-busy {
  color: white !important;
  background: #E29E09 !important;
  border: 1px solid #E29E09 !important;
  border-radius: 4px;
}

/* Remove Bootstrap default background */
.custom-accordion .accordion-button {
    background-color: transparent !important;
    box-shadow: none !important;
    color: #212529;
    padding: 12px 16px;
    font-weight: 500;
}

/* Remove Bootstrap arrow */
.custom-accordion .accordion-button::after {
    display: none !important;
}

/* Border + hover */
.custom-accordion .accordion-button:hover {
    background-color: #f8f9fa;
}

/* Custom arrow */
.accordion-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 14px;
}

/* Rotate arrow when open */
.custom-accordion .accordion-button:not(.collapsed) .accordion-arrow {
    transform: rotate(180deg);
}

/* Accordion body */
.custom-accordion .accordion-body {
    background-color: #fff;
    padding: 16px;
}
        .ag {
            padding: 1.5rem !important; /* p-4 */
        }


    @media (max-width: 768px) {

        /* Accordion button wrap fix */
        .accordion-button {
            /* flex-direction: column !important; */
            align-items: flex-start !important;
            gap: 8px !important; 
            padding: 12px 15px !important;
            font-size: 14px !important;
        }

        .ag {
            padding: 0.25rem !important; /* p-1 */
        }

        .accordion-button .d-flex.align-items-center {
            flex-wrap: wrap !important;
            gap: 5px !important;
        }

        .accordion-button .bg-secondary {
            font-size: 13px !important;
            padding: 4px 8px !important;
        }

        /* Table responsive wrapper */
        .accordion-body {
            overflow-x: auto !important;
            padding: 10px 0 !important;
        }

        .accordion-body table {
            width: 100% !important;
            min-width: 400px; /* optional, keeps table readable */
            font-size: 13px !important;
        }

        .accordion-body th,
        .accordion-body td {
            padding: 6px 8px !important;
            white-space: nowrap;
        }

        /* Wallert */
        .wallet_myacc .card-body {
            padding: 1rem; /* mobile me thoda compact */
        }

        .wallet_myacc .d-flex.justify-content-between.align-items-start {
            flex-direction: column; /* stack items vertically */
            align-items: flex-start;
            gap: 12px;
        }

        .wallet_myacc h6 {
            font-size: 25px;
        }

        .wallet_myacc h2 {
            font-size: 20px;
        }

        .wallet_myacc p {
            font-size: 15px;
        }

        .wallet_myacc .btn-light {
            font-size: 14px;
            padding: 6px 10px;
            width: 100%; /* full width on mobile */
            text-align: center;
        }
    }

    /* Extra small screens */
    @media (max-width: 480px) {
        .accordion-button {
            font-size: 13px !important;
            padding: 10px 12px !important;
        }

        .accordion-button .bg-secondary {
            font-size: 12px !important;
            padding: 3px 6px !important;
        }

        .accordion-body table {
            font-size: 12px !important;
        }

        .accordion-body th,
        .accordion-body td {
            padding: 5px 6px !important;
        }
    }


          .notification-danger {
    border-left: 4px solid #dc3545;
}

/* Header */
.bg-danger-subtle {
    background-color: #fdecec;
}

/* Scroll panel */
.notification-panel {
    max-height: 320px;
    overflow-y: auto;
}

/* Item row */
.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 16px;
    border-bottom: 1px solid #f1dcdc;
    gap: 16px;
}

/* Danger background */
.notification-item.danger {
    background-color: #fff5f5;
}

.notification-item .title {
    font-weight: 600;
    font-size: 14px;
    color: #dc3545;
}

.notification-item .desc {
    font-size: 13px;
    color: #842029;
    line-height: 1.4;
}

/* Buttons */
.notification-item .buttons .btn {
    white-space: nowrap;
}
 
