﻿:root {
    --grad-start: #8B2FDB;
    --grad-end: #E8296B;
    --purple: #8B2FDB;
    --pink: #E8296B;
    --purple-light: #F5EDFD;
    --text: #1F2430;
    --muted: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #F0EAF7;
}

body {
    background: var(--bg-white);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* --- MODERN LIGHT NAVBAR --- */
.navbar.header-sticky {
    background: linear-gradient(120deg, var(--purple) 0%, var(--pink) 100%) !important;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.navbar-brand img {
    height: 70px;
    width: auto;
    max-width: 320px;
    display: block;
}



.main-menu .nav-link {
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px !important;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    /* Hover/active: light translucent pill background instead of a color
   that matches the gradient behind it */
    .main-menu .nav-link:hover,
    .nav-item.active .nav-link {
        color: #FFFFFF !important;
        background-color: rgba(255, 255, 255, 0.18);
    }







/* Header Buttons */
.header-btn-action {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
    text-decoration: none !important;
}

.btn-login {
    color: var(--text);
    border: 1px solid transparent;
}

    .btn-login:hover {
        color: var(--purple);
        background: var(--purple-light);
    }

.btn-register {
    background: linear-gradient(90deg, var(--grad-start) 0%, var(--grad-end) 100%);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(139, 47, 219, 0.2);
}

    .btn-register:hover {
        transform: translateY(-2px);
        opacity: 0.95;
        box-shadow: 0 6px 20px rgba(139, 47, 219, 0.3);
    }

.btn-user {
    color: var(--text);
    border: 1px solid transparent;
    background: transparent;
}
    .btn-user:hover {
        color: var(--purple);
        background: var(--purple-light);
    }

/* --- MODERN GRADIENT FOOTER --- */
.footer-gradient {
    background: linear-gradient(120deg, var(--purple) 0%, var(--pink) 100%) !important;
    padding: 80px 0 30px;
    color: #ffffff !important;
    border-top: none;
}

    .footer-gradient p, .footer-gradient .text-muted {
        color: rgba(255, 255, 255, 0.85) !important;
        line-height: 1.6;
    }

.footer-widget .title {
    color: #ffffff !important;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    display: inline-block;
    margin-bottom: 12px;
}

    .footer-widget a:hover {
        color: #ffffff !important;
        transform: translateX(5px);
    }

.newsletter-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
}

    .newsletter-box input {
        border: none !important;
        background: transparent !important;
        padding: 10px 20px;
        flex-grow: 1;
        color: #ffffff !important;
        outline: none;
        font-size: 14px;
    }

        .newsletter-box input::placeholder {
            color: rgba(255, 255, 255, 0.6) !important;
        }

.newsletter-btn {
    background: #ffffff !important;
    color: var(--purple) !important;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-circle {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff !important;
    transition: 0.3s;
    margin-right: 10px;
    text-decoration: none !important;
}

    .social-circle:hover {
        background: #ffffff !important;
        color: var(--purple) !important;
    }.footer-gradient .border-top {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.footer-gradient .copyright-text {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* --- JOB CARD & GRID STYLES (Fixed Hover & Responsive) --- */
.job-card-grid {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    position: relative;
}

    /* THE PURPLE HOVER EFFECT */
    .job-card-grid:hover {
        transform: translateY(-8px);
        border-color: var(--purple) !important;
        box-shadow: 0 15px 35px rgba(139, 47, 219, 0.15);
        background-color: #fdfbff; /* Subtle purple tint */
    }

.btn-outline-purple {
    border: 2px solid var(--purple) !important;
    color: var(--purple) !important;
    background: transparent !important;
    font-weight: 600;
}

    .btn-outline-purple:hover {
        background: var(--purple-light) !important;
    }

.company-logo-sm {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    padding: 5px;
    background: #f8f9fa;
    object-fit: contain;
}

.job-type-badge {
    background: var(--purple-light);
    color: var(--purple);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.job-title-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: block;
    margin-top: 15px;
}

.company-name-text {
    color: var(--pink);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.job-meta-grid {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
}

/* --- JOBS OUTER BOX (Fixed Responsive) --- */
.jobs-main-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.jobs-main-wrapper:hover {
    transform: translateY(-5px);
    border-color: var(--purple);
}
.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .course-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }


/* --- SECTION HEADINGS --- */
/* --- SECTION HEADINGS --- */
.section-title-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

    .section-title-main::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
        border-radius: 10px;
    }

.text-center .section-title-main::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple);
    margin-bottom: 8px;
    display: block;
}


/* State when button is active/selected */
/* --- FIXED JOB TOGGLE BUTTONS --- */
.job-toggle-container {
    display: inline-flex;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 50px;
    border: 1px solid #eee;
}

.btn-toggle-active {
    background: linear-gradient(90deg, var(--grad-start) 0%, var(--grad-end) 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(139, 47, 219, 0.2);
    font-weight: 600;
}

.btn-toggle-inactive {
    background: transparent !important;
    color: var(--muted) !important;
    border: none !important;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-toggle-inactive:hover {
        color: var(--purple) !important;
    }

/* --- RESPONSIVE JOB CARD GRID --- */
.job-card-grid {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
}

    /* PURPLE HOVER EFFECT */
    .job-card-grid:hover {
        transform: translateY(-10px);
        border-color: var(--purple) !important;
        box-shadow: 0 20px 40px rgba(139, 47, 219, 0.12);
    }

/* Image responsiveness inside card */
.company-logo-sm {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: contain;
    background: #f8f9fa;
}

.company-logo-custom {
    width: 100px; /* Increased size */
    height: 100px; /* Increased size */
    border-radius: 14px;
    padding: 10px; /* More breathing room for the logo */
    background: #ffffff; /* Pure white background for the logo box */
    object-fit: contain;
    border: 1px solid #f0f0f0; /* Soft border around the logo */
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); /* Tiny shadow for depth */
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 991px) {
    .jobs-main-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
        margin-top: -60px !important;
    }

    .section-title-main {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .jobs-main-wrapper {
        padding: 20px 14px;
        border-radius: 16px;
        margin-top: -45px !important;
    }
}
/* <-- this closing brace was missing */

@media (max-width: 480px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
        max-width: 100%;
    }

    .jobs-main-wrapper {
        padding: 16px 12px;
        border-radius: 14px;
        margin-top: -35px !important;
    }
}.search-container {
    background: #fff;
    border-radius: 100px;
    padding: 12px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 20;
    margin-top: -40px; /* Pulls it up to float over the next section */
}

/* --- PRESERVED INTERNAL STYLES (Job Cards, etc) --- */
/*.jobs-main-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}*/

.job-card-grid {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    .job-card-grid:hover {
        transform: translateY(-10px);
        border-color: var(--purple) !important;
        box-shadow: 0 20px 40px rgba(139, 47, 219, 0.15);
    }

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(120deg, var(--purple) 0%, var(--pink) 100%) !important;
        padding: 20px;
        border-radius: 20px;
        margin-top: 15px;
    }

    .search-container {
        border-radius: 20px;
        margin-top: -30px;
        padding: 20px;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

        .search-container .border-start {
            border: none !important;
            border-top: 1px solid #eee !important;
            margin-top: 10px;
            padding-top: 10px;
        }

    .section-title-main {
        font-size: 1.8rem;
    }
}


/* --- UI COMPONENTS --- */
.text-gradient {
    background: linear-gradient(90deg, var(--grad-start) 0%, var(--grad-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-soft {
    background-color: #f8f9fc;
}

/* --- RESPONSIVE FIXES --- */
/* --- RESPONSIVE FIXES --- */
@media (max-width: 991px) {
    /* Updated to match your Purple/Pink Gradient */
    .navbar-collapse {
        background: linear-gradient(120deg, var(--purple) 0%, var(--pink) 100%) !important;
        padding: 20px;
        border-radius: 20px;
        margin-top: 15px;
        box-shadow: 0 15px 40px rgba(139, 47, 219, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

        /* Ensure Nav Links are white on the mobile gradient background */
        .navbar-collapse .nav-link {
            color: #ffffff !important;
            text-align: center;
            padding: 12px !important;
        }

    /* Buttons inside the mobile menu */
    .header-btn-action {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        gap: 10px;
    }

        .header-btn-action .btn-login {
            color: #ffffff !important;
        }

        /* Make the Register button white so it stands out on the purple menu */
        .header-btn-action .btn-register {
            background: #ffffff !important;
            color: var(--purple) !important;
        }

    .search-container {
        border-radius: 20px;
        margin-top: -20px;
        padding: 20px;
    }

        .search-container .border-start {
            border: none !important;
        }

    .jobs-main-wrapper {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .section-title-main {
        font-size: 1.8rem;
    }
}

.btn-light.text-muted {
    background: #f8f9fa !important;
    color: #6c757d !important;
    border: 1px solid #dee2e6 !important;
}

/* --- EMPLOYER LOGO GRID (Desktop) & SCROLL (Mobile) --- */
/* --- EMPLOYER LOGO SCROLL (All Screens) --- */
.logo-scroll-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap; /* single row, no wrap */
    overflow-x: auto; /* horizontal scroll */
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* hide scrollbar (Firefox) */
    padding: 10px 5px 20px;
    mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

    .logo-scroll-container::-webkit-scrollbar {
        display: none;
    }
/* hide scrollbar (Chrome/Safari) */

.employer-logo {
    flex: 0 0 auto;
    max-height: 35px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s ease;
}

    .employer-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }
/* --- HORIZONTAL LOGO SCROLL FOR MOBILE --- */

@media (max-width: 767px) {
    /* Mobile Only: Force logos into a single-line horizontal scroll */
    .logo-scroll-container {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        padding: 10px 10px 30px 10px;
        scrollbar-width: none;
    }

        .logo-scroll-container::-webkit-scrollbar {
            display: none;
        }

        .logo-scroll-container img {
            flex: 0 0 auto;
            max-height: 28px;
        }

    .job-toggle-container {
        width: 100%;
        display: flex;
    }

        .job-toggle-container .btn {
            flex: 1;
            font-size: 12px;
        }
}
/* Ensure the employer section doesn't have overflow issues */
.employer-section-wrapper {
    overflow: hidden;
    width: 100%;
}
/* Contact Specific Card Styling */
.contact-card-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    transition: 0.3s;
    border: 1px solid transparent;
}

    .contact-card-item:hover {
        background: #fff;
        border-color: var(--purple-light);
        box-shadow: 0 10px 25px rgba(139, 47, 219, 0.08);
        transform: translateX(5px);
    }

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: var(--purple-light);
    color: var(--purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-link-item {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none !important;
}

    .social-link-item:hover {
        background: var(--purple);
        color: #fff !important;
        transform: translateY(-3px);
        border-color: var(--purple);
    }

.login-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(139, 47, 219, 0.1);
    border: 1px solid var(--border-color);
    margin-top: -60px; /* Overlaps background for modern look */
}

    .login-card:hover {
        transform: translateY(-10px);
        border-color: var(--purple) !important;
        box-shadow: 0 20px 40px rgba(139, 47, 219, 0.12);
    }

.input-icon-group {
    position: relative;
    margin-bottom: 20px;
}

    .input-icon-group i {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--muted);
        transition: 0.3s;
    }

    .input-icon-group .form-control {
        padding-left: 50px;
        height: 55px;
        border-radius: 12px;
        border: 1px solid #eee;
        background: #fcfcfc;
        font-size: 15px;
    }

        .input-icon-group .form-control:focus {
            background: #fff;
            border-color: var(--purple);
            box-shadow: 0 0 0 4px var(--purple-light);
        }

            .input-icon-group .form-control:focus + i {
                color: var(--purple);
            }

.login-illustration {
    max-height: 120px;
    margin-bottom: 20px;
}

.login-hero {
    background: linear-gradient(120deg, var(--purple) 0%, var(--pink) 100%) !important;
    padding-top: 100px !important;
    padding-bottom: 120px !important;
}

.login-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    margin-top: -100px; /* Strong overlap effect */
    position: relative;
    z-index: 10;
    transition: 0.3s ease;
}

    .login-card:hover {
        transform: translateY(-5px);
        border-color: var(--purple);
    }

    /* Top Accent Line (Course Section Style) */
    .login-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
        border-radius: 24px 24px 0 0;
    }


/* Registrataion form*/
/* Registrataion form*/
/* Registrataion form*/
/* Registrataion form*/
/* Force Hero Gradient for this page */
.register-hero {
    background: linear-gradient(120deg, var(--purple) 0%, var(--pink) 100%) !important;
    padding-top: 80px !important;
    padding-bottom: 120px !important;
}

.register-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    margin-top: -100px; /* Overlap effect */
    position: relative;
    z-index: 10;
}

    /* Top Accent Bar */
    .register-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
        border-radius: 30px 30px 0 0;
    }

/* Form Styling */
.form-label-custom {
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control-custom {
    border-radius: 12px !important;
    border: 1.5px solid #eee !important;
    padding: 12px 18px !important;
    font-size: 15px !important;
    background: #f9fafb !important;
    transition: 0.3s !important;
}

    .form-control-custom:focus {
        border-color: var(--purple) !important;
        background: #fff !important;
        box-shadow: 0 0 0 4px var(--purple-light) !important;
    }

/* Skill Box Styling */
.skill-listbox {
    border-radius: 12px !important;
    border: 1.5px solid #eee !important;
    padding: 10px !important;
    background: #f9fafb !important;
}

.btn-transfer {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    transition: 0.3s;
}

/* Validation Styling */
.ValidationError, .aspNetDisabled {
    font-size: 11px;
    color: #dc3545;
    font-weight: 600;
}

@media (max-width: 768px) {
    .register-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .section-title-main {
        font-size: 1.8rem;
    }
}

*, *::before, *::after {
    box-sizing: border-box;
}

.register-card,
.login-card {
    max-width: 100%;
    overflow-x: hidden;
}

.form-control-custom,
.form-select.form-control-custom,
.skill-listbox,
textarea.form-control-custom {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    white-space: normal !important;
}

/* ASP.NET FileUpload renders a native <input type="file"> that
   often ignores form-control width rules entirely */
input[type="file"].form-control-custom {
    width: 100% !important;
    max-width: 100%;
    padding: 10px !important;
    font-size: 13px !important;
}

/* Prevent uppercase + letter-spacing labels from being wider
   than their column on very narrow phones (≤380px) */
.form-label-custom {
    white-space: normal;
    word-break: break-word;
    letter-spacing: 0.3px;
}

/* Row/column gutters can push a column's content past 100vw
   on some Android WebViews; force every direct form column
   to respect its parent width */
.register-card .row > [class*="col-"],
.login-card .row > [class*="col-"] {
    max-width: 100%;
}

.btn-gradient {
    background: linear-gradient(90deg, var(--grad-start) 0%, var(--grad-end) 100%) !important;
    border: none !important;
}

@media (max-width: 576px) {
    .register-card,
    .login-card {
        padding: 24px 16px !important;
        border-radius: 18px !important;
    }

    .form-label-custom {
        font-size: 12px;
        letter-spacing: 0.2px;
    }

    .form-control-custom {
        padding: 10px 14px !important;
        font-size: 14px !important;
    }
    /* Captcha row often overflows because the image + refresh
       button + input sit inline; stack them on very small screens */
    .col-12.py-4.border-top .row.g-3 {
        flex-direction: column;
        align-items: stretch !important;
    }

    .col-12.py-4.border-top .col-auto,
    .col-12.py-4.border-top .col-md-4 {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
}

/* Profile Specific Dashbord Styling */
.profile-card-left {
    text-align: center;
    padding: 30px;
    border-right: 1px solid #f0f0f0;
}

.profile-photo-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
}

.profile-img-main {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(139, 47, 219, 0.15);
}

.photo-edit-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: var(--purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid #fff;
    transition: 0.3s;
}

    .photo-edit-badge:hover {
        background: var(--pink);
        transform: scale(1.1);
    }

.profile-management-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.dashboard-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.dashboard-btn-outline {
    background: #fff;
    color: var(--text);
    border: 1px solid #eee;
}

    .dashboard-btn-outline:hover {
        background: var(--purple-light);
        color: var(--purple);
        border-color: var(--purple-light);
    }

/* Detail Rows */
.info-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
}

    .info-row:last-child {
        border-bottom: none;
    }

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    color: var(--purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 15px;
}

.info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--muted);
    display: block;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

@media (max-width: 991px) {
    .profile-card-left {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
}
/* --- Fix for Skill Breaking Design --- */
.info-row {
    display: flex;
    align-items: flex-start; /* Changed from 'center' to 'flex-start' so icons stay at the top */
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
    width: 100%;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    display: block;
    /* This is the magic fix for long text */
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.5;
}

/* Optional: Make skills look like small tags/badges automatically */
.skills-text {
    line-height: 2; /* Adds space between lines of skills */
    color: var(--purple); /* Makes skills stand out slightly */
}

@media (max-width: 767px) {
    .info-row {
        gap: 10px; /* Reduces gap on mobile */
    }

    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}
/* Modern Table Styling */
.log-table-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    background: #fff;
}

.table-custom {
    width: 100%;
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

    .table-custom thead {
        background-color: var(--purple-light);
    }

    .table-custom th {
        color: var(--purple);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 1px;
        padding: 18px 20px;
        border-bottom: 2px solid #eee;
    }

    .table-custom td {
        padding: 15px 20px;
        vertical-align: middle;
        color: var(--text);
        border-bottom: 1px solid #f8f9fa;
        font-size: 14px;
    }

    .table-custom tbody tr:hover {
        background-color: #fdfbff;
    }

.desc-text {
    line-height: 1.6;
    color: var(--muted);
    word-break: break-word; /* Prevents long text from breaking layout */
}

/* Responsive Table Wrapper */
.table-responsive-custom {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .table-custom th, .table-custom td {
        padding: 12px 15px;
        min-width: 120px; /* Ensures columns don't squash on mobile */
    }

        .table-custom td:last-child {
            min-width: 250px; /* Give more space to description on mobile */
        }
}
.status-badge-applied {
    background: #e6fffa;
    color: #059669;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid #b2f5ea;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

