@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --------------------------------------------------
service provider css start
-----------------------------------------------------*/

.custom-scroll-service {
    height: 487px;
    overflow-y: auto
}

#style-15::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
    background-color: #2563eb;
    border-radius: 10px;
    cursor: pointer;
}

#style-15::-webkit-scrollbar {
    /* height: 10px; */
    width: 8px;
    background-color: #9eb6ea98;
    border-radius: 10px;
}

#style-15::-webkit-scrollbar-thumb { 
    border-radius: 10px;
    background-color: #9eb6ea98;
    cursor: pointer;
}


.cancel-btn,
.request-btn {
    border: none;
    border-radius: 40px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 170px;
}

.stiky_position {
    margin-bottom: 26px;
    position: sticky;
    margin-top: 0px;
    top: -1px;
    z-index: 1;
    background: white;
    padding: 14px 10px;
}

/* Cancel Button */
.cancel-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5253);
    color: #fff;
    box-shadow: 0 8px 20px rgba(238, 82, 83, 0.25);
}

.cancel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(238, 82, 83, 0.35);
}

/* Request Button */
.request-btn {
    background: linear-gradient(135deg, #4facfe, #00c6fb);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 198, 251, 0.25);
}

.request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 198, 251, 0.35);
}

/* Optional Active Effect */
.cancel-btn:active,
.request-btn:active {
    transform: scale(0.98);
}

#nestedContactModal input[type="date"],
#nestedContactModal input[type="time"] {
    appearance: auto !important;
    -webkit-appearance: auto !important;
    background: #fff !important;
    position: relative;
    z-index: 99999;
    cursor: pointer;
    min-height: 52px;
}

#nestedContactModal .modal-content,
#nestedContactModal .modal-body {
    overflow: visible !important;
}

.provider-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: 0.35s ease;
    height: 100%;
    cursor: pointer;
    position: relative;
    box-shadow: 0 6px 25px rgba(15, 23, 42, 0.04);
}

.provider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.10);
}

.provider-top {
    padding: 18px 28px;
    background: linear-gradient(135deg, #ebf2fa, #f7f6fc);
    position: relative;
}

.provider-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    /* background: #fff; */
    color: #16a34a;
    border-radius: 50px;
    /* padding: 8px 14px; */
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.provider-header {
    display: flex;
    gap: 18px;
    align-items: center;
}

.provider-avatar {
    width: 55px;
    height: 55px;
    border-radius: 9px;
    /* background: linear-gradient(135deg, #2563eb, #7c3aed); */
    color: #2563eb;
    font-size: 23px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px 0 #3a63eb24;
}


.provider-name {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    cursor: pointer;
    position: relative;
}

.provider-name span{
    display: none;
}

.provider-name:hover span{
    font-size: 12px;
    display: flex;
    position: absolute;
    top: 3px;
    right: -28px;
    color: green;
    transition: .2s linear;
}



.validation-icon{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000033;
    cursor: pointer;
    position: relative;
}

.validation-icon .pending{
    width: 15px;
    height: 15px;
    background-color: red;
    position: absolute;
    top: -2px;
    right: 0px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.validation-icon .success{
    width: 15px;
    height: 15px;
    background-color: green;
    position: absolute;
    top: -2px;
    right: 0px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-icon{
    font-size: 10px !important; 
}


.pending-circle i{
    color: white;
    font-size: 15px;
}


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

/* Dynamic Progress Ring */
.progress-ring{
    --size: 140px;
    --progress: 65; /* Dynamic Value */
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    padding: 6px;
    background:
        conic-gradient(
            #26C49E calc(var(--progress) * 1%),
            #e9ecef 0
        );
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    transition:0.4s ease;
}



/* Percentage Text */
.profile-percentage{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
    color:#fff;
    background:rgba(0,0,0,0.35);
    border-radius:50%;
    opacity:0;
    transition:0.3s ease;
}

/* Show Percentage on Hover */
.provider-avatar1:hover .profile-percentage{
    opacity:1;
}

/* Edit Button */
.avatar-edit{
    position:absolute;
    bottom:5px;
    right:5px;
    width:34px;
    height:34px;
    border-radius:50%;
    background:#26C49E;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    border:2px solid #fff;
    z-index:2;
    transition:0.3s;
}

.avatar-edit:hover{
    transform:scale(1.1);
}

/* sdshkdskds */


.provider-rating {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.provider-distance {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
}

.provider-body {
    padding: 12px 26px;
}

.service-tags {
    display: flex;
    white-space: nowrap;
    /* flex-wrap: wrap; */
    scrollbar-width: none;
    overflow-y: scroll;
    gap: 10px;
    margin-bottom: 18px;
}

.service-tag {
    padding: 5px 16px;
    border-radius: 14px;
    background: #e4f2ff;
    border: 1px solid #c1d5ee;
    font-size: 13px;
    font-weight: 500;
    color: #3478d9;
}

.provider-description {
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
}

.provider-footer {
    display: flex;
    justify-content: center;
    padding: 12px 26px;
    border-top: 1px solid #f1f5f9;
}

.details-btn {
    padding: 12px 24px;

    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.18);
}

.details-btn:hover {
    transform: translateY(-2px);
}

.empty-box {
    background: #fff;
    border-radius: 30px;
    padding: 80px 30px;
    text-align: center;
    border: 1px solid #edf2f7;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.empty-box h4 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.empty-box p {
    color: #64748b;
    margin-bottom: 0;
}


.pagination {
    gap: 10px;
}

.pagination .page-link {
    border: none;
    min-width: 48px;
    height: 48px;
    border-radius: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2563eb;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
}

.filter-btn-header {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.filter-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.apply-filter-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
}

.apply-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.clear-filter-btn {
    background: #f1f5f9;
    color: #64748b;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
}

.clear-filter-btn:hover {
    background: #e2e8f0;
    color: #334155;
    transform: translateY(-1px);
}

.rating-dropdown-menu {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    padding: 12px;
    min-width: 193px;
}

.rating-option-item {
    border-radius: 12px;
    padding: 10px 16px;
    transition: 0.2s;
    cursor: pointer;
}

.rating-option-item:hover {
    background: #f3f4f6;
}

.rating-option-item.active {
    background: linear-gradient(135deg, #eff6ff, #f5f3ff);
    color: #2563eb;
    font-weight: 600;
}

.active-filter-badge {
    background: #10b981;
    color: white;
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 10px;
}

.filter-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media(max-width: 768px) {

    .provider-top {
        padding: 22px;
    }

    .provider-body {
        padding: 22px;
    }

    .provider-footer {
        padding: 20px 22px;
    }

    .provider-avatar {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }

    .provider-name {
        font-size: 20px;
    }

    .result-heading {
        font-size: 18px;
    }

    .filter-btn-header,
    .apply-filter-btn,
    .clear-filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .filter-actions {
        gap: 8px;
        flex-wrap: wrap;
    }
}

/* -------------------------------------------
provider  css file
-----------------------------------------------*/

.service-detail {
    background: #f7f9fc;
}

/* IMAGE */
.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 18px;
}

/* HEADER */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 15px;
}

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

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0284c7;
}

.meta {
    font-size: 13px;
    color: #6b7280;
}

.meta i {
    color: #f59e0b;
}

.price-box h4 {
    margin: 0;
    color: #16a34a;
}

/* CARD */
.card-box {
    background: #fff;
    margin-top: 15px;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.card-box h5 {
    font-size: 15px;
    margin-bottom: 10px;
}

/* FEATURES */
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-list span {
    background: #eef2ff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #4338ca;
}

/* PROCESS */
.process .step {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.process i {
    color: #2563eb;
    margin-top: 4px;
}

/* REVIEW */
.review {
    background: #f9fafb;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* BOOKING */
.booking-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.booking-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #16a34a;
}

.booking-card ul {
    padding: 0;
    list-style: none;
    font-size: 13px;
    margin-top: 10px;
}

.booking-card ul li {
    margin-bottom: 8px;
}

.book-btn {
    width: 100%;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    margin-top: 10px;
    transition: all 0.2s;
}

.book-btn:hover {
    background: #1d4ed8;
}

/* Service List Item */
.service-list-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}

.service-list-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    font-size: 16px;
}

.service-price {
    color: #16a34a;
    font-weight: 600;
}

.visiting-charge {
    font-size: 12px;
    color: #6b7280;
}


/* -----------------------------------
program_detail css file
-------------------------------------*/

.enquiry-modal{
    border-radius:20px;
    border:none;
    overflow:hidden;
}

.custom-input{
    border-radius:12px;
    padding:12px 15px;
    border:1px solid #dfe3ea;
    box-shadow:none !important;
}

.custom-input:focus{
    border-color:#0d6efd;
}

.submit-enquiry-btn{
    background:#0d6efd;
    color:#fff;
    border:none;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.submit-enquiry-btn:hover{
    background:#0b5ed7;
    color:#fff;
}
.training-detail-page{
    background:#f8fbff;
}

.training-banner-card{
    position:relative;
    background:linear-gradient(135deg, #977235, #6610f2);
    border-radius:20px;
    padding:24px;
    overflow:hidden;
    color:#fff;
}

.training-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.12);
}

.training-content{
    position:relative;
    z-index:2;
}

.training-badge{
    background:#ffffff3d;
    color:#ffffff;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    display:inline-block;
    margin-bottom:20px;
}

.training-title{
    font-size:24px;
    font-weight:800;
    margin-bottom:20px;
    line-height:1.2;
}

.training-meta{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
}

.training-meta span{
    font-size:15px;
    font-weight:500;
}

.detail-card, .sidebar-card{
    /* background:#fff; */
    /* border:1px solid #dfe8f5; */
    border-radius:20px;
    overflow:hidden;
}

.detail-card-header{
    padding:14px 20px;
    /* border-bottom:1px solid #edf2f7; */
    background:#e0ecfc;
}

.detail-card-header h4{
    margin:0;
    font-size:18px;
    font-weight:700;
}

.detail-card-body,
.sidebar-body{
    padding:28px;
}

.program-description{
    line-height:2;
    color:#5f6368;
    font-size:16px;
}

.skills-wrapper{
    gap:4px;
    scrollbar-color: #0d6efd #e9ecef;
}

.skill-chip{
    background:#eef4ff;
    color:#0d6efd;
    padding:12px 18px;
    border-radius:50px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
}

.skill-chip:hover{
    background:#0d6efd;
    color:#fff;
}

.certificate-card{
    border:1px solid #d9e4f2;
    border-radius:20px;
    padding:25px;
    height:100%;
    background:#fff;
    transition:0.3s ease;
}

.certificate-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(13,110,253,0.12);
}

.certificate-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:linear-gradient(135deg,#0d6efd,#6610f2);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

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

.certificate-list li{
    margin-bottom:16px;
    color:#555;
    line-height:1.7;
}
.train-icon{
    background:linear-gradient(135deg, #00000020, #00000020);
    border-radius:50%;
    width:160px;
    height:160px;
    margin: auto;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}
.training-image{
   
   max-width: 120px;
   max-height: 120px;
}

.enroll-btn{
    background:linear-gradient(135deg,#0d6efd,#6610f2);
    color:#fff;
    padding:14px;
    border-radius:14px;
    font-weight:600;
    border:none;
}

.enroll-btn:hover{
    color:#fff;
    opacity:0.95;
}

/* Available Batches — modern cards */
.pd-batches-section {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.pd-batches-section__header {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    border-bottom: 1px solid #e2e8f0;
    padding: 18px 22px !important;
}

.pd-batches-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(9, 157, 121, 0.12);
    color: #078066;
    font-size: 1rem;
    flex-shrink: 0;
}

.pd-batches-section__subtitle {
    margin-top: 2px;
    font-size: 13px;
    color: #64748b;
}

.pd-batches-section__body {
    padding: 20px 22px 24px !important;
    background: #f8fafc;
}

.pd-batches-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pd-batch-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pd-batch-card:hover {
    border-color: rgba(9, 157, 121, 0.35);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.pd-batch-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.pd-batch-card__location {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
}

.pd-batch-card__pin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(0, 56, 138, 0.08);
    color: #00388a;
    flex-shrink: 0;
    margin-top: 2px;
}

.pd-batch-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
}

.pd-batch-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.pd-batch-card__status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.pd-batch-card__status.is-ongoing {
    background: rgba(9, 157, 121, 0.12);
    color: #078066;
}

.pd-batch-card__status.is-ongoing .pd-batch-card__status-dot {
    background: #099d79;
}

.pd-batch-card__status.is-upcoming {
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
}

.pd-batch-card__status.is-upcoming .pd-batch-card__status-dot {
    background: #f59e0b;
}

.pd-batch-card__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.pd-batch-card__meta li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.45;
}

.pd-batch-card__meta i {
    width: 16px;
    margin-top: 2px;
    color: #099d79;
    flex-shrink: 0;
}

.pd-batch-card__meta strong {
    display: block;
    color: #0f172a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
}

.pd-batch-card__address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px dashed #e2e8f0;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.pd-batch-card__address i {
    color: #099d79;
    margin-top: 2px;
    flex-shrink: 0;
}

.pd-batch-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border: 0;
    border-radius: 12px;
    background: #099d79;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pd-batch-card__cta:hover {
    background: #078066;
    color: #fff;
    transform: translateY(-1px);
}

.pd-batch-card__cta i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.pd-batch-card__cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 767.98px) {
    .pd-batches-grid {
        grid-template-columns: 1fr;
    }

    .pd-batches-section__body {
        padding: 16px !important;
    }
}

.contact-btn{
    border:1px solid #0d6efd;
    color:#0d6efd;
    padding:14px;
    border-radius:14px;
    font-weight:600;
    background:#fff;
}

.contact-btn:hover{
    background:#0d6efd;
    color:#fff;
}

.feature-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 0 6px;
    border-bottom:1px solid #edf2f7;
    font-size:15px;
}

.feature-item:last-child{
    border-bottom:none;
}

.sidebar-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:24px;
}

.institute-box h5{
    font-weight:700;
    margin-bottom:18px;
    font-size: 16px;
    color:#111827;
}

.institute-box p{
    color:#5f6368;
    margin-bottom:15px;
    line-height:1.7;
}

/*------------------------------------------
 training_edit css file
-------------------------------------------- */

.batch-item,
.certification-item {
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
}

.btn-add-more {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.btn-add-more:hover {
    background-color: #218838;
}

.btn-remove {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.btn-remove:hover {
    background-color: #c82333;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.institute-input-container {
    position: relative;
}

.geocoding-status {
    font-size: 11px;
    margin-top: 3px;
    display: block;
}

.geocoding-status.loading {
    color: #ff9800;
}

.geocoding-status.success {
    color: #4caf50;
}

.geocoding-status.error {
    color: #dc3545;
}

.latlong-row {
    margin-top: 10px;
    padding-top: 5px;
    border-top: 1px dashed #dee2e6;
}

/* Style for date input with past date error */
input[type="date"].is-invalid {
    border-color: #dc3545 !important;
}

/* Date picker styling */
input[type="date"] {
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}
/* 
.stepper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.step {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    cursor: pointer;
}

.step.active {
    background: #28a745;
    color: white;
} */

/*------------------------------------------
 traingg details css file 
 ------------------------------------------- */
.filter-wrapper{
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Search Box */
.traing-search-box{
    width: 520px;
    max-width: 100%;
}

.traing-search-box input{
    /* width: 100%;
    height: 52px;
    border: 1px solid #dfe3ea;
    border-radius: 14px;
    padding: 0 50px 0 18px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    background: #f8fafc; */
}
/* 
.traing-search-box input:focus{
    border-color: #0d6efd;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(13,110,253,0.1);
} */

.search-btn{
    right: 0;
    border: none;
    background: transparent;
    color: #6c757d;
    font-size: 16px;
}


/* Dropdown Design */
.custom-select {
    min-width: 170px;
    border-radius: 10px;
    border: 1px solid #d9d2d2;
    padding: 11px 15px;
    background: #f8fafc;
    font-size: 14px;
    color: #333;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

.customselct-form{
    border: none !important;
    padding: 0 15px;
}


.custom-select:focus{
    border-color: #0d6efd;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(13,110,253,0.1);
}

/* Active Button */
.active-btn{
    height: 52px;
    padding: 0 20px;
    border: none;
    border-radius: 14px;
    background: rgba(0,145,60,0.12);
    color: #00913C;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.active-btn span{
    width: 10px;
    height: 10px;
    background: #00c853;
    border-radius: 50%;
}

/* Responsive */
@media(max-width:991px){

    .filter-wrapper{
        flex-direction: column;
        align-items: stretch !important;
    }

    .filter-right{
        width: 100%;
    }

    .custom-select{
        width: 100%;
    }

    .active-btn{
        width: 100%;
        justify-content: center;
    }
}


/*------------------------------------
 training create css file 
 -------------------------------------- */
.batch-item,
.certification-item {
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
}

.btn-add-more {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.btn-add-more:hover {
    background-color: #218838;
}

.btn-remove {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.btn-remove:hover {
    background-color: #c82333;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.institute-input-container {
    position: relative;
}

.geocoding-status {
    font-size: 11px;
    margin-top: 3px;
    display: block;
}

.geocoding-status.loading {
    color: #ff9800;
}

.geocoding-status.success {
    color: #4caf50;
}

.geocoding-status.error {
    color: #dc3545;
}

.latlong-row {
    margin-top: 10px;
    padding-top: 5px;
    border-top: 1px dashed #dee2e6;
}

/* Style for date input with past date error */
input[type="date"].is-invalid {
    border-color: #dc3545 !important;
}

/* Date picker styling */
input[type="date"] {
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.stepper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.step {
    padding: 8px 15px;
    /* border: 1px solid #ddd; */
    background: #f5f5f5;
    cursor: pointer;
}

.step.active {
    /* background: #28a745; */
    color: white;
}
.plain-textarea{
    width: 100%;
    min-height: 120px;
    border: 1px solid #dbe4ff;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    color: #1e293b;
    background: #fff;
    resize: vertical;
    transition: all 0.3s ease;
    outline: none;
    line-height: 1.5;
}

.plain-textarea:focus{
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99,102,241,0.12);
}

.plain-textarea::placeholder{
    color: #94a3b8;
    font-size: 14px;
}

/* remove weird textarea sizing */
.institute-input-container textarea{
    height: auto !important;
}

/*-----------------------------------------
 details blade css file
 ------------------------------------------ */

.program-card{
    background: #f8faff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #e4e9ff;
    box-shadow: 0 10px 40px rgba(10,30,80,0.06);
}

.program-header{
    background: linear-gradient(135deg,#111827,#1e293b);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.program-header::before{
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -80px;
    right: -60px;
}

.program-title{
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.program-desc{
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.8;
    max-width: 850px;
}

.program-image{
    width: 95px;
    height: 95px;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 12px;
}

.nsqf-badge{
    position: absolute;
    top: 22px;
    right: 22px;
    background: #06b6d4;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(6,182,212,0.3);
}

.skill-tag{
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.modern-batch-card{
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    transition: 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modern-batch-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right,#111827,#2563eb);
}

.modern-batch-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.batch-title{
    font-size:18px;
    font-weight:600;
    font-family:"Space Grotesk", sans-serif;
    color: #111827;
}

.batch-subtitle{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #6b7280;
    font-size: 14px;
    margin-top: 8px;
}

.batch-subtitle i{
    color: #2563eb;
}

.dot{
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9ca3af;
}


.status-badge{
    padding: 7px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
}

.status-badge.active{
    background: rgba(16,185,129,0.12);
    color: #10b981;
}

.status-badge.disable{
    background: rgba(239,68,68,0.12);
    color: #ef4444;
}

.batch-description {
    margin: 10px 0;
    background: #fcfdff;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    color: #374151;
    border-left: 4px solid #2563eb !important;
    border: 1px solid #2563eb;
}

.batch-description i{
    color: #2563eb;
    margin-right: 8px;
}

.batch-stats{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}
.stat-item {
    flex: 1;
    text-align: center;
    background: #f9fafb;
    border-radius: 10px;
    padding: 10px 10px;
    border: 1px solid #d0d5e7;
}

.stat-item i{
    font-size: 20px;
    margin-bottom: 10px;
    color: #2563eb;
}

.stat-label{
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
}

.stat-item h5 {
    font-size: 14px;
    font-family: 'Space Grotesk';
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.date-container{
    background: #f9fafb;
    border-radius: 16px;
    padding: 14px 18px;
    margin-bottom: 24px;
    border: 1px solid #eef2ff;
}

.date-container p{
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.date-container span{
    color: #111827;
    font-weight: 700;
}

.batch-btns{
    display: flex;
    justify-content: space-between;
}

.role-toggle__btn,
.btn-enroll{
    border: none;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    text-align: center;
    font-size: 14px;
}

/* .role-toggle__btn{
    background: #111827;
    color: #fff;
} */

.role-toggle__btn:hover{
    /* background: #000; */
    transform: translateY(-2px);
}

.btn-enroll{
    background: #2563eb;
    color: #fff;
}

.btn-enroll:hover{
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-2px);
}

.role-toggle__btn i,
.btn-enroll i{
    margin-right: 8px;
}

@media(max-width:768px){

    .program-header{
        text-align: center;
    }

    .program-title{
        font-size: 26px;
    }

    .batch-btns{
        flex-direction: column;
    }

    .batch-stats{
        flex-direction: column;
    }

    .nsqf-badge{
        position: static;
        margin-top: 18px;
        display: inline-block;
    }
}
.program-header-box{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 22px;
    margin-bottom: 30px;
    /* background: linear-gradient(135deg, #5bd6be 0%, #42bda4 45%, #07afbc 100%); */
        background: linear-gradient(135deg, #6d5bd6 0%, #4642bd 45%, #07afbc 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 15px 45px rgba(37,99,235,0.18),
        inset 0 1px 0 rgba(255,255,255,0.06);
    color: #fff;
}

/* glowing circles */
.program-header-box::before{
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    top: -120px;
    right: -70px;
}

.program-header-box::after{
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    bottom: -90px;
    left: -50px;
}

/* title */
.program-main-title {
    font-size: 29px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
}

.program-main-title i{
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    backdrop-filter: blur(10px);
}

/* description */
.program-desc {
    font-size: 12px;
    line-height: 1.9;
    color: rgba(255,255,255,0.82);
    max-width: 850px;
}

/* badge */
.program-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(10px);
}



    .role-toggle{
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 4px;
    background: #ffffff;
    border-radius: 12px;
}

.role-toggle__btn{
    border: none;
    border: 1px solid;
    background: transparent;
    padding: 10px 22px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.role-toggle__btn--active{
    background: #b249f8;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.role-toggle__btn-outline{
    border: none;
    border: 1px solid #b249f8;
    background: transparent;
    color: #b249f8;
    padding: 10px 22px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.role-toggle__btn-outline:hover{
    background: #b249f8;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.program-badge i{
    color: #facc15;
}

/* image */
.program-side-image{
    width: 120px;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.25));
}

/* .status-wrapper{
    display: flex;
    gap: 10px;
} */

/* responsive */
@media(max-width:768px){

    .program-header-box{
        padding: 24px;
    }

    .program-main-title{
        font-size: 26px;
    }

    .program-main-title i{
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .program-side-image{
        width: 85px;
        margin-top: 20px;
    }
}
.info-card{
    background: #0f172a;
    color: #fff;
    padding: 18px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px 0 #d1d1d130;
    transition: 0.3s;
}

.info-card:hover{
    transform: translateY(-5px);
}

.info-card i{
    font-size: 20px;
    margin-bottom: 8px;
    color: #60a5fa;
}
.info-card h6{
    font-size: 13px;
    opacity: 0.8;
    color: black;
}

.info-card p{
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: black;
}

.detail-box{
    background: #ffffff;
    padding: 20px;
    border-radius: 18px;
    border-left: 5px solid #2563eb;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.detail-box h5{
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box{ border-left-color: #f59e0b; }
.requirement-box{ border-left-color: #ef4444; }
.skills-box{ border-left-color: #10b981; }

.skills-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-pill{
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 12px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
}
.batch-header-box{
    background: linear-gradient(135deg,#0d6efd,#4f8cff);
    border-radius: 18px;
    padding: 22px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13,110,253,0.15);
}

.batch-header-box::before{
    content:'';
    position:absolute;
    right:-40px;
    top:-40px;
    width:140px;
    height:140px;
    background: rgba(255,255,255,0.08);
    border-radius:50%;
}

.batch-header-icon{
    width:60px;
    height:60px;
    border-radius:16px;
    background: rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    backdrop-filter: blur(10px);
}

.batch-header-title{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin:0;
}

.batch-header-subtitle{
    color:rgba(255,255,255,0.85);
    font-size:14px;
}

.batch-count-box{
    background:#fff;
    border-radius:14px;
    padding:12px 20px;
    text-align:center;
    min-width:120px;
}

.count-number{
    display:block;
    font-size:28px;
    font-weight:700;
    color:#0d6efd;
    line-height:1;
}

.count-text{
    font-size:13px;
    color:#666;
}

/* ---------------------------------
dashboard css
------------------------------- */

.dashboard-program-card{
    background:#ffffff;
    border-radius:20px;
    padding:20px;
    border:1px solid #edf1f7;
    box-shadow:0 6px 18px rgba(15,23,42,0.04);
}

/* HEADER */
.dashboard-heading-area{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    flex-wrap:wrap;
    gap:12px;
}

.dashboard-main-title {
    font-size: 20px;
    font-family: 'Inter';
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.dashboard-main-title i{
    color:#6366f1;
    margin-right:8px;
}

.dashboard-subtitle{
    color:#64748b;
    font-size:13px;
    margin:0;
}

.program-count-badge{
    background:#eef2ff;
    color:#4338ca;
    padding:8px 15px;
    border-radius:30px;
    font-weight:600;
    font-size:13px;
    border:1px solid #dbe4ff;
}

/* PROGRAM CARD */
.modern-program-box{
    background:#fff;
    border-radius:18px;
    padding:18px;
    border:1px solid #dbe4ff;
    transition:0.3s ease;
    height:100%;
    position:relative;
    overflow:hidden;
}

.modern-program-box:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 22px rgba(99,102,241,0.08);
    border-color:#afbeeb;
    cursor: pointer;
}

/* .modern-program-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(to right,#6366f1,#8b5cf6);
} */

/* TOP SECTION */
.program-top-section{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:16px;
}

.program-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    color: #099d79;
    background: #099d7920;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.program-title{
    font-size:16px;
    font-weight:600;
    color:#55657e;
    font-family: "Space Grotesk", sans-serif;
    margin-bottom:5px;
    line-height:1.4;
}

.program-meta{
    display:flex;
    flex-wrap:wrap;
    font-family: "Space Grotesk", sans-serif;
    gap:10px;
    color:#64748b;
    font-size:12px;
}

.program-meta i{
    color:#099d79;
    margin-right:4px;
}

/* STATUS */
.status-pill{
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:6px 12px;
    border-radius:30px;
    font-size:11px;
    font-weight:600;
}

.status-pill.active{
    background:#dcfce7;
    color:#15803d;
}

.status-pill.draft{
    background:#fef3c7;
    color:#b45309;
}

/* STATS */
.program-stats-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-bottom:16px;
}

.single-stat-card {
    background: #f8fafc;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 8px;
    text-align: center;
    border: 1px solid #d2dce9;
}

.single-stat-card i{
    font-size:16px;
    color:#099d79;
    margin-bottom:6px;
}

.single-stat-card h5 {
    font-size: 20px;
    font-family: 'Space Grotesk';
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.single-stat-card p {
    margin: 0;
    color: #7a889b;
    font-size: 10px;
}

/* SKILLS */
.skills-wrapper{
    margin-bottom:16px;
}

.skill-chip {
    background: #f1f5ff;
    color: #4f46e5;
    border-radius: 20px;
    font-family: 'Space Grotesk';
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid #dbe4ff;
}

.skill-chip i{
    margin-right:4px;
    font-size:10px;
}

/* FOOTER */
.program-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.program-footer-left{
    font-size:12px;
    color:#64748b;
}

.program-footer-left i{
    color:#6366f1;
    margin-right:4px;
}

.details-btn{
    background:#6366f1;
    color:#fff;
    text-decoration:none;
    padding:9px 14px;
    border-radius:10px;
    font-weight:600;
    transition:0.3s ease;
    font-size:13px;
}

.details-btn:hover{
    background:#4f46e5;
    color:#fff;
    transform:translateY(-2px);
}

.details-btn i{
    margin-left:5px;
}

/* MOBILE */
@media(max-width:768px){

    .dashboard-program-card{
        padding:16px;
    }

    .program-stats-wrapper{
        grid-template-columns:repeat(1,1fr);
    }

    .program-footer{
        flex-direction:column;
        align-items:flex-start;
    }

    .dashboard-main-title{
        font-size:20px;
    }

    .modern-program-box{
        padding:16px;
    }
}

/* CARD */
.sidebar-card-box{
    background:#fff;
    border-radius:18px;
    padding:18px;
    box-shadow:0 8px 25px rgba(99,102,241,0.08);
    border:1px solid #eef2ff;
}

/* TITLE */
.sidebar-title{
    font-size:14px;
    font-weight:700;
    margin-bottom:12px;
    color:#111827;
    display:flex;
    align-items:center;
    gap:8px;
}

.sidebar-title i{
    color:#6366f1;
}

/* LINKS */
.sidebar-link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 10px;
    border-radius:12px;
    text-decoration:none;
    color:#374151;
    font-size:14px;
    transition:0.25s;
    margin-bottom:8px;
}

.sidebar-link i:first-child{
    margin-right:8px;
    color:#B249F8;
}

.sidebar-link span i{
    color:#9ca3af;
}

.sidebar-link:hover{
    background:rgba(99,102,241,0.08);
    transform:translateX(4px);
    color:#6366f1;
}

.sidebar-link.active {
    color: #fff;
    font-weight: 600;
    border-left: 4px solid #B249F8;
    background: #B249F8;
}

.sidebar-link.active i{
     color: #fff;
}

/* BUTTONS */
.sidebar-btn{
    width:100%;
    padding:12px;
    border-radius:12px;
    border:none;
    font-size:14px;
    font-weight:600;
    margin-top:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    cursor:pointer;
    transition:0.25s;
}

/* OUTLINE BUTTON */
.sidebar-btn.outline{
    background:#fff;
    border:1px solid rgba(99,102,241,0.3);
    color:#6366f1;
}

.sidebar-btn.outline:hover{
    background:rgba(99,102,241,0.08);
}

/* PRIMARY BUTTON */
.sidebar-btn.primary{
    background:linear-gradient(135deg,#6366f1,#4f46e5);
    color:#fff;
}

.sidebar-btn.primary:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(99,102,241,0.25);
}

.all-training-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(139,92,246,0.10);
    color: #7c3aed;
    font-size: 13px;
    font-weight: 600;
}


/*----------------------------------
 expert detail css start
 ----------------------------------- */
.profile-banner{
    background:
        linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600');

    background-size:cover;
    background-position:center;

    padding:80px 0 120px;
    position:relative;
}

/* Main Card */

.trainer-main-card{
    background:rgba(255,255,255,0.96);
    border-radius:26px;
    padding:30px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.12);
}

/* Left Info */

.trainer-main-info{
    display:flex;
    gap:24px;
    align-items:center;
}

.trainer-avatar{
    min-width:120px;
    width:120px;
    height:120px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:36px;
    font-weight:700;

    color:#10b981;
    border:4px solid #10b981;

    background:rgba(16,185,129,0.08);
}

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

.trainer-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:12px;
}

.trainer-meta span{
    font-size:14px;
    color:#64748b;
    font-weight:600;
}

.trainer-meta i{
    color:#10b981;
    margin-right:5px;
}

.trainer-price{
    font-size:34px;
    font-weight:800;
    color:#111827;
    margin-bottom:10px;
}

.trainer-price small{
    font-size:15px;
    color:#64748b;
}

.trainer-content p{
    margin:0;
    color:#6b7280;
    line-height:1.8;
}

/* Actions */

.trainer-actions{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.action-btn{
    height:50px;
    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    text-decoration:none;

    background:#f1f5f9;
    color:#111827;

    font-weight:700;
    transition:.3s ease;
}

.action-btn:hover{
    background:#10b981;
    color:#fff;
}

.whatsapp-btn{
    background:#dcfce7;
    color:#16a34a;
}

/* Stats */

.stats-wrapper{
    margin-top:-55px;
    position:relative;
    z-index:5;

    background:#fff;
    border-radius:22px;
    padding:30px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.stat-box{
    text-align:center;
}

.stat-box h3{
    font-size:32px;
    font-weight:800;
    margin-bottom:8px;
}

.stat-box p{
    margin:0;
    color:#64748b;
    font-size:14px;
}

/* Main Content */

.content-card{
    background:#fff;
    border-radius:24px;
    padding:28px;
    margin-top:30px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);
}

.section-title{
    margin-bottom:24px;
}

.section-title h3{
    font-size:26px;
    font-weight:800;
}

/* Profile Grid */

.profile-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.info-card{
    padding:20px;
    border-radius:18px;
    background:#ffff;
    border:1px solid rgba(0,0,0,0.05);
}

.info-card span{
    display:block;
    color:#64748b;
    font-size:14px;
    margin-bottom:8px;
}

.info-card h5{
    margin:0;
    font-size:18px;
    font-weight:700;
    color: #464343;
}

.tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.tags span{
    background:#dcfce7;
    color:#15803d;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/* Videos */

.video-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
}

.video-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    transition:.4s ease;
}

.video-card:hover img{
    transform:scale(1.08);
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    width:58px;
    height:58px;
    border-radius:50%;

    background:rgba(255,0,0,.9);
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;
}

/* Reviews */

.review-item{
    padding:18px;
    border-radius:18px;
    background:#f8fafc;
    margin-bottom:16px;
}

.review-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.review-top h6{
    margin:0;
    font-weight:700;
}

.stars{
    color:#f59e0b;
    font-size:13px;
}

.review-item p{
    margin:0;
    color:#64748b;
    line-height:1.7;
    font-size:14px;
}

.load-btn{
    margin-top:20px;
    width:100%;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    text-decoration:none;

    background:linear-gradient(135deg,#10b981,#14b8a6);
    color:#fff;

    font-weight:700;
}
.details-btn1 {
    /* background: linear-gradient(135deg, #2563eb, #7c3aed); */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.provider-card:hover .details-btn1{
    background: linear-gradient(135deg, #3aa8ed, #2563eb);
    color: #fff;
}
/* Responsive */

@media(max-width:991px){

    .trainer-main-info{
        flex-direction:column;
        text-align:center;
    }

    .trainer-actions{
        margin-top:30px;
    }

    .stats-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .profile-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:767px){

    .trainer-main-card{
        padding:20px;
    }

    .trainer-content h2{
        font-size:28px;
    }

    .trainer-price{
        font-size:28px;
    }

    .stats-wrapper{
        grid-template-columns:1fr;
    }

    .section-title h3{
        font-size:22px;
    }
}



/* =========================
   Modern Job Card
========================= */

.modern-job-card{
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f8fbff);
    border: 1px solid #dbe4f0;
    border-radius: 24px;
    padding: 24px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.modern-job-card:hover{
    transform: translateY(-5px);
    border-color: #b8c7db;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

/* Decorative Shapes */

.modern-job-card::before{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.06);
    top: -90px;
    right: -70px;
}

.modern-job-card::after{
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: rgba(16, 185, 129, 0.06);
    bottom: -30px;
    left: -20px;
    transform: rotate(35deg);
}

/* Inner Layout */

.modern-job-card__content{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Left */

.modern-job-card__title{
    font-size: 17px;
    font-weight: 600;
    font-family: "Space Grotesk", sans-serif;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.4;
}

.modern-job-card__applications{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: #edf4ff;
    color: #315ea8;
    font-size: 14px;
    font-weight: 600;
}

/* Right */

.modern-job-card__right{
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.modern-job-card__stats{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Status */

.modern-job-card__status{
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    border: 1px solid transparent;
}

.modern-job-card__status--active{
    background: #e9f9f1;
    color: #15803d;
    border-color: #b7ebca;
}

.modern-job-card__status--closed{
    background: #fff4e8;
    color: #c46b00;
    border-color: #ffd8a8;
}

/* Views */

.modern-job-card__views{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f5f7fb;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
}

/* Edit Button */

.modern-job-card__edit-btn{
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #B249F8;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.18);
}

.modern-job-card__edit-btn:hover{
    transform: translateY(-3px);
    background: #B249F8;
    color: #fff;
}

/* Responsive */

@media (max-width: 768px){

    .modern-job-card{
        padding: 20px;
    }

    .modern-job-card__content{
        flex-direction: column;
        align-items: flex-start;
    }

    .modern-job-card__right{
        width: 100%;
        justify-content: space-between;
    }

    .modern-job-card__title{
        font-size: 15px;
    }

    .modern-job-card__applications{
        padding: 7px 14px;
        font-size: 10px;
    }

    .modern-job-card__status{
        padding: 7px 14px;
        font-size: 10px;
    }

    .modern-job-card__views{
        padding: 7px 14px;
        font-size: 10px;
    }

    .modern-job-card__edit-btn{
        width: 35px;
        height: 35px;
    }
    
    .modern-job-card__edit-btn i{
        font-size: 12px;
    }
}



/* =========================================
   Unique Upcoming Batch UI
========================================= */

.uxbatches-wrapper{
    position: relative;
    background: linear-gradient(180deg, #ffffff, #f7f8fc);
    border-radius: 28px;
    padding: 30px;
    border: 1px solid #e8ebf2;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

/* Decorative Shapes */

.uxbatches-wrapper::before{
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(109, 40, 217, 0.04);
    top: -120px;
    right: -80px;
}

.uxbatches-wrapper::after{
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 28px;
    background: rgba(16, 185, 129, 0.05);
    bottom: -40px;
    left: -30px;
    transform: rotate(25deg);
}

/* Header */

.uxbatches-header{
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.uxbatches-title{
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Batch Card */

.uxbatch-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border: 1px solid #edf0f5;
    border-radius: 11px;
    padding: 10px;
    margin-bottom: 8px;
    transition: all 0.35s ease;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

/* Hover */

.uxbatch-card:hover{
    transform: translateY(-5px);
    border-color: #d9deea;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* Mini Shape */

.uxbatch-card::before{
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.04);
    top: -70px;
    right: -60px;
}

.uxbatch-card__date{
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

.uxbatch-card__date i{
    font-size: 11px;
}

.batch-content h6{
    font-size: 16px;
    font-family: "Space Grotesk", sans-serif;
}
.custom_dropdown_li a{
    background: white;
    padding-left: 0px;
}

.custom_dropdown_li a:hover{
    background-color: white;
}

.custom_dropdown_li {
    position: relative;
    margin: 10px;
    padding: 7px 16px;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid #e7edf5;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    font-size: 14px;
}

/* Hover Effect */
.custom_dropdown_li:hover{
    transform: translateY(-3px);
    border-color: #cfd8e6;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
    background: #ffffff;
}



/* =========================================
   Unique Breadcrumb Strip UI
========================================= */
.ux-breadcrumb-list{
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    margin-left: 15px;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Breadcrumb Item */

.ux-breadcrumb-item{
    display: flex;
    align-items: center;
}

.ux-breadcrumb-item a{
    color: #89888b;
}

/* Hover */

.ux-breadcrumb-item a:hover{
    color: #5f5f61;
    transition: .2s linear;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

/* Active Item */

.ux-breadcrumb-item--active{
    color: #3800ca;
    font-size: 14px;
}


.ux-breadcrumb-separator{
    color: #89888b;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */

@media (max-width: 768px){

    .ux-breadcrumb-strip{
        padding: 16px 18px;
    }

    .ux-breadcrumb-list{
        gap: 8px;
    }

    .ux-breadcrumb-item a,
    .ux-breadcrumb-item--active{
        padding: 8px 14px;
        font-size: 13px;
    }
}



.profile-progress-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Outer Progress Circle */
/* Common Circle Style */
.profile-progress-circle{
    width: 88px;
    height: 88px;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.provider-avatar1{
    z-index: 2;
    border: 3px solid #fff;
    margin-top: 0px;
}

.avatar-edit{
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #26C49E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    border: 2px solid #fff;
    z-index: 5;
}
/* Percentage Text */
.profile-complete-text{
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #26C49E;
}
