/* ==========================================================================
   TRAINING HOMEPAGE STYLES
   Reference design: Solid Future HR Training landing page
   ========================================================================== */

/* CSS Variables - Brand Colors */
.training-homepage {
    --tp-primary: #00aeef;
    --tp-primary-dark: #2e3192;
    --tp-primary-light: #e3f2fd;
    --tp-secondary: #5e72e4;
    --tp-text-dark: #000000;
    --tp-text-body: #1a2a3a;
    --text-primary: #2e3192;
    --tp-text-muted: #4a5565;
    --tp-bg-light: #f4f7fb;
    --tp-bg-soft: #eaf1f8;
    --tp-white: #ffffff;
    --tp-border: #e2e8f0;
    --tp-success: #2ecc71;
    --tp-star: #f5a623;
    --tp-radius-sm: 0.875rem;
    --tp-radius-md: 1rem;
    --tp-radius-lg: 1.5rem;
    --tp-shadow-sm: 0 2px 8px rgba(30, 41, 59, 0.06);
    --tp-shadow-md: 0 6px 20px rgba(30, 41, 59, 0.08);
    --tp-shadow-lg: 1px 2px 2px 0px rgb(0 0 0 / 20%);

    font-family: "Poppins", sans-serif;
    color: var(--tp-text-body);
    line-height: 1.6;
    padding-top: 60px;
}

.training-homepage .container {
    margin: 0 auto;
}

/* Loading spinner */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    color: var(--tp-text-muted);
    font-size: 16px;
}

/* Common section title */
.training-homepage .section-title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--tp-text-dark);
    margin: 0 0 10px 0;
    letter-spacing: -0.3px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.training-homepage .hero-section {
    background: #fff;
    padding: 15px;
    margin-top: 30px;
    text-align: left;
    border-top-right-radius: var(--tp-radius-lg);
    border-bottom-left-radius: var(--tp-radius-lg);
    box-shadow: 1px 2px 2px 0px rgb(0 0 0 / 20%);
    min-height: auto;
}
.about_us .hero-section {
    background: #E6EDF5;
}

.training-homepage .hero-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.training-homepage .hero-content {
    flex: 1 1 70%;
    min-width: 300px;
    max-width: inherit;
    padding: 0px 15px;
}
.about_us .hero-content { flex: 1 1 50%;}

.training-homepage .hero-content h1 {
    font-size: 1.875rem;
    line-height: 1.25;
    font-weight: 600;
    color: #000;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}

.training-homepage .hero-highlight {
    color: #2e3192;
}

.training-homepage .hero-content p {
    font-size: 1.125rem; line-height: 24px;
    color: #4a5565;
    margin: 0 0 30px 0;
}
.training-homepage .hero-content ul{padding-left: 15px;}
.training-homepage .hero-content ul li{
    font-size: 1rem; color: #4a5565; font-weight: 600; line-height: 24px; padding-top: 5px; padding-bottom: 5px;
}
.about_us .hero-content p {color:#364153;}

.training-homepage .hero-buttons button {
   border: none; margin-right: 15px; font-size: 1rem; font-weight: 500; 
   padding: 5px 15px; border-radius: 0.75rem !important;
   box-shadow: 2px 2px 6px 0px rgb(0 0 0 / 30%);
}
.training-homepage .hero-buttons button:hover{background-color: rgb(0, 98.4, 204) !important;}

.training-homepage .btn-hero-primary {
    background: var(--tp-primary);
    color: var(--tp-white);
    border: none;
    padding: 11px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.training-homepage .btn-hero-primary:hover {
    background: var(--tp-primary-dark);
    transform: translateY(-1px);
}

.training-homepage .btn-hero-secondary {
    background: var(--tp-white);
    color: var(--tp-text-dark);
    border: 1px solid var(--tp-border);
    padding: 11px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.training-homepage .btn-hero-secondary:hover {
    border-color: var(--tp-primary);
    color: var(--tp-primary);
}

.training-homepage .hero-image {
    flex: 1 1 20%;
    min-width: 280px;
    text-align: right;
}
.about_us .hero-image{flex: 1 1 40%;}
.training-homepage .hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}
.about_us .hero-image{text-align: center;}
.about_us .hero-image img{max-height: 500px;}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.training-homepage .features-section {
    padding: 60px 0px 0px;
}
.features-content{border-radius: 0px;}
.training-homepage .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.training-homepage .feature-box {
    text-align: center;
    padding: 0px 15px;
}

.training-homepage .feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--tp-primary);
    color: var(--tp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
}

.training-homepage .feature-box h5 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--tp-text-dark);
    margin: 0 0 10px 0;
}

.training-homepage .feature-box p {
    font-size: 1rem;
    color: #4a5565;
    margin: 0;
    line-height: 18px;
}

/* ==========================================================================
   UNLOCK OPPORTUNITIES SECTION
   ========================================================================== */
.training-homepage .unlock-section {
    padding: 0px;
}

.training-homepage .unlock-content {
    text-align: center;
    margin: 0 auto;
    border-radius: 0px;
}

.training-homepage .unlock-content h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--tp-text-dark);
    margin: 0 0 20px 0;
}

.training-homepage .unlock-content h6 {
    font-size: 15px;
    color: var(--tp-text-body);
    font-weight: 500;
    margin: 0 0 16px 0;
}

.training-homepage .unlock-content p {
    font-size: 0.875rem;
    color: #4a5565;
    margin: 0;
    line-height: 18px;
}

/* ==========================================================================
   TRAININGS SECTION (Horizontal Cards)
   ========================================================================== */

.training-homepage .trainings-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.training-homepage .training-card {
    display: flex;
    background: var(--tp-white);
    border-radius: var(--tp-radius-lg);
    overflow: hidden;
    box-shadow: var(--tp-shadow-lg);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.training-homepage .training-card:hover {
    box-shadow: var(--tp-shadow-md);
    transform: translateY(-2px);
}

.training-homepage .training-card-image {
    flex: 0 0 400px;
    min-height: 260px;
    max-height: 450px;
    overflow: hidden;
}

.training-homepage .training-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.training-homepage .training-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--tp-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tp-text-muted);
    font-size: 40px;
}

.training-homepage .training-card-body {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
}

.training-homepage .training-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    text-transform: capitalize;
}

.training-homepage .training-card-tagline {
    font-size: 1rem;
    color: var(--tp-text-body);
    margin: 0 0 10px 0;
    line-height: 20px;
    font-weight: 500;
}

.training-homepage .training-card-overview {
    font-size: 1rem;
    color: #364153;
    margin: 0 0 14px 0;
    line-height: 20px;
}

.training-homepage .training-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.training-homepage .training-card-features li {
    font-size: 1rem;
    color: var(--tp-text-dark);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.training-homepage .training-card-features li i {
    color: var(--tp-primary-dark);
    font-size: 1rem;
}

.training-homepage .training-card-buttons {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.training-homepage .btn-enroll {
    background: var(--tp-primary);
    color: var(--tp-white);
    border: none;
    padding: 9px 22px;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    display: inline-block; position: relative; vertical-align: middle;
    box-shadow: 2px 2px 6px 0px rgb(0 0 0 / 30%);
}

.training-homepage .btn-enroll:hover {
    background: var(--tp-primary-dark);
}

.training-homepage .btn-view {
    background: var(--tp-primary-dark);
    color: #fff;
    border: 0;
    padding: 9px 22px;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block; position: relative; vertical-align: middle;
    box-shadow: 2px 2px 6px 0px rgb(0 0 0 / 30%);
}

.training-homepage .btn-view:hover {
    background: var(--tp-primary);
    color: var(--tp-white);
}

.training-homepage .no-trainings {
    text-align: center;
    padding: 60px 0;
    color: var(--tp-text-muted);
}

/* ==========================================================================
   TRAINERS SECTION
   ========================================================================== */

.training-homepage .trainers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.training-homepage .trainer-card {
    background: var(--tp-white);
    border-radius: var(--tp-radius-md);
    overflow: hidden;
    box-shadow: var(--tp-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.training-homepage .trainer-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--tp-shadow-md);
}

.training-homepage .trainer-photo-wrap {
    /* width: 100%; */
    height: 240px;
    overflow: hidden;
    background: var(--tp-bg-light);
}

.training-homepage .trainer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.training-homepage .trainer-photo-placeholder {
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--tp-text-muted);
    font-size: 60px;
}

.training-homepage .trainer-info {
    padding: 18px 20px 20px;
    text-align: center;
}

.training-homepage .trainer-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #364153;
    margin-bottom: 4px;
}

.training-homepage .trainer-designation {
    font-size: 0.875rem;
    color: #364153;
    font-weight: 500;
    margin-bottom: 6px;
}

.training-homepage .trainer-bio {
    font-size: 0.75rem;
    color: var(--tp-text-muted);
    margin-bottom: 0px;
}

.training-homepage .trainer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.training-homepage .trainer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--tp-bg-light);
    color: var(--tp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.training-homepage .trainer-social a:hover {
    background: var(--tp-primary);
    color: var(--tp-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */

.training-homepage .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 24px;
}
.training-homepage .why-choose-item {
    text-align: center;
    padding: 10px 8px;
}
.training-homepage .why-choose-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--tp-primary-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 40px;
}
.training-homepage .why-choose-item h6 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--tp-text-dark);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.training-homepage .why-choose-item p {
    font-size: 14px;
    color: #4a5565;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   TESTIMONIALS SECTION (Carousel)
   ========================================================================== */
.training-homepage .testimonials-section {
    padding: 60px 0;
    background: var(--tp-white);
}

.training-homepage .testimonials-carousel {
    position: relative;
}

.training-homepage .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

.training-homepage .testimonial-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-border);
    border-radius: var(--tp-radius-md);
    padding: 22px 22px 20px;
    box-shadow: var(--tp-shadow-sm);
    transition: box-shadow 0.25s ease;
}

.training-homepage .testimonial-card:hover {
    box-shadow: var(--tp-shadow-md);
}

.training-homepage .testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.training-homepage .testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.training-homepage .testimonial-avatar-placeholder {
    background: #f4f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tp-text-muted);
    font-size: 22px;
}

.training-homepage .testimonial-meta h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--tp-text-dark);
    margin: 0 0 2px 0;
}

.training-homepage .testimonial-meta .designation {
    font-size: 12px;
    color: var(--tp-text-muted);
}

.training-homepage .testimonial-text {
    font-size: 13px;
    color: var(--tp-text-body);
    line-height: 1.6;
    margin-bottom: 14px;
    font-style: italic;
}

.training-homepage .testimonial-rating {
    display: flex;
    gap: 3px;
    font-size: 14px;
    color: var(--tp-star);
}

.training-homepage .testimonial-rating .text-muted {
    color: #d8dde3 !important;
}

.training-homepage .testimonial-training {
    margin-top: 10px;
    font-size: 11px;
    color: var(--tp-text-muted);
    border-top: 1px solid var(--tp-border);
    padding-top: 8px;
}

.training-homepage .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.training-homepage .testimonial-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-block;
}

.training-homepage .testimonial-dot.active {
    background: var(--tp-primary);
    width: 26px;
    border-radius: 6px;
}

.training-homepage .testimonial-dot:hover:not(.active) {
    background: #94a3b8;
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */

.training-homepage .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.training-homepage .stat-item h3 {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--tp-primary-dark);
    margin: 0 0 8px 0;
}

.training-homepage .stat-item p {
    font-size: 1.125rem;
    color: #364153;
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .training-homepage .features-grid,
    .training-homepage .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-homepage .trainers-grid,
    .training-homepage .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .training-homepage .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .training-homepage .hero-content h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .training-homepage .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .training-homepage .hero-buttons {
        justify-content: center;
    }

    .training-homepage .training-card {
        flex-direction: column;
    }

    .training-homepage .training-card-image {
        flex: 0 0 auto;
        height: 200px;
        min-height: auto;
    }

    .training-homepage .training-card-buttons {
        flex-wrap: wrap;
    }

    .training-homepage .trainers-grid,
    .training-homepage .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .training-homepage .features-grid,
    .training-homepage .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .training-homepage .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .training-homepage .hero-content h1 {
        font-size: 24px;
    }

    .training-homepage .stat-item h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .training-homepage .training-card-body {
        padding: 18px;
    }

    .training-homepage .training-card-buttons .btn-enroll,
    .training-homepage .training-card-buttons .btn-view {
        flex: 1;
    }
}


/* ==========================================================================
   TRAINING DETAIL PAGE STYLES
   Reference design: Solid Future HR Training detail page
   All classes scoped under .training-detail-page
   ========================================================================== */

.training-detail-page {
    --td-primary: #1e88e5;
    --td-primary-dark: #1565c0;
    --td-primary-light: #e3f2fd;
    --td-text-dark: #1a2a3a;
    --td-text-body: #4a5568;
    --td-text-muted: #718096;
    --td-bg-light: #f4f7fb;
    --td-bg-soft: #eaf1f8;
    --td-bg-page: #f0f4f9;
    --td-white: #ffffff;
    --td-border: #e2e8f0;
    --td-success: #2ecc71;
    --td-star: #f5a623;
    --td-radius-sm: 8px;
    --td-radius-md: 12px;
    --td-radius-lg: 16px;
    --td-shadow-sm: 0 2px 6px rgba(30, 41, 59, 0.05);
    --td-shadow-md: 0 6px 18px rgba(30, 41, 59, 0.07);
    color: var(--td-text-body);
    background: var(--td-bg-page);
    line-height: 1.6;
    padding-bottom: 40px;
    padding-top:65px; /* To offset fixed header */
}

.training-detail-page .container {
    margin: 0 auto;
}

/* Loading & Not Found */
.training-detail-page .loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    color: var(--td-text-muted);
    gap: 12px;
}

.training-detail-page .not-found-container {
    text-align: center;
    background: var(--td-white);
    padding: 50px 30px;
    border-radius: var(--td-radius-lg);
    box-shadow: var(--td-shadow-sm);
    max-width: 600px;
    margin: 40px auto;
}

.training-detail-page .not-found-icon {
    font-size: 64px;
    color: var(--td-primary);
    margin-bottom: 20px;
}

.training-detail-page .not-found-title {
    font-size: 26px;
    color: var(--td-text-dark);
    margin-bottom: 12px;
}

.training-detail-page .not-found-message {
    font-size: 15px;
    color: var(--td-text-body);
    margin-bottom: 6px;
}

.training-detail-page .not-found-subtitle {
    font-size: 13px;
    color: var(--td-text-muted);
    margin-bottom: 24px;
}

.training-detail-page .not-found-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   COMMON BUTTONS
   ============================================ */
.training-detail-page .btn-td-primary {
    background: var(--td-primary);
    color: var(--td-white);
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.training-detail-page .btn-td-primary:hover {
    background: var(--td-primary-dark);
    color: var(--td-white);
    transform: translateY(-1px);
}

.training-detail-page .btn-td-outline {
    background: transparent;
    color: var(--td-primary);
    border: 1px solid var(--td-primary);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.training-detail-page .btn-td-outline:hover {
    background: var(--td-primary);
    color: var(--td-white);
}

.training-detail-page .btn-block {
    width: 100%;
    display: block;
}

.training-detail-page .btn-sm {
    padding: 7px 14px;
    font-size: 12px;
}

/* Common section title */
.training-detail-page .td-section-title {
    text-align: center;
    font-size:24px;
    font-weight: 700;
    color: var(--td-text-dark);
    margin: 0 0 30px 0;
}

/* ============================================
   1. PAGE TITLE BAR
   ============================================ */
.training-detail-page .td-title-bar {
    background: var(--td-primary);
    padding: 18px 0;
    margin-bottom: 0;
}

.training-detail-page .td-title {
    color: var(--td-white);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* ============================================
   2. INTRO TWO-COLUMN
   ============================================ */
.training-detail-page .td-intro-section {
    background: var(--td-white);
    padding: 36px 0;
    border-bottom: 1px solid var(--td-border);
}

.training-detail-page .td-intro-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.training-detail-page .td-intro-left {
    flex: 1 1 55%;
    min-width: 300px;
}

.training-detail-page .td-intro-tagline {
    font-size: 14px;
    color: var(--td-text-dark);
    font-weight: 500;
    margin: 0 0 18px 0;
}

.training-detail-page .td-intro-subhead {
    font-size: 16px;
    font-weight: 700;
    color: var(--td-text-dark);
    margin: 0 0 14px 0;
}

.training-detail-page .td-intro-body p {
    font-size: 13px;
    color: var(--td-text-body);
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.training-detail-page .td-intro-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.training-detail-page .td-intro-right {
    flex: 1 1 35%;
    min-width: 260px;
    display: flex;
    justify-content: center;
}

.training-detail-page .td-intro-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--td-radius-md);
    box-shadow: var(--td-shadow-md);
    max-height: 380px;
    object-fit: cover;
}

.training-detail-page .td-intro-image-placeholder {
    width: 100%;
    height: 320px;
    background: var(--td-bg-light);
    border-radius: var(--td-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--td-text-muted);
    font-size: 48px;
}

/* ============================================
   3. COURSE OVERVIEW INFO STRIP
   ============================================ */
.training-detail-page .td-info-strip {
    padding: 40px 0;
    background: var(--td-bg-page);
}

.training-detail-page .td-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.training-detail-page .td-info-item {
    text-align: center;
    padding: 8px;
}

.training-detail-page .td-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--td-primary);
    color: var(--td-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 26px;
}

.training-detail-page .td-info-item h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--td-text-dark);
    margin: 0 0 6px 0;
}

.training-detail-page .td-info-item p {
    font-size: 12px;
    color: var(--td-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   4. CAREER PATHS
   ============================================ */
.training-detail-page .td-careers-section {
    padding: 40px 0;
    background: var(--td-bg-page);
}

.training-detail-page .td-careers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.training-detail-page .td-career-card {
    background: var(--td-white);
    padding: 24px 20px;
    border-radius: var(--td-radius-md);
    text-align: center;
    box-shadow: var(--td-shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.training-detail-page .td-career-card:hover {
    box-shadow: var(--td-shadow-md);
    transform: translateY(-2px);
}

.training-detail-page .td-career-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--td-primary);
    color: var(--td-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
}

.training-detail-page .td-career-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--td-text-dark);
    margin: 0 0 8px 0;
}

.training-detail-page .td-career-card p {
    font-size: 12px;
    color: var(--td-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   5. MAIN SECTION (Outcomes + Modules + Sidebar)
   ============================================ */
.training-detail-page .td-main-section {
    padding: 30px 0 50px;
}

.training-detail-page .td-main-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    align-items: flex-start;
}

.training-detail-page .td-main-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Outcomes Box */
.training-detail-page .td-outcomes-box {
    background: var(--td-white);
    border-radius: var(--td-radius-md);
    overflow: hidden;
    box-shadow: var(--td-shadow-sm);
}

.training-detail-page .td-box-header {
    background: var(--td-primary);
    padding: 14px 22px;
}

.training-detail-page .td-box-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.training-detail-page .td-box-header h3 {
    color: var(--td-white);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.training-detail-page .td-outcomes-list {
    list-style: none;
    padding: 18px 22px;
    margin: 0;
}

.training-detail-page .td-outcomes-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--td-text-body);
}

.training-detail-page .td-outcomes-list li i {
    color: var(--td-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Modules Box */
.training-detail-page .td-modules-box {
    background: var(--td-white);
    border-radius: var(--td-radius-md);
    overflow: hidden;
    box-shadow: var(--td-shadow-sm);
}

.training-detail-page .td-modules-subbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 22px;
    border-bottom: 1px solid var(--td-border);
    font-size: 12px;
    color: var(--td-text-muted);
}

.training-detail-page .td-modules-expand {
    color: var(--td-primary);
    text-decoration: none;
    font-weight: 500;
}

.training-detail-page .td-modules-expand:hover {
    text-decoration: underline;
}

.training-detail-page .td-modules-list {
    padding: 12px 16px 18px;
}

.training-detail-page .td-module-item {
    border: 1px solid var(--td-border);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: background 0.2s ease;
}

.training-detail-page .td-module-item.expanded {
    background: var(--td-bg-light);
}

.training-detail-page .td-module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.training-detail-page .td-module-header:hover {
    background: var(--td-bg-light);
}

.training-detail-page .td-module-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--td-text-dark);
}

.training-detail-page .td-chevron {
    color: var(--td-text-muted);
    font-size: 12px;
    transition: transform 0.25s ease;
}

.training-detail-page .td-chevron.rotated {
    transform: rotate(180deg);
}

.training-detail-page .td-module-content {
    padding: 0 18px 16px;
    font-size: 13px;
    color: var(--td-text-body);
    line-height: 1.6;
}

.training-detail-page .td-module-content p {
    margin: 0;
}

/* Sidebar */
.training-detail-page .td-main-right {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.training-detail-page .td-sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.training-detail-page .td-enquiry-box {
    background: var(--td-white);
    border-radius: var(--td-radius-md);
    padding: 22px;
    box-shadow: var(--td-shadow-sm);
    border-top: 3px solid var(--td-primary);
}

.training-detail-page .td-enquiry-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--td-text-dark);
    margin: 0 0 18px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--td-border);
}

.training-detail-page .td-form-group {
    margin-bottom: 14px;
}

.training-detail-page .td-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--td-text-dark);
    margin-bottom: 6px;
}

.training-detail-page .td-form-group input,
.training-detail-page .td-form-group textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--td-border);
    border-radius: 6px;
    font-size: 13px;
    color: var(--td-text-dark);
    background: var(--td-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.training-detail-page .td-form-group input:focus,
.training-detail-page .td-form-group textarea:focus {
    outline: none;
    border-color: var(--td-primary);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.12);
}

.training-detail-page .td-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.training-detail-page .td-form-submit {
    margin-top: 6px;
}

/* ============================================
   6. MEET YOUR TRAINER
   ============================================ */
.training-detail-page .td-trainers-section {
    padding: 40px 0;
}

.training-detail-page .td-trainers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.training-detail-page .td-trainer-card {
    display: flex;
    gap: 22px;
    background: var(--td-white);
    padding: 22px;
    border-radius: var(--td-radius-md);
    box-shadow: var(--td-shadow-sm);
    align-items: flex-start;
}

.training-detail-page .td-trainer-photo-wrap {
    flex: 0 0 140px;
}

.training-detail-page .td-trainer-photo {
    width: 140px;
    height: 140px;
    border-radius: var(--td-radius-md);
    object-fit: cover;
    display: block;
}

.training-detail-page .td-trainer-photo-placeholder {
    background: var(--td-bg-light);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--td-text-muted);
    font-size: 50px;
}

.training-detail-page .td-trainer-info {
    flex: 1;
}

.training-detail-page .td-trainer-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--td-text-dark);
    margin: 0 0 4px 0;
}

.training-detail-page .td-trainer-designation {
    font-size: 13px;
    color: var(--td-primary);
    font-weight: 500;
    margin: 0 0 4px 0;
}

.training-detail-page .td-trainer-qualification {
    font-size: 12px;
    color: var(--td-text-muted);
    margin: 0 0 8px 0;
}

.training-detail-page .td-trainer-bio {
    font-size: 13px;
    color: var(--td-text-body);
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.training-detail-page .td-trainer-social {
    display: flex;
    gap: 10px;
}

.training-detail-page .td-trainer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--td-primary);
    color: var(--td-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.training-detail-page .td-trainer-social a:hover {
    background: var(--td-primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   7. RELATED TRAININGS CAROUSEL
   ============================================ */
.training-detail-page .td-related-section {
    padding: 40px 0;
}

.training-detail-page .td-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}

.training-detail-page .td-related-card {
    background: var(--td-white);
    border-radius: var(--td-radius-md);
    overflow: hidden;
    box-shadow: var(--td-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.training-detail-page .td-related-card:hover {
    box-shadow: var(--td-shadow-md);
    transform: translateY(-2px);
}

.training-detail-page .td-related-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.training-detail-page .td-related-image-placeholder {
    background: var(--td-bg-light);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--td-text-muted);
    font-size: 36px;
}

.training-detail-page .td-related-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.training-detail-page .td-related-body h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--td-text-dark);
    margin: 0 0 8px 0;
}

.training-detail-page .td-related-duration {
    font-size: 12px;
    color: var(--td-text-muted);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.training-detail-page .td-related-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.training-detail-page .td-related-buttons .btn-sm {
    flex: 1;
}

.training-detail-page .td-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.training-detail-page .td-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-block;
}

.training-detail-page .td-dot.active {
    background: var(--td-primary);
    width: 26px;
    border-radius: 6px;
}

.training-detail-page .td-dot:hover:not(.active) {
    background: #94a3b8;
}

/* ============================================
   8. FEEDBACK / TESTIMONIALS
   ============================================ */
.training-detail-page .td-feedback-section {
    padding: 40px 0;
    background: var(--td-bg-soft);
    border-radius: var(--td-radius-lg);
    margin: 0 auto;
}

.training-detail-page .td-feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 60px;
}

.training-detail-page .td-feedback-card {
    background: var(--td-white);
    padding: 22px 20px;
    border-radius: var(--td-radius-md);
    text-align: center;
    box-shadow: var(--td-shadow-sm);
    position: relative;
}

.training-detail-page .td-feedback-avatar {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    object-fit: cover;
    margin: -50px auto 12px;
    display: block;
    border: 4px solid var(--td-white);
    box-shadow: var(--td-shadow-sm);
}

.training-detail-page .td-feedback-avatar-placeholder {
    background: var(--td-bg-light);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--td-text-muted);
    font-size: 24px;
}

.training-detail-page .td-feedback-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--td-text-dark);
    margin: 0 0 4px 0;
}

.training-detail-page .td-feedback-designation {
    font-size: 12px;
    color: var(--td-text-muted);
    margin: 0 0 12px 0;
}

.training-detail-page .td-feedback-text {
    font-size: 13px;
    color: var(--td-text-body);
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 14px 0;
}

.training-detail-page .td-feedback-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    font-size: 13px;
    color: var(--td-star);
}

.training-detail-page .td-feedback-rating .text-muted {
    color: #d8dde3 !important;
}

.training-detail-page .td-carousel-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.training-detail-page .td-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--td-white);
    border: 1px solid var(--td-border);
    color: var(--td-text-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.2s ease;
}

.training-detail-page .td-arrow-btn:hover {
    background: var(--td-primary);
    color: var(--td-white);
    border-color: var(--td-primary);
}

/* ============================================
   9. FAQ SECTION
   ============================================ */
.training-detail-page .td-faq-section {
    padding: 50px 0 20px;
}

.training-detail-page .td-faq-subtitle {
    text-align: center;
    font-size: 13px;
    color: var(--td-text-muted);
    margin: -20px 0 28px 0;
}

.training-detail-page .td-faq-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 1px solid var(--td-border);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.training-detail-page .td-faq-tab {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--td-text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s ease;
}

.training-detail-page .td-faq-tab:hover {
    color: var(--td-primary);
}

.training-detail-page .td-faq-tab.active {
    color: var(--td-primary);
    border-bottom-color: var(--td-primary);
}

.training-detail-page .td-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.training-detail-page .td-faq-item {
    background: var(--td-white);
    border: 1px solid var(--td-border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.training-detail-page .td-faq-item.expanded {
    box-shadow: var(--td-shadow-sm);
}

.training-detail-page .td-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--td-text-dark);
    transition: background 0.2s ease;
}

.training-detail-page .td-faq-question:hover {
    background: var(--td-bg-light);
}

.training-detail-page .td-faq-answer {
    padding: 0 20px 16px;
    font-size: 13px;
    color: var(--td-text-body);
    line-height: 1.7;
    border-top: 1px solid var(--td-border);
    padding-top: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .training-detail-page .td-main-wrapper {
        grid-template-columns: 1fr;
    }

    .training-detail-page .td-main-right {
        position: static;
    }

    .training-detail-page .td-info-grid,
    .training-detail-page .td-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-detail-page .td-feedback-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-detail-page .td-careers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .training-detail-page .td-intro-wrapper {
        flex-direction: column;
    }

    .training-detail-page .td-intro-right {
        order: -1;
    }

    .training-detail-page .td-info-grid,
    .training-detail-page .td-related-grid,
    .training-detail-page .td-feedback-grid {
        grid-template-columns: 1fr;
    }

    .training-detail-page .td-trainer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .training-detail-page .td-trainer-photo-wrap {
        flex: 0 0 auto;
    }

    .training-detail-page .td-trainer-social {
        justify-content: center;
    }

    .training-detail-page .td-title {
        font-size: 18px;
    }

    .training-detail-page .td-section-title {
        font-size: 20px;
    }

    .training-detail-page .td-faq-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .training-detail-page .td-faq-tab {
        white-space: nowrap;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .training-detail-page .td-intro-buttons,
    .training-detail-page .td-related-buttons {
        flex-direction: column;
    }

    .training-detail-page .td-intro-buttons .btn-td-primary,
    .training-detail-page .td-intro-buttons .btn-td-outline {
        width: 100%;
    }
}

/* ==========================================================================
   SEEKER DASHBOARD STYLES
   Reference design: Seeker Dashboard with Profile Overview and Analytics
   ========================================================================== */

/* Main dashboard container */
.dashboard-profile-overview {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 20px;
}

/* Profile header wrapper */
.dashboard-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.dashboard-profile-left {
    display: flex;
    align-items: flex-start;
    flex: 1;
}

/* Profile photo container */
.dashboard-profile-photo-wrap {
    margin-right: 25px;
}

.dashboard-profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #f0f0f0;
}

.dashboard-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile text info container */
.dashboard-profile-info {
    flex: 1;
}

.dashboard-profile-name {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.dashboard-profile-jobtitle {
    font-size: 16px;
    color: #667eea;
    font-weight: 500;
    margin: 0 0 15px 0;
}

/* Contact info badges container */
.dashboard-contact-badges {
    margin-bottom: 15px;
}

/* Profile Completeness Section */
.dashboard-completeness-section {
    margin-bottom: 20px;
}

.dashboard-completeness-hint {
    font-size: 10px;
    color: #2c3e50;
    margin-bottom: 0;
}

/* Skills Section */

.dashboard-skills-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

/* Analytics Section */
.dashboard-analytics-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

/* Jobs Tabs Section */
.dashboard-tabs-container {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

/* .dashboard-tabs-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #e0e0e0;
    background: #f9fafb;
    border-radius: 12px 12px 0 0;
}

.dashboard-tabs-nav li {
    margin: 0;
} */

/* Background wrapper for the tab links */
.sf-local-tabs-container {
  background-color: #ebf3f9; /* The soft blue-gray background in your image */
  border-bottom: 1px solid #dbe6ee;
  width: 100%;
}

/* Flex layout to space them perfectly */
.sf-local-tabs {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 16px 0;
}

/* Individual Tab Items */
.sf-tab-item {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 4px;
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

/* Hover effect color */
.sf-tab-item:hover {
  color: #0c2340;
}

/* The solid blue line styling for the ACTIVE tab */
.sf-tab-item.active {
  color: #0c2340; /* Dark blue text */
  font-weight: 600;
}

.sf-tab-item.active::after {
  content: "";
  position: absolute;
  bottom: -2px; /* Pulls line down exactly over the container border */
  left: 0;
  width: 100%;
  height: 3px; /* Thick underline indicator */
  background-color: #0c2340; /* Royal/navy blue line */
  border-radius: 2px;
}

/* Offset sections slightly so they don't hit the absolute top edge of the viewport */
.sf-section {
  scroll-margin-top: 40px; 
}
.custom-vertical-line {
  border-left: 2px solid #2e3192; /* 2px width, solid style, and Bootstrap's default primary blue */
  height: 2.5rem;
  width:2px;                  /* Equivalent to h-100 */
}

/* Style the link container if you need padding or positioning */
.nav-employer-zone {
  display: inline-block; 
}

/* Target the actual Link element inside the div */
.nav-employer-zone a {
  display: flex;                  /* Equivalent to 'flex' */
  align-items: center;            /* Equivalent to 'items-center' */
  gap: 8px;                       /* Equivalent to 'gap-2' (0.5rem) */
  color: #2e3192;       /* Equivalent to 'text-primary' */
  text-decoration: none;          /* Removes standard link underline */
  transition: color 0.2s ease;    /* Makes hover transition smooth */
    line-height: 14px;
}

/* Maintain the color state during hovers */
.nav-employer-zone a:hover {
  color: #2e3192;       /* Equivalent to 'hover:text-primary' */
  text-decoration: none;          /* Keeps underline off on hover */
}

 .dashboard-tabs-nav  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 24px;   /* px-6 = 1.5rem */
    padding-right: 24px;  /* px-6 = 1.5rem */
    column-gap: 16px;     /* gap-x-4 = 1rem */
    width: 100%;          /* w-full */
    overflow-y: auto;     /* overflow-y-auto */
    
    /* scroll-hide equivalent */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
}

.dashboard-tabs-nav li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 24px;   /* px-6 = 1.5rem */
    padding-right: 24px;  /* px-6 = 1.5rem */
    column-gap: 16px;     /* gap-x-4 = 1rem */
    width: 100%;          /* w-full */
    overflow-y: auto;     /* overflow-y-auto */
    
    /* scroll-hide equivalent */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.dashboard-tabs-nav li::-webkit-scrollbar {
    display: none;
}

.dashboard-tabs-link {
    display: inline-block;
    padding: 16px 24px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    margin-bottom: -2px;
}

.dashboard-tabs-link:hover {
    color: #667eea;
}

.dashboard-tabs-link.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background: #fff;
}

/* ==========================================================================
   TESTIMONIALS CAROUSEL SECTION - Employer Zone
   ========================================================================== */

.sf-testimonials-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sf-testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* React Slick Carousel Customization */
.sf-testimonials-carousel-wrapper .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    user-select: none;
    touch-action: pan-y;
    webkit-touch-callout: none;
}

.sf-testimonials-carousel-wrapper .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.sf-testimonials-carousel-wrapper .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    transform: translate3d(0, 0, 0);
}

.sf-testimonials-carousel-wrapper .slick-slide {
    display: block;
    float: left;
    height: 100%;
    min-height: 1px;
    padding: 0 15px;
    box-sizing: border-box;
}

.sf-testimonials-carousel-wrapper .slick-slide.slick-active {
    display: block;
}

.sf-testimonial-card-wrapper {
    padding: 0 15px;
}

.sf-testimonial-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 0px 25px 35px 25px;
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.sf-testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.sf-testimonial-avatar-wrap {
    margin-bottom: 20px;
    position: relative;
    margin-top: -30px;
}

.sf-testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sf-testimonial-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.sf-testimonial-designation {
    font-size: 0.875rem;
    color: #4a5565;
    font-weight: 400;
    margin-bottom: 15px;
}

.sf-testimonial-text {
    font-size: 0.875rem;
    color: #4a5565;
    line-height: 16px;
    margin-bottom: 15px;
    font-weight: 400;
}

.sf-testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.sf-testimonial-rating i {
    font-size: 16px;
    color: #ffc107;
}

/* Slick Arrow Customization - Remove from sides */
.sf-testimonials-carousel-wrapper .slick-prev,
.sf-testimonials-carousel-wrapper .slick-next {
    display: none !important;
}

/* Custom Controls Below Carousel */
.sf-testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.sf-testimonials-carousel-wrapper .sf-testimonial-arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background-color: #2e3192;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 53, 97, 0.2);
}

.sf-testimonials-carousel-wrapper .sf-testimonial-arrow-btn:hover {
    background-color: #1a1f3a;
    box-shadow: 0 6px 16px rgba(45, 53, 97, 0.3);
    transform: scale(1.05);
}

.sf-testimonials-carousel-wrapper .sf-testimonial-arrow-btn:active {
    transform: scale(0.95);
}

.sf-relatedjobs-arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background-color: #fff;
    color: #a9bed6;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 12px rgba(45, 53, 97, 0.2); */
    margin-left: auto;
    margin-right: auto;
}

.sf-relatedjobs-arrow-btn:hover {
    background-color: #fff; color: #5568d3;
    box-shadow: 0 6px 16px rgba(45, 53, 97, 0.3);
    transform: scale(1.05);
}
.sf-relatedjobs-arrow-btn:active {
    transform: scale(0.95);
}

/* Gap between cards */

/* .slick-list {
  margin: 0 -15px;
} */

/* Responsive Design */
@media (max-width: 1024px) {
    .sf-testimonials-controls {
        gap: 12px;
    }

    .sf-testimonials-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {

    .sf-testimonials-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .sf-testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .sf-testimonial-name {
        font-size: 16px;
    }

    .sf-testimonial-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sf-testimonials-section {
        padding: 40px 0;
    }

    .sf-testimonials-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .sf-testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .sf-testimonial-name {
        font-size: 15px;
    }

    .sf-testimonial-designation {
        font-size: 12px;
    }

    .sf-testimonial-text {
        font-size: 12px;
    }

    .sf-testimonial-rating i {
        font-size: 14px;
    }
}

/* ========================================================================
   TOP CATEGORIES CAROUSEL SECTION
   ======================================================================== */

.sf-top-categories-section {
    padding: 0px 0px 35px 0px;
    background-color: #f5f6fb;
}

.sf-categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.sf-categories-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2e3192;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* Categories Arrows */
.sf-categories-arrows {
    display: flex;
    gap: 10px;
}

.sf-categories-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #fff;
    color: #00aeef;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sf-categories-arrow-btn:hover {
    background-color: #2d5aa3;
    color: #ffffff;
}

.sf-categories-arrow-btn:active {
    transform: scale(0.95);
}

/* Categories Carousel Wrapper */
.sf-categories-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Slick slider customization for categories */
.sf-categories-carousel-wrapper .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    user-select: none;
    touch-action: pan-y;
    webkit-touch-callout: none;
}

.sf-categories-carousel-wrapper .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 -10px;
    padding: 0;
}

.sf-categories-carousel-wrapper .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    transform: translate3d(0, 0, 0);
}

.sf-categories-carousel-wrapper .slick-slide {
    display: block;
    float: left;
    height: 100%;
    min-height: 1px;
    box-sizing: border-box;
}

.sf-category-card-wrapper {
    padding:10px;
}

/* Category Card */
.sf-category-card {
    background: #ffffff;
    border: 1px solid #e8eef5;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 1px 2px 2px 0px rgb(0 0 0 / 20%);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.sf-category-card:hover {
    box-shadow: 2px 4px 8px 0px rgb(0 0 0 / 20%);
    border-color: #2d5aa3;
}

/* Category Badge */
.sf-category-badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 1px solid #2d5aa3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    font-size: 18px;
    font-weight: 700;
    color: #2d5aa3;
}

/* Category Content */
.sf-category-content {
    flex: 1;
}

.sf-category-title {
    font-size: 16px;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.sf-category-count {
    font-size: 14px;
    color: #333;
    margin: 0;
    font-weight: 500;
}

/* Hide default Slick arrows */
.sf-categories-carousel-wrapper .slick-prev,
.sf-categories-carousel-wrapper .slick-next {
    display: none !important;
}

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

    .sf-category-card {
        padding: 18px;
    }

    .sf-category-badge {
        width: 55px;
        height: 55px;
        font-size: 16px;
    }

    .sf-category-title {
        font-size: 15px;
    }
}

@media (max-width: 992px) {

    .sf-category-card {
        padding: 16px;
        gap: 12px;
    }

    .sf-category-badge {
        width: 50px;
        height: 50px;
        font-size: 15px;
    }

    .sf-category-title {
        font-size: 14px;
    }

    .sf-category-count {
        font-size: 13px;
    }
}

@media (max-width: 768px) {

    .sf-categories-arrow-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .sf-category-card {
        padding: 15px;
        gap: 12px;
    }

    .sf-category-badge {
        width: 48px;
        height: 48px;
        font-size: 14px;
    }

    .sf-category-title {
        font-size: 13px;
    }

    .sf-category-count {
        font-size: 12px;
    }
}

@media (max-width: 575px) {

    .sf-categories-arrow-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-width: 1.5px;
    }

    .sf-category-card {
        padding: 12px;
        gap: 10px;
    }

    .sf-category-badge {
        width: 45px;
        height: 45px;
        font-size: 13px;
        border-width: 1.5px;
    }

    .sf-category-title {
        font-size: 12px;
    }

    .sf-category-count {
        font-size: 11px;
    }
}

/* ==========================================================================
   GROUPED JOBS DISPLAY - EMPLOYER CARDS
   ========================================================================== */

/* Main grid for employer cards */
.sf-groupby-employers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 5px;
  align-items: start;
}


.justify-between {
    justify-content: space-between;
}
.flex {
    display: flex;
}
.jobs_card{height: 88px; position: relative;}

/* Base employer card styling */
.sf-groupby-employer-card {
  background: #fff;
  /* border: 1px solid #e2e8f0; */
  border-radius: 12px;
  padding: .7rem;
  color: rgb(2 8 23);
  box-shadow: 1px 2px 2px 0px rgb(0 0 0 / 20%);
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .15s;
  cursor: pointer;
  height: 88px;
  position: relative;
  z-index: 1;
}
.sf-groupby-employer-card:hover {
  box-shadow: 2px 4px 8px 0px rgb(0 0 0 / 20%);
  transform: translateY(-4px) !important;
}

/* Expanded state - smooth height transition */
.sf-groupby-employer-card-expanded {
    height: auto; width: 100%;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    overflow: visible;
    position: absolute;
    background: #fff;
    z-index: 10;
}

/* Employer Header - Logo + Name (single row) */
.sf-groupby-employer-header {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* Logo wrapper container */
.sf-groupby-employer-logo-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 65px;
  border-radius: 6px;
  overflow: hidden;
  background: #f4f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
}

/* Logo image */
.sf-groupby-employer-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Employer company name */
.sf-groupby-employer-name, .sf-groupby-employer-name h5 {
  font-size: 14px;
  font-weight: 500;
  color: #1a2a3a;
  margin: 0px 0px 5px 0px;
  line-height: 1.3;
  flex: 1;
}
.sf-groupby-employer-name h5:hover, .sf-groupby-employer-name h5:hover a{color: #2e3192;}

/* Job count badge - HIDDEN */
.sf-groupby-job-count-badge {
  display: none;
}

/* Jobs list container */
.sf-groupby-employer-jobs-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 0;
  max-height: 180px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.sf-groupby-employer-card-expanded .sf-groupby-employer-jobs-list {
  max-height: 220px;
  overflow: visible;
  margin-bottom: 12px;
}

/* Individual job link - with bullet point */
.sf-groupby-employer-job-link {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 2px 0;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

.sf-groupby-employer-job-link::before {
  content: "•";
  color: #1e88e5;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.sf-groupby-employer-job-link:hover {
  color: #2e3192;
  font-weight: 500;
}

/* Expand button - shown when more than 2 jobs */
.sf-groupby-employer-expand-button {
    gap: 4px;
    background: none;
    color: #1e88e5;
    border-radius: 0;
    font-size: 11px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    line-height: 14px;
    text-align: center;
    display: flex;
    height: -webkit-fill-available;
    flex-direction: column;
    justify-content: flex-end;
}

.sf-groupby-employer-expand-button:hover {
  color: #1565c0;
  transform: none;
}

.sf-groupby-employer-expand-button i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.sf-groupby-employer-card-expanded .sf-groupby-employer-expand-button i {
  transform: rotate(180deg);
}

.sf-groupby-expand-text {
  white-space: nowrap; display: block; display: none;
}

.btn_current_open{border-radius: 100px; color: #2e3192; margin-bottom: 10px;}
.btn_current_open i{display:inline-block; position: relative; vertical-align: middle; font-size: 10px;}

.trend-exp-meta{display:block; border-top: 1px solid #ddd;
    padding: 5px 0px; margin-top: 5px;}

.related-exp-meta{display:block; 
    padding: 5px 0px; margin-top: 5px;}

.training-list-sec{padding-bottom: 45px;}
.training-list-sec .sf-section-header .sf-section-title{font-size: 1.5rem;}
.training-list-sec .slick-slider, .sf-training-jobs .slick-slider,
.blog_dashboard .slick-slider{margin-left: -10px; margin-right: -10px;}
.training-list-sec .slick-slide, .sf-training-jobs .slick-slide{padding: 10px;}

.training_list{display: flex; gap: 15px;}

/* Responsive Design for Employer Cards */
@media (max-width: 1200px) {
  .sf-groupby-employers-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
  }
}

@media (max-width: 992px) {
  .sf-groupby-employers-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }

  .sf-groupby-employer-card {
    padding: 16px;
    max-height: 260px;
  }

  .sf-groupby-employer-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .sf-groupby-employer-logo-wrapper {
    width: 48px;
    height: 48px;
  }

  .sf-groupby-employer-name {
    font-size: 14px;
  }

  .sf-groupby-employer-job-link {
    font-size: 12px;
    padding: 3px 0;
    gap: 5px;
  }

  .sf-groupby-employer-jobs-list {
    gap: 3px;
    max-height: 160px;
  }

  .sf-groupby-employer-card-expanded .sf-groupby-employer-jobs-list {
    max-height: 210px;
  }
}

@media (max-width: 768px) {
  .sf-groupby-employers-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px;
  }

  .sf-groupby-employer-card {
    padding: 14px;
    max-height: 240px;
  }

  .sf-groupby-employer-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .sf-groupby-employer-logo-wrapper {
    width: 44px;
    height: 44px;
  }

  .sf-groupby-employer-name {
    font-size: 13px;
  }

  .sf-groupby-employer-job-link {
    font-size: 11px;
    padding: 3px 0;
    gap: 5px;
  }

  .sf-groupby-employer-jobs-list {
    gap: 3px;
    max-height: 150px;
  }

  .sf-groupby-employer-card-expanded .sf-groupby-employer-jobs-list {
    max-height: 200px;
  }

  .sf-groupby-employer-expand-button {
    font-size: 11px;
    padding: 6px 0;
  }
}

@media (max-width: 575px) {
  .sf-groupby-employers-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sf-groupby-employer-card {
    padding: 12px;
    max-height: 220px;
  }

  .sf-groupby-employer-header {
    gap: 8px;
    margin-bottom: 10px;
  }

  .sf-groupby-employer-logo-wrapper {
    width: 42px;
    height: 42px;
  }

  .sf-groupby-employer-name {
    font-size: 12px;
  }

  .sf-groupby-employer-job-link {
    font-size: 10px;
    padding: 2px 0;
    gap: 4px;
  }

  .sf-groupby-employer-jobs-list {
    gap: 2px;
    max-height: 140px;
  }

  .sf-groupby-employer-card-expanded .sf-groupby-employer-jobs-list {
    max-height: 190px;
  }

  .sf-groupby-employer-expand-button {
    font-size: 10px;
    padding: 4px 0;
  }
}

.contact_us_purple
{
    color:#2e3192;
}

/* ========================================================================
   PREMIUM JOB SEARCH & FILTER SECTION
   ======================================================================== */

.sf-premium-search-sec {
    background: #94C2F7;
    background: linear-gradient(90deg,rgba(148, 194, 247, 1) 0%, rgba(230, 237, 245, 1) 100%);
    padding: 60px 0 40px 0;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
}

.sf-premium-search-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.sf-premium-search-subtitle {
    font-size: 1.125rem;
    color: #000000;
    margin-bottom: 35px;
    font-weight: 500;
    line-height: 20px;
}

.sf-premium-search-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 1px 2px 2px 0px rgb(0 0 0 / 20%);
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.sf-premium-search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.sf-premium-search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sf-premium-search-label {
    font-size: 0.85rem;
    margin-bottom: 0px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: capitalize;
}

.sf-premium-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.sf-premium-search-select,
.sf-premium-search-input {
    width: 100%;
    height: 40px;
    padding: 10px 35px 10px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #374151;
    background-color: #ffffff;
    outline: none;
    transition: all 0.2s ease;
    appearance: none; /* remove default arrow for select */
    -webkit-appearance: none;
    -moz-appearance: none;
}

.sf-premium-search-select:focus,
.sf-premium-search-input:focus {
    border-color: #2e3192;
    box-shadow: 0 0 0 3px rgba(46, 49, 146, 0.1);
}

.sf-premium-search-chevron {
    position: absolute;
    right: 15px;
    pointer-events: none;
    color: #6b7280;
    font-size: 14px;
}

.sf-premium-search-btn {
    width: 100%;
    height: 40px;
    background-color: #2e3192;
    color: #ffffff;
    border: none;
    border-radius: 9px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 49, 146, 0.2);
}

.sf-premium-search-btn:hover {
    background-color: #1d206b;
    box-shadow: 0 6px 18px rgba(46, 49, 146, 0.3);
    transform: translateY(-1px);
}

.sf-premium-search-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(46, 49, 146, 0.2);
}

.sf-premium-search-btn i, .milestone h4 {
    font-size: 1.1rem;
}
.css-11qzz1n-control{min-height: 39px !important;}
.css-1m5om8j, .css-glp6ar-control, .css-11qzz1n-control{height: 40px!important;}

/* Responsive styles */
@media (max-width: 992px) {
    .sf-premium-search-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .sf-premium-search-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .sf-premium-search-sec {
        padding: 40px 15px 30px 15px;
    }
    
    .sf-premium-search-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .sf-premium-search-card {
        padding: 16px;
    }
}

/* ==========================================================================
   SEEKER DASHBOARD REDESIGN - PREMIUM SCREENSHOT EXACT MATCH
   ========================================================================== */

/* Seeker Dashboard content container */

/* Redesigned Cards */
.dashboard-profile-overview,
.dashboard-analytics-card,
.dashboard-tabs-container,
.dashboard-bottom-card {
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 9px !important;
    box-shadow:1px 2px 2px 0px rgb(0 0 0 / 20%) !important;
    padding: 15px !important;
    margin-bottom: 30px;
}
.dashboard-bottom-card {margin-bottom: 10px;}

/* Profile Photo outline ring and styles */
.dashboard-profile-photo-wrap {
    margin-right: 20px !important;
    flex-shrink: 0;
}

.dashboard-profile-photo {
    width: 105px !important;
    height: 105px !important;
    border-radius: 50% !important;
    border: 3.5px solid #2e3192 !important; /* Thick Navy blue ring */
    background: transparent !important;
    padding: 0 !important; /* snug fit */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.dashboard-profile-photo img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

/* Profile Overview top header */
.dashboard-profile-overview-title {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #1a1a1a !important;
}

/* Profile Info texts */
.dashboard-profile-name {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    margin: 0 0 2px 0 !important;
    line-height: 1.2 !important;
}

.dashboard-profile-jobtitle {
    font-size: 14px !important;
    color: #586376 !important;
    font-weight: 400 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.2 !important;
}

/* Contact badges */
.dashboard-contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0 !important;
}

.dashboard-contact-badge {
    background-color: #e6edf5;
    border: 1px solid #dbe6ee;
    color: #1a1a1a;
    border-radius: 20px;
    padding: 2px 6px; /* snug padding */
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transition: all 0.2s ease;
    line-height: 14px;
    box-shadow: 0px 1px 2px 0px rgb(0 0 0 / 20%);
}

.dashboard-contact-badge i {
    color: #2e3192;
    margin-right: 0;
    font-size: 11px;
}

/* Edit profile button */
.dashboard-edit-btn {
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    padding: 5px 7px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    background: transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dashboard-edit-btn:hover {
    background-color: #2e3192;
    color: #ffffff;
}

/* Progress bar & Completeness section */
.dashboard-completeness-section {
    margin-top: 10px !important; /* tight layout */
    margin-bottom: 8px !important;
}

.dashboard-completeness-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-completeness-label {
    color: #2c3e50;
    font-size: 12px;
    margin-bottom: 0px;
    font-weight: 500;
}

.dashboard-completeness-percentage {
    font-weight: 500;
    color: #2e3192;
    font-size: 13px;
}

.dashboard-progress-container {
    height: 5px; /* Extremely thin */
    background: #eef2f6;
    border-radius: 10px;
    overflow: hidden;
}

.dashboard-progress-bar {
    background: #2e3192; /* Solid Navy blue */
    height: 100%;
}

/* Skill tags */
.dashboard-skills-section {
    margin-top: 9px;
}

.dashboard-skill-badge {
    background-color: #ebf3f9;
    border: 1px solid #dbe6ee;
    color: #2e3192;
    padding: 2px 6px;
    border-radius: 20px;
    font-size: 11px;
    line-height: 14px;
    font-weight: 500;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0px 1px 2px 0px rgb(0 0 0 / 20%);
}

.dashboard-skill-badge:hover {
    background-color: #2e3192;
    color: #ffffff;
    border-color: #2e3192;
}

/* Analytics metric rows */
.dashboard-analytics-title {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 5px;
}

.dashboard-metric-item {
    display: flex;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #f1f3f7;
    margin-bottom: 0;
}
.dashboard-metric-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dashboard-metric-icon {
    width: 37px;
    height: 37px;
    border-radius: 6px;
    background: #ebf3f9;
    color: #2e3192;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1.125rem;
}

.dashboard-metric-content {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.dashboard-metric-label {
    font-size: 13px;
    font-weight: 500;
    color: #2c3e50;
    margin:0;
}
.dashboard-metric-value {
    font-size: 12px;
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
    line-height: 1.2;
}

.dashboard-metric-subtitle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: #2e3192;
}

/* Positive green highlights in subtitles if applicable */
.dashboard-metric-subtitle:contains("+") {
    color: #2ecc71 !important;
}

/* Tabs Section */
.dashboard-tabs-container {
    padding: 0 !important;
}

.dashboard-tabs-nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background-color: #ebf3f9 !important; /* Soft blue-gray */
    padding: 12px 24px !important;
    border-bottom: 1px solid #dbe6ee !important;
    margin: 0 !important;
    list-style: none !important;
}

.dashboard-tabs-nav li {
    display: inline-block !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-y: visible !important;
}

.dashboard-tabs-link {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #586376 !important;
    text-decoration: none !important;
    padding: 8px 0 !important;
    border-bottom: 3px solid transparent !important;
    transition: all 0.2s ease !important;
    background: transparent !important;
    margin-bottom: -15px !important; /* offset border bottom alignment */
}

.dashboard-tabs-link:hover {
    color: #2e3192 !important;
}

.dashboard-tabs-link.active {
    color: #2e3192 !important;
    border-bottom-color: #2e3192 !important;
    background: transparent !important;
}

/* Tab content area styling */
.dashboard-tab-content {
    min-height: 300px;
}

/* Tabs footer buttons spacing */
.dashboard-tab-footer {
    padding: 20px 24px;
    border-top: 1px solid #f1f3f7;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Outline explore button */
.dashboard-explore-btn {
    background: transparent;
    border: 2px solid #2e3192;
    color: #2e3192;
    padding: 5px 15px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: none;
    cursor: pointer;
}

.dashboard-explore-btn:hover {
    background: #2e3192;
    color: #ffffff;
}

/* Solid view-all button */
.dashboard-view-all-btn {
    background: #2e3192;
    border: 1.5px solid #2e3192;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: none;
    cursor: pointer;
}

.dashboard-view-all-btn:hover {
    background: #fff;
    border-color: #1d2088;
}

/* Bottom card header */
.dashboard-card-header .dashboard-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.dashboard-card-header .dashboard-card-link {
    font-size: 14px;
    font-weight: 500;
    color: #2e3192;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dashboard-card-header .dashboard-card-link:hover {
    color: #1d2088;
}

/* Documents List Styles */
.dashboard-documents-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 460px;
    overflow-y: auto;
    padding-right: 5px;
    margin-right: -5px;
}
.dashboard-documents-list::-webkit-scrollbar{
  height: 6px !important;
  width: 6px !important;
  background-color: #e4e5e6 !important;
}
.dashboard-documents-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3) !important;
  background-color: #e4e5e6 !important;
}
.dashboard-documents-list::-webkit-scrollbar-thumb {
  height: 8px !important;
  border: 0.1rem solid #abcdef !important;
  border-radius: 2px !important;
  background-color: #0ae !important;
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    color-stop(0.5, rgba(255, 255, 255, 0.2)),
    color-stop(0.5, transparent),
    to(transparent)
  );
}
.dashboard-documents-list::-webkit-scrollbar-thumb:hover {
  background-color: #ee7600 !important;
}

.dashboard-document-item {
    border: 1px solid #d1d5dc;
    border-radius: 4px;
    padding: 5px 10px;
    background: #ffffff;
    box-shadow: 0px 1px 2px 0px rgb(0 0 0 / 20%);
    transition: all 0.2s ease;
}

.dashboard-document-item:hover {
    border-color: #dbe6ee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.dashboard-document-icon {
    font-size: 16px !important;
    color: #2e3192 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-document-name {
    font-size: 13px;
    font-weight: 400;
    color: #2e3192;
    margin-bottom: 2px;
}

.dashboard-document-meta {
    font-size: 11px !important;
    color: #768396 !important;
    font-weight: 500 !important;
}

/* Documents actions */
.dashboard-doc-action-btn {
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dashboard-doc-action-btn:hover {
    transform: scale(1.1);
}

.dashboard-doc-action-btn.action-view{
    color: #2e3192;
}
.dashboard-doc-action-btn.action-download {
    color: #586376;
}

.dashboard-doc-action-btn.action-view:hover,
.dashboard-doc-action-btn.action-download:hover {
    color: #2e3192;
}

.dashboard-doc-action-btn.action-delete {
    color: #e05e5e !important;
}

.dashboard-doc-action-btn.action-delete:hover {
    color: #c0392b !important;
}

/* Notifications Card Styles */
.dashboard-notifications-count {
    font-size: 13px;
    font-weight: 500;
    color: #2e3192;
}

.dashboard-notifications-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dashboard-notification-item {
    background: #ebf3f9; /* Soft blue-gray background */
    border-radius: 4px;
    padding: 7px 10px;
    transition: all 0.2s ease;
}

.dashboard-notification-item:hover {
    background: #e2ecf4;
}

/* Top-right notification dot */
.dashboard-notification-dot {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #2e3192; /* Blue indicator dot */
}

.dashboard-notification-title {
    font-size: 12px;
    font-weight: 400;
    color: #2e3192;
    padding-right: 15px; /* clear dot */
}

.dashboard-notification-desc {
    font-size: 11px;
    color: #586376;
    margin: 5px 0;
    line-height: 14px;
    font-weight: 400;
}

.dashboard-notification-time {
    font-size: 11px;
    color: #768396;
    font-weight: 500;
}

/* Notifications View All Button */
.dashboard-notifications-view-all-btn {
    background: #2e3192;
    border: none;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: background 0.2s ease;
    box-shadow: none;
    cursor: pointer;
}

.dashboard-notifications-view-all-btn:hover {
    background: #1d2088;
    color: #ffffff;
}

/* Premium spacing at bottom row */
.dashboard-bottom-row {
    margin-top: 15px;
}

/* 1. Apply your exact padding top and bottom to the dots wrapper */
 .slick-dots {
    position: relative !important;
    bottom: 0 !important; 
    padding: 15px 0px !important; /* 25px top/bottom, 0px left/right */
}

/* 2. Target the dot elements using rem units */
 .slick-dots li button::before {
    font-size: 0.625rem !important; /* Equivalent to 10px (10 / 16 = 0.625) */
    opacity: 0.25;      
}

/* 3. Keep the active dot clear when selected */
 .slick-dots li.slick-active button::before {
    opacity: 1;         
}

/* 1. Carousel Dot Layout Formatting Overrides */
/* .sf-blog-carousel .slick-dots {
    position: relative !important;
    bottom: 0 !important;
    padding: 25px 0px !important;
}

.sf-blog-carousel .slick-dots li button::before {
    font-size: 0.625rem !important; 
    opacity: 0.25;      
}

.sf-blog-carousel .slick-dots li.slick-active button::before {
    opacity: 1;         
} */

.sf-blog-carousel .masonry-item {
    padding: 0 12px; 
    box-sizing: border-box;
}

.sf-blog-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card content spacing flex framework (UPDATED) */
.sf-blog-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px !important; /* CHANGED: Increased room for breathing space */
    box-sizing: border-box;
}

.sf-blog-carousel .sf-blog-custom-card .wt-post-info .wt-post-meta ul {
    font-size:10px !important;
}

.sf-blog-carousel .sf-blog-custom-card .wt-post-info .wt-post-meta ul li.post-date {
    font-size:inherit;
}

/* NEW: Clean line alignment constraint layout for Title text blocks */
.sf-blog-carousel .sf-blog-custom-card .wt-post-title .post-title a {
    font-size: 0.75rem;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Truncates titles at line 2 automatically */
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.sf-blog-carousel .sf-blog-custom-card .wt-post-text {
    font-size: 0.813rem;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 15px;
    
    /* Forces description text to stop exactly on line 1 */
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Keep paragraph structures within tight character lines (UPDATED) */
.sf-blog-description {
    font-size: 0.813rem;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 15px;
    
    /* CHANGED: Replaced max-height with line clamping for precise alignment */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Forces description text to stop exactly on line 2 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* NEW: Pill-shaped full-width button styling */
.sf-blog-carousel .btn-readmore {
    width: 100%;
    background-color: #2b2a85 !important; /* Rich solid blue shade */
    color: #ffffff !important;
    border-radius: 20px !important;       /* Pill layout radius boundary */
    padding: 6px 12px;
    font-weight: 500;
    font-size: 0.813rem;
    text-align: center;
    border: none;
}
.blog_dashboard .sf-blog-custom-card{margin-bottom: 10px;}

/* ==========================================================================
   EDIT PROFILE — 4-TAB REDESIGN
   ========================================================================== */

/* Outer wrapper */
.ep-tabs-wrapper {
    /* background: #ffffff;
    border: 1px solid #eef2f6;
    box-shadow: 1px 2px 2px 0px rgb(0 0 0 / 20%); */
    border-radius: 9px;
    overflow: hidden;
}

/* ---- Horizontal Tab Navigation Bar ---- */
.ep-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f5f7f9;
    padding: 5px; margin-bottom: 10px; border-radius: 9px;
    list-style: none;
    border:1px solid #99a1af;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.ep-tabs-nav::-webkit-scrollbar {
    height: 0;
    display: none;
}

.ep-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #586376;
    background: transparent;
    border: none;
    /* border-bottom: 3px solid transparent; */
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    outline: none;
    position: relative;
}
.ep-tab-btn .my_tabs{padding: 5px 15px; border-radius: 9px;}
.ep-tab-btn:hover {
    color: #2e3192;
}
.ep-tab-btn:hover .my_tabs{background-color: rgba(46, 49, 146, 0.04);}

.ep-tab-btn.active {
    color: #2e3192;
    font-weight: 500;
}
.ep-tab-btn.active .my_tabs{background: #e6edf5;}

/* Numbered circle */
.ep-tab-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #586376;
    font-size: 12px;
    font-weight: 500;
    color: #586376;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.ep-tab-btn.active .ep-tab-num {
    border-color: #2e3192;
    background-color: #2e3192;
    color: #ffffff;
}

.ep-tab-btn:hover .ep-tab-num {
    border-color: #2e3192;
    color: #2e3192;
}

.ep-tab-btn.active:hover .ep-tab-num {
    color: #ffffff;
}

/* ---- Tab Content Panes ---- */
.ep-tab-content {
    position: relative;
    min-height: 300px;
    border: 1px solid #99a1af;
    border-radius: 9px;
}

.ep-tab-pane {
    display: none;
    padding: 24px;
    animation: epFadeIn 0.3s ease;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 9px;
    box-shadow: 1px 2px 2px 0px rgb(0 0 0 / 20%);
}

.ep-tab-pane.active {
    display: block;
}

@keyframes epFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Section cards inside tabs */
.ep-tab-pane > .panel {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    overflow: hidden;
}

.ep-tab-pane > .panel:last-child {
    margin-bottom: 0;
}

/* ---- Footer Navigation (Previous / Next) ---- */
.ep-tab-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 15px;
    /* border-top: 1px solid #eef2f6; */
    background-color: #fafbfc;
}

.ep-btn-prev,
.ep-btn-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
    text-decoration: none;
}

.ep-btn-prev {
    background-color: #ffffff;
    color: #2e3192;
    border: 1.5px solid #2e3192;
}

.ep-btn-prev:hover {
    background-color: #ebf3f9;
    color: #1d206b;
    border-color: #1d206b;
}

.ep-btn-next {
    background-color: #2e3192;
    color: #ffffff;
    border: 1.5px solid #2e3192;
}

.ep-btn-next:hover {
    background-color: #1d206b;
    border-color: #1d206b;
}

/* ---- Responsive: Tablet ---- */
@media (max-width: 992px) {
    .ep-tab-btn {
        font-size: 13px;
        gap: 6px;
    }

    .ep-tab-num {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .ep-tab-pane {
        padding: 18px;
    }
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 576px) {
    .ep-tabs-nav {
        justify-content: flex-start;
        gap: 0;
        padding: 0;
    }

    .ep-tab-btn {
        flex: none;
        font-size: 12px;
        gap: 5px;
        min-width: auto;
    }

    .ep-tab-btn .ep-tab-label {
        display: none;
    }

    .ep-tab-btn .ep-tab-label-short {
        display: inline;
    }

    .ep-tab-num {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .ep-tab-pane {
        padding: 14px;
    }

    .ep-tab-footer {
        flex-wrap: wrap;
    }

    .ep-btn-prev,
    .ep-btn-next {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Desktop: hide short labels */
.ep-tab-btn .ep-tab-label-short {
    display: none;
}

/* Mobile: show short labels instead */
@media (max-width: 576px) {
    .ep-tab-btn .ep-tab-label {
        display: none;
    }
    .ep-tab-btn .ep-tab-label-short {
        display: inline;
    }
}

/* Edit Profile header bar inside tabs wrapper */
.ep-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #eef2f6;
    background: #ffffff;
}

.ep-header-bar h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.ep-header-bar .ep-header-link {
    font-size: 14px;
    font-weight: 500;
    color: #2e3192;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ep-header-bar .ep-header-link:hover {
    color: #1d206b;
}

/* ==========================================================================
   EDIT PROFILE — "ADD NEW" SLIDE-TOGGLE BUTTONS & COLLAPSIBLE PANELS
   ========================================================================== */

/* ---- "Add New" Button ---- */
.ep-add-new-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(135deg, #2e3192 0%, #4a4cc9 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(46, 49, 146, 0.25);
    outline: none;
    margin-bottom: 20px;
}

.ep-add-new-btn:hover {
    background: linear-gradient(135deg, #1d206b 0%, #3a3cb8 100%);
    box-shadow: 0 4px 14px rgba(46, 49, 146, 0.35);
    transform: translateY(-1px);
}

.ep-add-new-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(46, 49, 146, 0.2);
}

.ep-add-new-btn .ep-add-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.3s ease;
}

.ep-add-new-btn.active .ep-add-icon {
    transform: rotate(45deg);
}

/* ---- Collapsible "Add New" Form Panel ---- */
.ep-add-new-panel {
    display: none;
    overflow: hidden;
    margin-bottom: 24px;
}

.ep-add-new-panel .panel-body {
    border: 2px dashed #c8d3e0;
    border-radius: 10px;
    padding: 24px;
    background: #f7fafd;
    transition: border-color 0.3s ease;
}

.ep-add-new-panel .panel-body:hover {
    border-color: #a3b5cc;
}

/* ---- Existing Item Edit Card ---- */
.ep-edit-card {
    border: 1px solid #dbe6ee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.ep-edit-card:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border-color: #c8d5e0;
}

.ep-edit-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5fa 100%);
    border-bottom: 1px solid #eef2f6;
}

.ep-edit-card-header h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a2332;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ep-edit-card-header .ep-delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 14px;
}

.ep-edit-card-header .ep-delete-btn:hover {
    background: rgba(231, 76, 60, 0.15);
    color: #c0392b;
}

.ep-edit-card-body {
    padding: 20px;
}

/* ---- Section Title & Add Button Row ---- */
.ep-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef2f6;
}

.ep-section-header h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #1a2332;
}

/* ---- Inline Form Save Button Enhancement ---- */
.ep-edit-card .form-footer,
.ep-add-new-panel .form-footer {
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #eef2f6;
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 768px) {
    .ep-add-new-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
        font-size: 13px;
    }

    .ep-section-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .ep-edit-card-header {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .ep-edit-card-header h5 {
        font-size: 14px;
    }

    .ep-edit-card-body {
        padding: 16px;
    }

    .ep-add-new-panel .panel-body {
        padding: 16px;
    }
}

@media (max-width: 576px) {
    .ep-edit-card-header {
        padding: 10px 14px;
    }

    .ep-edit-card-body {
        padding: 12px;
    }

    .ep-add-new-panel .panel-body {
        padding: 12px;
    }
}

/* ---- Empty State ---- */
.ep-empty-state {
    text-align: center;
    padding: 30px 20px;
    color: #8a99af;
    font-size: 14px;
}

.ep-empty-state i {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
    color: #c8d3e0;
}

/* ---- Section Divider ---- */
.ep-section-divider {
    border: 0;
    height: 1px;
    background: #eef2f6;
    margin: 28px 0;
}

/* ---- Badge Styles ---- */
.ep-badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    background: #d4edda;
    color: #155724;
}

.ep-badge-unverified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    background: #fff3cd;
    color: #856404;
}