/* =========================================
   1. Global Typography & Reset
   ========================================= */
:root {
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --color-primary: #007bff;
    --color-success: #28a745;
}

body {
    font-family: var(--font-body);
    color: #333;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6, 
.brand-title, 
.badge-custom {
    font-family: var(--font-heading);
    font-weight: 700;
}

.custom-container {
    max-width: 1295px;
}
.custom-container2 {
    max-width: 1100px;
	margin:0 auto;
}
/* =========================================
   2. Navbar Styling
   ========================================= */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background: rgba(255, 255, 255, 0.98);
}

.brand-title {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.nav-link {
    font-weight: 500;
    color: #444;
    margin: 0 12px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-primary);
}

.btn {
    font-weight: 600;
    border-radius: 50px;
}

.profile-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* =========================================
   3. Hero Section Styling
   ========================================= */
.hero-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #e6f7ff 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
    /* Ensure background blends into next section */
    margin-bottom: -1px; 
}

.badge-custom {
    background-color: #d1fae5;
    color: #065f46;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    letter-spacing: -1px;
    color: #1a1a1a;
    line-height: 1.2;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 90%;
}

.search-box {
    border: 1px solid rgba(0,0,0,0.05);
}

.input-group-text {
    color: #999;
}

.form-control::placeholder {
    color: #aaa;
    font-size: 0.95rem;
    font-family: var(--font-body);
}

@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid #eee;
    }
}

.stat-badge {
    border: 1px solid #f0f0f0;
}

.floating-card {
    bottom: 30px;
    right: 20px;
    min-width: 220px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* =========================================
   4. CTA Section Styling (New)
   ========================================= */
.cta-section {
    /* Continue the gradient from hero or keep white */
    background: linear-gradient(180deg, #e6f7ff 0%, #ffffff 100%);
    padding-top: 2rem;
}

.cta-card {
    border-radius: 100px; /* Pill shape */
    padding: 2.5rem 3.5rem;
    transition: all 0.3s ease;
    color: #fff;
    overflow: hidden;
    position: relative;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    color: #fff;
}

.cta-blue {
    background: linear-gradient(90deg, #0d6efd 0%, #004bb5 100%);
}

.cta-green {
    background: linear-gradient(90deg, #22c55e 0%, #10b981 100%);
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.cta-content p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.9;
    font-family: var(--font-body);
}

/* Icon adjustments */
.cta-icon i {
    transition: transform 0.3s ease;
}

.cta-card:hover .cta-icon i {
    transform: scale(1.1) rotate(-5deg);
}

/* =========================================
   5. Responsive Adjustments
   ========================================= */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding-top: 2rem;
    }
    .hero-title { font-size: 2.5rem; }
    .lead { margin: 0 auto 2rem auto; }
    .search-box { max-width: 100%; }
    .border-start-md {
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 10px;
        margin-top: 10px;
    }
    .floating-card { display: none; }
    
    /* Navbar tweaks */
    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    /* CTA Section Mobile */
    .cta-card {
        padding: 2rem;
        border-radius: 25px; /* Less rounded on mobile */
        flex-direction: column;
        text-align: center;
    }
    .cta-content { margin-bottom: 1.5rem; }
}

/* =========================================
   6. Featured Jobs Section (New)
   ========================================= */

/* Section Typography */
.subheading-green {
    color: #22c55e; /* Green matching the image */
    font-family: var(--font-body); /* Using Inter */
    font-weight: 500;
    font-size: 0.9rem;
}

/* Job Card Styling */
.job-card {
    border: 1px solid #bbf7d0; /* Light green border */
    background: #f0fdf4; /* Very light green background tint */
    /* If you prefer pure white background with green glow as per some screens:
       background: #fff;
       box-shadow: 0 0 0 1px #bbf7d0; 
    */
    background: linear-gradient(to bottom right, #fafffc, #f0fff4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.15); /* Greenish shadow on hover */
    border-color: #22c55e;
}

/* Job Content Typography */
.job-content h5 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #111;
}

/* Logo Box Styling */
.job-logo-box {
    width: 100px;
    height: 100px;
    min-width: 100px; /* Prevent shrinking */
    border: 1px solid #eee;
}

.job-logo-box img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
}

/* View All Button (specific tweak if needed, otherwise uses global btn) */
.btn-primary.rounded-pill {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

/* Responsive adjustments for the card */
@media (max-width: 576px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .job-logo-box {
        margin-top: 1rem;
        align-self: flex-start;
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
}

/* =========================================
   7. Trainer Jobs Section (New)
   ========================================= */

.trainer-card {
    border: 1px solid #bbf7d0; /* Mint green border */
    /* Fallback background if image doesn't load */
    background: linear-gradient(90deg, #dcfce7 0%, #f0fdf4 40%, #ffffff 100%); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
}

/* Background Image Overlay */
.trainer-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%; /* Cover right side */
    /* Replace the URL below with your actual doctor background image */
    background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=2068&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* Make it faint */
    /* Create a smooth fade from the solid color on the left to the image on the right */
    mask-image: linear-gradient(to right, transparent, black); 
    -webkit-mask-image: linear-gradient(to right, transparent, black);
    pointer-events: none; /* Ensure text is clickable */
}

/* Logo Box styling specific to this card */
.trainer-logo-box {
    width: 90px;
    height: 90px;
    min-width: 90px;
}

.trainer-logo-box img {
    max-height: 100%;
    max-width: 100%;
}

/* View Details Button */
.view-details-btn {
    background-color: #fff;
    color: #0d6efd; /* Bootstrap Primary Blue */
    font-family: var(--font-body);
}

.view-details-btn:hover {
    background-color: #0d6efd;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trainer-bg-overlay {
        width: 100%;
        mask-image: linear-gradient(to bottom, transparent, black);
        -webkit-mask-image: linear-gradient(to bottom, transparent, black);
        opacity: 0.1;
    }
    
    .view-details-btn {
        width: 100%;
        margin-top: 1rem;
    }
}

/* =========================================
   8. Category Section (New)
   ========================================= */

/* The Pill Container */
.category-pill {
    background-color: #e3efff; /* Light blue background */
    color: #267dfd; /* Bright blue text */
    padding: 8px 25px 8px 8px; /* Extra padding on right for text balance */
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent; /* Prevents layout shift on hover border */
}

/* Hover Effect */
.category-pill:hover {
    background-color: #d0e4ff;
    color: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(38, 125, 253, 0.15);
}

/* The White Circle Icon Placeholder */
.cat-icon-circle {
    width: 35px;
    height: 35px;
    min-width: 35px; /* Prevent squishing */
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    /* If you want to put icons inside later, uncomment below: */
    /* display: flex; align-items: center; justify-content: center; */
}

/* =========================================
   9. Latest Openings Section (New)
   ========================================= */

/* Card Styling */
.opening-card {
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.opening-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
    border-color: #bbf7d0; /* Subtle green hint on hover */
}

/* Custom Light Green Badge Background */
.bg-light-green {
    background-color: #dcfce7;
}

/* Logo Box in Card Footer */
.opening-logo-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
}

/* Button Hover State Tweak */
.opening-card .btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

/* =========================================
   10. How It Works Section
   ========================================= */

.how-it-works-section {
    background-color: #f8fbff; /* Very faint blue background */
}

/* Step Card Styling */
.step-card {
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06) !important;
    border-color: #e3efff;
}

/* Circular Icon Container */
.step-icon-circle {
    width: 100px;
    height: 100px;
    background-color: #f0f7ff; /* Light blue tint */
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon-circle {
    transform: scale(1.1);
    background-color: #e3efff;
}

.step-card h4 {
    font-family: var(--font-heading);
    color: #1a1a1a;
}

.step-card p {
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
    .step-card {
        padding: 3rem 1.5rem !important;
    }
}

.logo-box {max-width:80px;}


/* Card Styling */
.detail-section, .sidebar-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.02);
}

.detail-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Sidebar Specifics */
.sidebar-card h4 {
    font-size: 1.1rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.form-control {
    background: #f8f9fb;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 0.9rem;
}

.form-control:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    border-color: #0d6efd;
}

/* Map adjustment */
.map-container iframe {
    display: block;
    filter: saturate(1.2);
}



/* =========================================
   11. Footer Section
   ========================================= */

.footer-section {
    background-color: #1e242c; /* Dark navy/slate background from image */
    color: #ffffff;
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

/* Footer Link Styling */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--color-primary);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Social Icon Styling */
.social-link {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #1e242c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Icon Styling */
.contact-icon {
    font-size: 1.2rem;
    color: #ffffff;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
    .footer-section {
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* --- CTA Pill Cards --- */
.cta-pill {
    position: relative;
    border-radius: 100px; /* Extreme radius for pill shape */
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    overflow: hidden;
    height: 100%;
    min-height: 110px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.cta-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Gradients */
.cta-blue {
    background: linear-gradient(90deg, #0050d5 0%, #0066ff 100%);
}

.cta-green {
    background: linear-gradient(90deg, #10b981 0%, #22c55e 100%);
}

/* Text Area */
.cta-text-content {
    z-index: 2;
    flex: 1;
    padding-right: 15px;
}

.cta-text-content h3 {
    font-size: 1.75rem !important;
	color:#FFFFFF !important;
}

/* --- Custom Icons --- */
.icon-composite {
    position: relative;
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* SEARCH JOB ICON LOGIC */
.search-composite .doc-icon {
    position: relative;
    color: #FFC107; /* Bootstrap Warning Yellow */
    font-size: 48px;
    line-height: 1;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-composite .doc-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    font-size: 10px;
    font-weight: 800;
    color: #e6a700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

.search-composite .search-icon {
    position: absolute;
    font-size: 24px;
    color: #FFC107;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    bottom: -5px;
    right: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    -webkit-text-stroke: 1px #FFC107; /* Thicken the icon slightly */
}

/* POST JOB ICON LOGIC */
.plane-composite .plane-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.4); /* Semi-transparent white */
    transform: rotate(45deg) translate(-5px, 5px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .cta-pill {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        border-radius: 30px; /* Less round on mobile to save space */
    }
    .cta-text-content {
        padding-right: 0;
        margin-bottom: 15px;
    }
}








/* =========================================
   12. Job Detail Hero Section (New)
   ========================================= */

.job-hero-section {
    /* Matches the soft green glow in the image */
    background: linear-gradient(135deg, #e0f7fa 0%, #e8f5e9 50%, #d1fae5 100%);
    padding: 60px 0 80px 0;
    position: relative;
}

/* --- Main White Card --- */
.job-hero-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px; /* Space between card and stats */
    flex-wrap: wrap;
    gap: 20px;
}

.job-hero-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

/* Logo Styling */
.job-hero-logo {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-size: 32px;
    color: #22c55e; /* Green tooth color */
}

/* Text Details */
.job-hero-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-job-type {
    background-color: #dcfce7;
    color: #166534;
    align-self: flex-start;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
}

.job-hero-title {
    font-size: 2rem;
    color: #111;
    margin: 5px 0;
    line-height: 1.2;
}

.job-hero-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.job-hero-meta li {
    font-family: var(--font-body);
    color: #555;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-hero-meta li i {
    color: var(--color-primary); /* Uses your global blue */
}

/* --- Action Buttons --- */
.job-hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-apply-now {
    background-color: var(--color-primary); /* #007bff */
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-apply-now:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    color: white;
}

.btn-action-outline {
    background: transparent;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-action-outline:hover {
    background: #f0f7ff;
}

/* --- Bottom Stats Grid --- */
.job-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
    /* Optional: Slight darker background similar to image */
    background: linear-gradient(to bottom right, rgba(230, 240, 240, 0.7), rgba(255,255,255,0.4));
}

.stat-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.stat-icon-box {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-icon-box.blue-icon {
    background-color: #0d6efd;
    color: #fff;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 2px;
    font-weight: 500;
}

.stat-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
    line-height: 1.2;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
    .job-hero-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-hero-actions {
        width: 100%;
        justify-content: flex-start;
        border-top: 1px solid #eee;
        padding-top: 20px;
        margin-top: 10px;
    }

    .job-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .job-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .job-hero-title {
        font-size: 1.5rem;
    }
    
    .job-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .job-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
}





/* =========================================
   13. Related Opportunities Section (New)
   ========================================= */

.related-opps-section {
    padding: 80px 0;
    background-color: #ffffff; /* Or #fcfcfc if you want subtle contrast */
}

/* Header Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-top: 5px;
}

/* Card Styling */
.related-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 24px; /* Large rounded corners per image */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
    /* Subtle shadow initially */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03); 
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #e6e6e6;
}

/* Card Body Area */
.related-card-body {
    padding: 25px 30px 15px 30px;
}

.badge-related {
    background-color: #dcfce7; /* Light mint green */
    color: #166534; /* Dark green text */
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.related-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.related-location {
    color: #6c757d;
    font-size: 0.95rem;
    font-family: var(--font-body);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-location i {
    color: #6c757d; /* Icon color matches text */
}

/* Divider Line */
.related-divider {
    height: 1px;
    background-color: #f0f0f0;
    margin: 10px 30px;
}

/* Card Footer Area */
.related-card-footer {
    padding: 15px 30px 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Logo Box styling */
.related-logo-box {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    color: #22c55e; /* Green icon color */
    font-size: 20px;
}

/* Qualification Text (BDS) */
.qualification-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Button Styling */
.btn-related-outline {
    background: #fff;
    border: 1px solid #0d6efd;
    color: #0d6efd;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-related-outline:hover {
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    .related-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .footer-left {
        width: 100%;
        justify-content: flex-start;
    }
    .btn-related-outline {
        width: 100%;
        text-align: center;
    }
}


/* =========================================
   14. Login Page Styling (Exact Match)
   ========================================= */

.login-section {
    /* Subtle gradient background similar to image */
    background: linear-gradient(180deg, #f8fcfd 0%, #f2f6f9 100%);
   
    padding: 90px 0;
}

/* --- Left Side Content --- */
.bg-blue-light {
    background-color: #e0eaff; /* Light blue badge bg */
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.font-heading {
    font-family: var(--font-heading); /* Montserrat */
}

.login-features-list li {
    font-size: 1rem;
    line-height: 1.6;
}

.bullet-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #333;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

/* --- Login Card --- */
.login-card {
    border: 1px solid rgba(0,0,0,0.01);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08); /* Soft, deep shadow */
}

/* Form Inputs */
.login-card .form-control {
    background-color: #f9fafb !important; /* Very light gray bg */
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #4b5563;
}

.login-card .form-control:focus {
    background-color: #fff !important;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.login-card .form-control::placeholder {
    color: #9ca3af;
}

/* Checkbox styling */
.login-card .form-check-input {
    width: 1.1em;
    height: 1.1em;
    margin-top: 0.15em;
    border-color: #d1d5db;
}

.login-card .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Main Button */
.login-card .btn-primary {
    background-color: #0d6efd; /* Bootstrap Blue match */
    border: none;
    font-size: 1rem;
    transition: all 0.2s ease;
    /* Specific shadow for button */
    box-shadow: 0 4px 6px -1px rgba(13, 110, 253, 0.1), 0 2px 4px -1px rgba(13, 110, 253, 0.06);
}

.login-card .btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(13, 110, 253, 0.2);
}

/* Responsive */
@media (max-width: 991.98px) {
    .login-section {
        padding: 40px 0;
    }
    
    .login-card {
        margin-top: 30px;
        padding: 2rem !important;
    }
}






/* =========================================
   15. Registration Page Styling (New)
   ========================================= */

.register-section {
    min-height: calc(100vh - 80px); /* Fill screen minus navbar */
    background: linear-gradient(135deg, #f8fbff 0%, #f1f4f9 100%);
    padding: 60px 0;
}

/* Badge Styling */
.reg-badge {
    background-color: #e0e7ff; /* Soft indigo/blue bg */
    color: #4338ca; /* Deep indigo text */
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

/* Left Side List Styling */
.reg-feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #4b5563; /* Gray-600 */
    font-size: 0.95rem;
    line-height: 1.5;
}

.reg-feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333; /* Dark bullet */
    font-weight: bold;
}

/* Form Card Styling */
.register-card {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid #fff;
}

/* Toggle Switch Styling */
.account-type-switch {
    background-color: #f3f4f6; /* Gray-100 background */
}

.switch-btn {
    padding: 10px;
    border: none;
    transition: all 0.3s ease;
}

.switch-btn.active {
    background-color: #0d6efd; /* Bootstrap Primary Blue */
    color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.switch-btn:hover:not(.active) {
    background-color: #e5e7eb;
}

/* Input Fields Styling */
.reg-input {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 14px 16px;
    border-radius: 12px; /* Soft rounding like image */
    font-size: 0.95rem;
    color: #1f2937;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.reg-input:focus {
    background-color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.reg-input::placeholder {
    color: #9ca3af;
}

/* Form Select specific tweak */
select.reg-input {
    cursor: pointer;
}

/* Checkbox alignment */
.form-check-input {
    margin-top: 0.25em;
    cursor: pointer;
}

/* Submit Button */
.reg-submit-btn {
    font-size: 1rem;
    background-color: #0d6efd;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(13, 110, 253, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reg-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(13, 110, 253, 0.3);
    background-color: #0b5ed7;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .register-section {
        padding: 40px 0;
        text-align: left;
    }
    
    .register-card {
        margin-top: 40px;
        padding: 1.5rem !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Add/Update this in style.css */
.switch-btn.active {
    background-color: #0d6efd; 
    color: #fff !important; /* Forces text to white */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


/* =========================================
   16. FAQ Page Styling (New)
   ========================================= */

/* --- 1. FAQ Hero Section --- */
.faq-hero-section {
    position: relative;
    /* Height matches the visual proportion in image */
    padding: 100px 0 100px 0; 
    background-color: #e0f2f1; /* Fallback color */
    /* Create the green gradient overlay */
    background: linear-gradient(90deg, #d3e9ea 0%, #e0f7ec 45%, #e8f5e9 100%);
}

.faq-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    /* Using a dental chair/light placeholder image */
    background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=2068&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    /* The mask creates the fade effect from solid color to image */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 100%);
    opacity: 0.5; /* Keeps it subtle like the design */
    z-index: 0;
}

.font-heading {
    font-family: var(--font-heading);
}

/* --- 2. FAQ Content Layout --- */
.bg-light-gray {
    background-color: #f8fcfd; /* Very subtle blue-white background */
}

.mw-800 {
    max-width: 800px;
}

/* --- 3. Custom Accordion Styling --- */
/* Remove default Bootstrap background and borders */
.custom-faq-accordion .accordion-item {
    background-color: #fff;
    border: none;
    border-radius: 16px !important; /* Rounded corners */
    margin-bottom: 20px; /* Space between items */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft shadow */
    overflow: hidden;
}

/* Button Styling */
.custom-faq-accordion .accordion-button {
    background-color: #fff;
    border: none;
    box-shadow: none !important; /* Removes blue focus glow */
    padding: 24px 30px;
    font-size: 1.05rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

/* Button when item is OPEN */
.custom-faq-accordion .accordion-button:not(.collapsed) {
    background-color: #fff; /* Keep white */
    color: #000; /* Darker text */
    /* Optional: Add a subtle bottom border if you want separation between Q and A */
    /* border-bottom: 1px solid #f0f0f0; */ 
}

/* Body Styling */
.custom-faq-accordion .accordion-body {
    padding: 0 30px 24px 30px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Tweak the chevron icon direction/color if needed */
.custom-faq-accordion .accordion-button::after {
    background-size: 1rem;
    opacity: 0.6;
}

/* --- 4. Footer Help Box --- */
.faq-help-box {
    margin-top: 20px;
    padding-left: 10px;
}

.faq-help-box a {
    color: #0d6efd; /* Your primary blue */
    transition: color 0.2s;
}

.faq-help-box a:hover {
    color: #0a58ca;
    text-decoration: underline !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .faq-hero-section {
        padding: 60px 0;
    }
    .faq-bg-image {
        width: 100%;
        opacity: 0.15; /* Fainter on mobile so text is readable */
        -webkit-mask-image: linear-gradient(to bottom, transparent, black);
    }
    .custom-faq-accordion .accordion-button {
        padding: 18px 20px;
        font-size: 1rem;
    }
}



/* --- Contact Page Specific Styles --- */

.dc-contact-hero {
    position: relative;
    padding: 100px 0 80px 0;
    background-color: #e0f2f1;
    background: linear-gradient(90deg, #d4f2ea 0%, #e0f7ec 50%, #f1fdf4 100%);
    overflow: hidden;
}

.dc-hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=2068&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
}

.dc-contact-main {
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.dc-info-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bg-light-blue {
    background-color: #e7f1ff;
}

.rounded-5 {
    border-radius: 30px !important;
}

/* Form Styling */
.dc-form-input {
    background-color: #f8f9fb;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 0.95rem;
    color: #4b5563;
    transition: all 0.3s ease;
}

.dc-form-input:focus {
    background-color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.dc-form-input::placeholder {
    color: #9ca3af;
}

.dc-btn-submit {
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
    font-size: 1.1rem;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .dc-contact-hero {
        padding: 60px 0;
        text-align: center;
    }
    .dc-hero-overlay {
        width: 100%;
        opacity: 0.1;
        mask-image: none;
    }
    .breadcrumb {
        justify-content: center;
    }
}

/* --- About Page Specific Styles --- */

.dc-about-hero {
    position: relative;
    background: linear-gradient(90deg, #dcfce7 0%, #f0fdf4 50%, #ffffff 100%);
    padding: 80px 0 !important;
    overflow: hidden;
}

.dc-about-hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('img/dental-lamp.png'); /* Use the dental lamp image from your first file */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.3;
}

.dc-about-intro {
    background: #ffffff;
}

.dc-about-description p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.dc-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
    transition: transform 0.3s ease;
}

.dc-process-step:hover .dc-step-icon {
    transform: translateY(-5px) scale(1.05);
}

.dc-expertise-list li {
    font-weight: 500;
    margin-bottom: 10px;
    color: #444;
}

.dc-about-expertise {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .dc-about-hero {
        text-align: left;
        padding: 60px 0 !important;
    }
    .dc-about-hero-overlay {
        width: 100%;
        opacity: 0.1;
    }
    .dc-about-intro, .dc-about-expertise {
        text-align: center;
    }
    .dc-expertise-list {
        text-align: left;
        display: inline-block;
        margin-bottom: 20px;
    }
}

/* --- Dashboard Specific Styles --- */
.db-sidebar {
    position: sticky;
    top: 100px;
}

.db-side-nav .nav-link {
    margin: 0;
    font-size: 0.9rem;
    padding: 10px 20px;
    color: #444;
    transition: all 0.3s ease;
}

.db-side-nav .nav-link:hover {
    background-color: #f8f9fa;
    color: var(--color-primary);
}

.db-side-nav .nav-link.active {
    background-color: #e7f1ff;
    color: #0d6efd;
    font-weight: 600;
}

.db-stat-pill {
    transition: transform 0.3s ease;
}

.db-stat-pill:hover {
    transform: translateY(-5px);
}

.db-job-card {
    transition: all 0.3s ease;
    background-color: #fff;
    height: 100%;
}

.db-job-card:hover {
    border-color: #0d6efd !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bg-light-blue-tint {
    background-color: #f0f7ff;
}

/* Toggle Switch Styling Tweak to match image */
.form-check-input:checked {
    background-color: #22c55e;
    border-color: #22c55e;
}

.db-section-box {
    border: 1px solid rgba(0,0,0,0.05);
}

/* Negative margin for profile image over banner */
.mt-n5 {
    margin-top: -40px !important;
}

@media (max-width: 991px) {
    .db-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
}

/* =========================================
   Pricing Section Styling (Unique Classes)
   ========================================= */

.dc-plan-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.dc-plan-card {
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.dc-plan-card:hover {
    transform: translateY(-10px);
    border-color: #22c55e;
}

/* Featured Card (Middle) */
.dc-plan-featured {
    border: 2px solid #22c55e;
    background: linear-gradient(to bottom, #ffffff, #f7fff9);
}

.dc-plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #22c55e;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Plan Icon Wrapper */
.dc-plan-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Price Typography */
.dc-plan-price .currency {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    color: #1a1a1a;
}

.dc-plan-price .amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.dc-plan-price .period {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Feature List */
.dc-plan-features li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: #444;
    border-bottom: 1px dashed #eee;
}

.dc-plan-features li:last-child {
    border-bottom: none;
}

.dc-plan-features li i {
    color: #22c55e;
}

/* Responsive Fix */
@media (max-width: 991.98px) {
    .dc-plan-card {
        padding: 2rem !important;
    }
}

/* --- Candidate Profile New Styles --- */
.candidate-profile-view {
    background-color: #f4f9f7 !important; /* Matches the soft green tint */
}

.profile-main-header {
    border: 1px solid #e3f2fd;
}

.profile-avatar-wrapper img {
    border: 4px solid #fff;
}

.bg-success-subtle {
    background-color: #dcfce7 !important;
}

.bg-primary-subtle {
    background-color: #e3efff !important;
}

.profile-content-card {
    border: 1px solid rgba(0,0,0,0.02);
}

.experience-box {
    border: 1px solid #f0f0f0 !important;
    background-color: #fbfcfe;
    transition: 0.3s ease;
}

.experience-box:hover {
    border-color: var(--color-primary) !important;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.candidate-detail-list .border-bottom {
    border-color: #f1f4f9 !important;
}

.sidebar-icon-box {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.rounded-5 {
    border-radius: 2rem !important;
}

/* Form refinement */
.profile-sidebar-card .form-control:focus {
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    border: 1px solid var(--color-primary) !important;
}

@media (max-width: 768px) {
    .profile-main-header {
        flex-direction: column;
        align-items: flex-start !important;
        border-radius: 1.5rem !important;
    }
    .header-action-btns {
        width: 100%;
        margin-top: 1rem;
    }
}



/* Candidate Listing Specific Styles */

.candidate-hero-wrapper {
    background: linear-gradient(135deg, #e6f7ff 0%, #f0fdf4 100%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.listing-search-container {
    border: 1px solid #e0e0e0;
}

.filter-sidebar {
    position: sticky;
    top: 100px;
}

.candidate-list-card {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.candidate-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}

/* Green border for verified candidates */
.verified-border {
    border-left: 4px solid #22c55e !important;
}

/* Pagination Styling */
.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    background: #f8f9fa;
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background-color: var(--color-primary);
    color: #fff;
}

/* Checkbox group spacing */
.filter-check-group .form-check {
    margin-bottom: 12px;
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

@media (max-width: 768px) {
    .listing-search-container {
        border-radius: 20px;
        padding: 15px !important;
    }
    .listing-search-container .border-start {
        border-left: none !important;
        border-top: 1px solid #eee;
        padding-top: 10px;
        margin-top: 10px;
    }
}

/* --- Employer Details Page Styles --- */

.ed-hero-section {
    padding: 100px 0 40px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #e6f7ff 100%);
}

.ed-hero-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.02) !important;
}

.ed-clinic-name {
    font-family: var(--font-heading);
    color: #1a1a1a;
    font-size: 1.8rem;
}

.ed-main-content {
    background-color: #f8fbff;
}

.ed-detail-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.02);
}

.ed-sidebar-card {
    border: 1px solid rgba(0,0,0,0.03) !important;
}

.ed-feature-box {
    transition: all 0.3s ease;
    border-color: #eee !important;
}

.ed-feature-box:hover {
    transform: translateY(-5px);
    border-color: #22c55e !important;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.05);
}

.bg-primary-subtle {
    background-color: #e3efff !important;
}

/* Sidebar snapshot styling */
.ed-sidebar-card label {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Form refinement in Sidebar */
.ed-sidebar-card .form-control {
    background-color: #f8f9fb;
    border: 1px solid #edf2f7;
    border-radius: 10px;
}

.ed-sidebar-card .form-control:focus {
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    border-color: var(--color-primary);
}

/* Image grid in Gallery */
.img-fluid.rounded-3 {
    height: 120px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.img-fluid.rounded-3:hover {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .ed-hero-card {
        text-align: center;
    }
    .ed-hero-actions {
        justify-content: center;
    }
    .ed-clinic-logo {
        margin: 0 auto;
    }
}

/* =========================================
   Employer Listing Page Specific Styles
   ========================================= */

.elp-hero-listing {
    background: linear-gradient(135deg, #e6f7ff 0%, #ffffff 50%, #f0fdf4 100%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.elp-main-title {
    color: #1a1c1e;
    letter-spacing: -1px;
}

.elp-search-container {
    max-width: 950px;
    border: 1px solid #e0e0e0;
}

.elp-search-container .form-select {
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.elp-search-btn {
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

/* Sidebar Filters */
.elp-sidebar-input {
    background-color: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
}

.elp-sidebar-input .input-group-text {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-right: none;
    color: #64748b;
}

.elp-sidebar-input .form-control {
    border: 1px solid #e2e8f0;
    border-left: none;
    font-size: 0.9rem;
}

.elp-filter-card hr {
    margin: 25px 0;
    opacity: 0.1;
}

.elp-filter-group label {
    font-size: 0.9rem;
    color: #475569;
    cursor: pointer;
}

/* Clinic Cards */
.elp-clinic-card {
    transition: all 0.3s ease;
    border-color: #f1f5f9 !important;
}

.elp-clinic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
}

.elp-featured {
    border: 1px solid #bbf7d0 !important;
    background: linear-gradient(to right, #fafffc, #ffffff) !important;
}

.elp-logo-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.elp-tag {
    background-color: #eff6ff;
    color: #3b82f6;
    font-weight: 500;
    padding: 6px 12px;
    font-size: 0.75rem;
}

.bg-success-subtle {
    background-color: #dcfce7 !important;
    font-size: 0.7rem;
    padding: 4px 10px;
}

/* Pagination Tweak */
.elp-listing-content .pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.elp-listing-content .pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .elp-search-container .border-start {
        border-left: none !important;
        border-top: 1px solid #eee;
        padding-top: 5px;
    }
    .elp-logo-box {
        margin-bottom: 15px;
    }
}



/* =========================================
   DENTAL TRAINER JOBS SECTION STYLES
   ========================================= */

/* Hero Section */
.dt-hero-section {
    background: linear-gradient(180deg, #cceeff 0%, #e6f7ff 50%, #ffffff 100%);
    padding: 100px 0 60px 0;
    position: relative;
}

.dt-badge-pill {
    background-color: #dbeafe; /* Very light blue */
    color: #1e40af; /* Dark blue text */
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Custom Search Container */
.dt-search-container {
    max-width: 900px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Sidebar Styles */
.dt-listing-section {
    background-color: #f8f9fa; /* Matches standard light bg */
}

.bg-light-tint {
    background-color: #fcfdfe;
}

.dt-sidebar {
    border: 1px solid rgba(0,0,0,0.03);
    position: sticky;
    top: 100px;
}

/* Checkbox alignment tweaks */
.dt-filter-group .form-check-input {
    margin-top: 0.25em;
    cursor: pointer;
}

/* Job Card Styles */
.dt-job-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dt-job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

/* Featured Job Card (Blue Tint) */
.dt-job-card.featured {
    background-color: #e3f2fd; /* Light blue background */
    border: 1px solid #bbdefb; /* Blue border */
}

.dt-job-card.featured .btn-outline-primary {
    background-color: #e3f2fd;
    border-color: var(--color-primary);
}
.dt-job-card.featured .btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.dt-job-card.featured .border-primary-subtle {
    border-color: #cfe2ff !important;
}

/* Logo Box */
.dt-logo-box {
    width: 80px;
    height: 80px;
    min-width: 80px;
}
.dt-logo-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Pagination Customization */
.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Mobile Responsive Tweaks */
@media (max-width: 768px) {
    .dt-hero-section {
        padding: 60px 0 40px 0;
    }
    .dt-search-container .border-start-md {
        border-left: none !important;
        border-top: 1px solid #eee;
        padding-top: 10px;
        margin-top: 10px;
    }
    .dt-logo-box {
        margin-bottom: 15px;
    }
}