/* /assets/css/style.css */

/* ========== ROOT VARIABLES ========== */
:root {
    --primary: #0F172A;
    --secondary: #2563EB;
    --accent: #06B6D4;
    --background: #F8FAFC;
    --white: #FFFFFF;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --gradient-primary: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-secondary: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    --gradient-accent: linear-gradient(135deg, #06B6D4 0%, #2563EB 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-700);
    background-color: var(--background);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

/* ========== NAVBAR ========== */
#mainNavbar {
    background: var(--primary);
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
    z-index: 1050;
    transition: var(--transition);
}

#mainNavbar.scrolled {
    padding: 8px 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white) !important;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 8px 18px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: rgba(37, 99, 235, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: var(--gradient-primary);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(37,99,235,0.1)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.2);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.hero-title {
    color: var(--white);
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons .btn {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

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

.hero-stat .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
    bottom: 30px;
    left: -30px;
}

.hero-float-card.card-2 {
    top: 30px;
    right: -20px;
    animation-delay: 1.5s;
}

.hero-float-card .float-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
}

.hero-float-card .float-text h6 {
    font-size: 0.85rem;
    margin: 0;
}

.hero-float-card .float-text small {
    color: var(--gray-500);
    font-size: 0.75rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-accent:hover {
    background: #0891B2;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ========== BREADCRUMB ========== */
.breadcrumb-section {
    background: var(--gradient-primary);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    border-radius: 50%;
}

.breadcrumb-section .page-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.breadcrumb-section .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.breadcrumb-section .breadcrumb-item a {
    color: var(--accent);
    font-weight: 500;
}

.breadcrumb-section .breadcrumb-item.active {
    color: rgba(255,255,255,0.7);
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: "›";
    font-size: 1.2rem;
}

/* ========== TRAINING CARDS ========== */
/* ========== NAUKRI-STYLE TRAINING LIST CARD ========== */
.tcard {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px 28px;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.tcard:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.tcard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.tcard-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.tcard-org {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 2px;
}

.tcard-posted {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.tcard-logo {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gray-100);
}

.tcard-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tcard-logo i {
    font-size: 1.4rem;
    color: var(--secondary);
}

.tcard-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 12px;
}

.tcard-meta-item {
    font-size: 0.92rem;
    color: var(--gray-600);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tcard-meta-item i {
    color: var(--gray-400);
}

.tcard-meta-divider {
    width: 1px;
    height: 14px;
    background: var(--gray-300);
}

.tcard-desc {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tcard-desc i {
    color: var(--gray-400);
}

.tcard-tags {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.tcard-tag-dot {
    margin: 0 2px;
}

.tcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-200);
    padding-top: 14px;
}

.tcard-date {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.tcard-save {
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}

.tcard-save:hover {
    background: var(--gray-100);
}

.tcard-save.is-saved {
    color: var(--secondary);
}

@media (max-width: 576px) {
    .tcard {
        padding: 18px 18px;
    }
    .tcard-desc {
        white-space: normal;
    }
}

.training-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;

    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.training-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.training-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.training-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.training-card .card-img-wrapper .card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.training-card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.training-card .card-text {
    color: var(--gray-500);
    font-size: 0.9rem;
    flex: 1;
    margin-bottom: 20px;
}

.training-card .btn-know-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: var(--transition);
    align-self: flex-start;
}

.training-card .btn-know-more:hover {
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: var(--white);
    transform: translateX(3px);
}

/* ========== JOB CARDS ========== */
.job-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.job-card .card-header-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.job-card .card-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.job-card:hover .card-header-img img {
    transform: scale(1.1);
}

.job-card .card-header-img .hiring-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--success);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.job-card .card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.job-card .company-name {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.job-card .job-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.job-card .card-text {
    color: var(--gray-500);
    font-size: 0.9rem;
    flex: 1;
    margin-bottom: 20px;
}

.job-card .btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: var(--transition);
    align-self: flex-start;
}

.job-card .btn-apply:hover {
    background: #0891B2;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
    color: var(--white);
}

/* ========== DETAILS PAGE ========== */
.details-section {
    padding: 60px 0;
}

@media (max-width: 767.98px) {
    .details-section {
        padding: 35px 0;
    }
}

.details-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.details-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.details-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.details-content h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* ========== DETAILS META TABLE (shared) ==========
   Used on BOTH training-details.php ("Training Mode" / Fees / Qualification)
   AND job-details.php ("Job Type" / "Mode" / Salary / Experience /
   Qualification). Rendered as a real <table> (rows/columns, up to 3 per
   row) inside a single rounded panel — same panel/icon/label/value look on
   both pages, only the icon accent color and the fields shown differ, via
   the .training-meta-table / .job-meta-table modifier. */
.meta-table-wrap {
    margin: 20px 0 28px;
    padding: 20px 24px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    overflow-x: auto;
}

.meta-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.meta-table td {
    vertical-align: middle;
    padding: 10px 12px;
}

.meta-table tr:not(:last-child) td {
    padding-bottom: 22px;
}

.training-meta-item,
.job-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.training-meta-item i,
.job-meta-item i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
}

/* Job page uses the accent gradient (cyan/blue) to match its badges/buttons,
   keeping it visually distinct from the training page's secondary gradient. */
.job-meta-item i {
    background: var(--gradient-accent);
}

.training-meta-item .meta-label,
.job-meta-item .meta-label {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.training-meta-item .meta-value,
.job-meta-item .meta-value {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.98rem;
}

@media (max-width: 576px) {
    .meta-table-wrap {
        padding: 14px 16px;
    }

    /* Table rows/cells collapse to a single stacked column on small
       screens — clearer than squeezing 2-3 columns into a narrow viewport. */
    .meta-table,
    .meta-table tbody,
    .meta-table tr,
    .meta-table td {
        display: block;
        width: 100% !important;
    }

    .meta-table tr td {
        padding: 0 0 16px;
    }

    .meta-table tr:last-child td:last-child {
        padding-bottom: 0;
    }
}

/* ========== APPLICATION FORM ========== */
.application-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.application-form h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.application-form h3 i {
    color: var(--secondary);
}

.form-control, .form-select {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

/* ========== FEATURE CARDS (HOME) ========== */
.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.feature-card .feature-icon {
    width: 75px;
    height: 75px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-card .feature-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--secondary);
}

.feature-card .feature-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
}

.feature-card .feature-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.feature-card .feature-icon.orange {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    border-radius: 50%;
}

.cta-section .cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-brand {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-widget h5 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ========== BACK TO TOP ========== */
.btn-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.btn-back-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-back-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* ========== ADMIN STYLES ========== */
.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    padding: 20px;
}

.admin-login-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 420px;
}

.admin-login-card .logo {
    text-align: center;
    margin-bottom: 30px;
}

.admin-login-card .logo h2 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-sidebar {
    background: var(--primary);
    min-height: 100vh;
    width: 260px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    transition: var(--transition);
    overflow-y: auto;
}

.admin-sidebar .sidebar-brand {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar .sidebar-brand h3 {
    color: var(--white);
    font-weight: 800;
    margin: 0;
    font-size: 1.5rem;
}

.admin-sidebar .sidebar-brand small {
    color: var(--accent);
    font-size: 0.75rem;
}

.admin-sidebar .sidebar-menu {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.admin-sidebar .sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.admin-sidebar .sidebar-menu li a:hover,
.admin-sidebar .sidebar-menu li a.active {
    background: rgba(37, 99, 235, 0.2);
    color: var(--white);
    border-left-color: var(--secondary);
}

.admin-sidebar .sidebar-menu li a i {
    width: 20px;
    text-align: center;
}

.admin-content {
    margin-left: 260px;
    padding: 20px;
    min-height: 100vh;
    background: var(--background);
}

.admin-topbar {
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-topbar h4 {
    margin: 0;
    font-size: 1.2rem;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.5rem;
}

.stat-card .stat-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.stat-card .stat-info p {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.admin-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.admin-table .table {
    margin: 0;
}

.admin-table .table th {
    background: var(--gray-100);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    padding: 15px;
    border: none;
}

.admin-table .table td {
    padding: 15px;
    vertical-align: middle;
    border-color: var(--gray-200);
    font-size: 0.9rem;
}

.table-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    padding: 14px 18px;
    border-top: 1px solid var(--gray-200);
}

.pagination-info {
    font-size: 0.82rem;
    color: var(--gray-500);
    white-space: nowrap;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-100);
    transition: var(--transition);
}

.page-btn:hover:not(.disabled):not(.active) {
    background: var(--gray-200);
    color: var(--primary);
}

.page-btn.active {
    background: var(--gradient-secondary);
    color: var(--white);
}

.page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.admin-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-stat .stat-number {
        font-size: 1.6rem;
    }

    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-sidebar.show {
        transform: translateX(0);
    }

    .admin-content {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .details-content {
        padding: 25px;
    }

    .application-form {
        padding: 25px;
    }

    .details-image img,
    .details-image .placeholder-img {
        height: 280px;
    }

    .breadcrumb-section {
        padding: 30px 0;
    }

    .breadcrumb-section .page-title {
        font-size: 1.5rem;
    }

    .details-content h1 {
        font-size: 1.4rem;
    }

    .hero-float-card {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    .details-image img,
    .details-image .placeholder-img {
        height: 200px;
    }

    .details-content,
    .application-form {
        padding: 18px;
    }

    .details-content h1 {
        font-size: 1.25rem;
    }
}

/* ========== LOADING SPINNER ========== */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
}

.spinner-overlay.active {
    display: flex;
}

/* ========== PLACEHOLDER IMAGE ========== */
.placeholder-img {
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    width: 100%;
    height: 100%;
}

/* ========== SIDEBAR TOGGLE FOR MOBILE ========== */
.sidebar-toggle {
    display: none;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    cursor: pointer;
}

@media (max-width: 991.98px) {
    .sidebar-toggle {
        display: inline-block;
    }
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1035;
    display: none;
}

.sidebar-overlay.show {
    display: block;
}

/* ========== LONG DESCRIPTION FORMATTING ========== */
.long-description {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 0.95rem;
    word-wrap: break-word;
}

.long-description p {
    margin: 0 0 16px;
}

.long-description p:last-child {
    margin-bottom: 0;
}

.long-description strong {
    color: var(--gray-800);
    font-weight: 700;
}

.long-description strong.desc-heading {
    display: inline-block;
    margin-top: 6px;
    color: var(--primary);
    font-size: 1.05em;
}

.long-description .desc-bullet {
    color: var(--secondary);
    font-weight: 600;
}

.long-description .desc-check {
    color: var(--success);
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .long-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}
/* ========== USER MANAGEMENT — ROLE BADGES ========== */
.role-badge{
    display:inline-flex; align-items:center; gap:6px;
    padding:6px 13px; border-radius:20px;
    font-size:12px; font-weight:600; letter-spacing:.2px;
}
.role-badge i{ font-size:11px; }
.role-badge-super{
    color:#7c2d12;
    background:linear-gradient(135deg, #fde68a, #fbbf24);
    box-shadow:0 2px 8px rgba(251,191,36,.35);
}
.role-badge-super i{ color:#b45309; }
.role-badge-admin{
    color:#334155;
    background:#e2e8f0;
}
.role-badge-admin i{ color:#64748b; }

.user-row-super{
    background:linear-gradient(90deg, rgba(251,191,36,.07), transparent 60%);
}
.user-row-super td:first-child{ border-left:3px solid #fbbf24; }

/* ========================================================= */
/* ========== SUCCESS STORIES SECTION ========== */
/* ========================================================= */
.story-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.story-card .story-quote-icon {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2.2rem;
    color: var(--gray-100);
}

.story-card .story-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.story-card .story-avatar img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gray-100);
}

.story-card .story-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.story-card .story-role {
    font-size: 0.82rem;
    color: var(--secondary);
    font-weight: 600;
}

.story-card .story-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.story-card .story-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ========================================================= */
/* ========== GALLERY SECTION ========== */
/* ========================================================= */
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 220px;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.15) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-caption {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-item .gallery-caption small {
    display: block;
    font-weight: 400;
    opacity: 0.8;
    font-size: 0.75rem;
    margin-top: 2px;
}

/* ========================================================= */
/* ========== TESTIMONIALS SECTION ========== */
/* ========================================================= */
.testimonial-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.testimonial-slide-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    padding: 45px;
    text-align: center;
}

.testimonial-slide-card .testimonial-stars {
    color: var(--warning);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.testimonial-slide-card .testimonial-quote {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 26px;
}

.testimonial-slide-card .testimonial-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-slide-card .testimonial-person img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-slide-card .testimonial-person-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.98rem;
    text-align: left;
}

.testimonial-slide-card .testimonial-person-role {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-align: left;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 46px;
    height: 46px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 1;
}

#testimonialCarousel .carousel-control-prev { left: -10px; }
#testimonialCarousel .carousel-control-next { right: -10px; }

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
    width: 16px;
    height: 16px;
}

#testimonialCarousel .carousel-indicators {
    position: static;
    margin-top: 28px;
}

#testimonialCarousel .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--gray-300);
    opacity: 1;
    border: none;
}

#testimonialCarousel .carousel-indicators .active {
    background-color: var(--secondary);
}

@media (max-width: 767.98px) {
    .testimonial-slide-card { padding: 30px 22px; }
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next { display: none; }
}

/* ========================================================= */
/* ========== PARTNERS SECTION ========== */
/* ========================================================= */
.partner-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 26px 16px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.partner-card .partner-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
}

.partner-card .partner-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    margin: 0;
}

/* ========================================================= */
/* ========== FAQ SECTION ========== */
/* ========================================================= */
.faq-accordion .accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--primary);
    padding: 20px 24px;
    background: var(--white);
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--secondary);
    background: rgba(37, 99, 235, 0.05);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--gray-200);
}

.faq-accordion .accordion-button::after {
    background-size: 1.1rem;
}

.faq-accordion .accordion-body {
    padding: 4px 24px 22px;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========================================================= */
/* ========== ABOUT PAGE ========== */
/* ========================================================= */
.about-story-img {
    position: relative;
    min-height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-story-img {
    position: relative;
    min-height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-story-img img {
    display: none;
}

.about-exp-badge {
    position: absolute;
    bottom: -1px;
    left: -1px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 26px;
    border-top-right-radius: var(--radius-lg);
}

.about-exp-badge .exp-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-exp-badge .exp-label {
    font-size: 0.78rem;
    opacity: 0.85;
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    padding: 34px;
    height: 100%;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.mv-card .mv-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.value-card {
    text-align: center;
    padding: 26px 18px;
}

.value-card .value-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.about-stats-strip {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 45px 20px;
}

.about-stats-strip .stat-number {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 800;
    display: block;
}

.about-stats-strip .stat-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
}

/* ========================================================= */
/* ========== CONTACT PAGE ========== */
/* ========================================================= */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    padding: 28px;
    height: 100%;
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.contact-info-card .contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-info-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    padding: 40px;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.contact-form-wrap label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.contact-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 320px;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

/* ========================================================= */
/* ========== SHARE BUTTON (cards + details) ========== */
/* ========================================================= */
.btn-share-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.55);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    backdrop-filter: blur(2px);
    transition: var(--transition);
}

.btn-share-icon:hover {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.08);
}

.card-img-wrapper .btn-share-icon,
.card-header-img .btn-share-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
}

/* Inline share button used beside "Know More" links in listing cards */
.card-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.card-footer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-share-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    color: var(--secondary);
    border: 1.5px solid var(--gray-200);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-share-inline i {
    font-size: 0.78rem;
}

.btn-share-inline:hover {
    background: var(--gradient-secondary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.card-footer-divider {
    width: 1px;
    height: 16px;
    background: var(--gray-200);
}

@media (max-width: 400px) {
    .btn-share-inline span {
        display: none;
    }
    .btn-share-inline {
        padding: 8px 10px;
    }
}

/* Full share bar for details pages */
.share-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 26px;
}

.share-bar-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.92rem;
    margin-right: 4px;
}

.share-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.95rem;
    border: none;
    transition: var(--transition);
}

.share-circle:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.share-whatsapp { background: #25D366; }
.share-facebook { background: #1877F2; }
.share-twitter { background: #1DA1F2; }
.share-linkedin { background: #0A66C2; }
.share-copy { background: var(--gray-500); }
.share-copy.copied { background: var(--success); }

/* Copy link feedback toast */
.share-copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--primary);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.share-copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
