:root {
    --primary-dark: #0f172a;
    --primary: #1d4ed8;
    --primary-light: #3b82f6;
    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    --light-bg: #f0f9ff;
    --surface: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --gradient-primary: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1d4ed8 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --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);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
.flex-1{
    flex:1;
}
/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    font-size: 0.8rem;
    letter-spacing: 0.025em;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.top-bar a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.top-bar .btn-post-job {
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-bar .btn-post-job:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

/* Main Navigation */
.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: var(--light-bg);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary);
}

/* Modern Hero Section */
.hero-section-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 30%, #1d4ed8 100%);
    padding: 70px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90svh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge-modern i {
    color: #38bdf8;
    font-size: 1rem;
}

.hero-title-modern {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-modern {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-search-modern {
    margin-bottom: 1.5rem;
}

.search-wrapper-modern {
    position: relative;
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
}

.search-icon-modern {
    position: absolute;
    left: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    z-index: 2;
}

.search-input-modern {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    padding: 1rem 1rem 1rem 3.5rem;
    color: #fff;
    font-size: 1rem;
    outline: none;
    width: 100%;
}

.search-input-modern::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-search-modern {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-search-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.4);
}

/* Mobile Responsive Styles for Hero Search */
@media (max-width: 768px) {
    .search-wrapper-modern {
        max-width: 100%;
        padding: 0.4rem;
        gap: 0.4rem;
    }
    
    .search-input-modern {
        padding: 0.875rem 0.875rem 0.875rem 3rem;
        font-size: 0.9rem;
        min-width: 0;
    }
    
    .search-icon-modern {
        left: 1.25rem;
        font-size: 1.1rem;
    }
    
    .btn-search-modern {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .btn-search-modern span {
        display: inline;
    }
}

@media (max-width: 576px) {
    .search-wrapper-modern {
        flex-wrap: wrap;
        border-radius: 20px;
        padding: 0.75rem;
    }
    
    .search-input-modern {
        width: 100%;
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
        border-radius: 15px;
        margin-bottom: 0.5rem;
        border: 1px solid #fff3;
    }
    
    .btn-search-modern {
        width: 100%;
        justify-content: center;
        border-radius: 15px;
        padding: 0.875rem 1.5rem;
    }
    
    .search-icon-modern {
        left: 1.5rem;
        top: 1.5rem;
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #fff;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #fff;
}

.hero-stats-modern {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-modern {
    text-align: left;
}

.stat-number-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-modern {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.hero-image-wrapper {
    position: relative;
    height: 500px;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -15%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    top: 50%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Quick Links Bar */
.quick-links-bar {
    background: #fff;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.quick-link-item-modern {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.quick-link-item-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.quick-link-icon {
    width: 56px;
    height: 56px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.quick-link-item-modern:hover .quick-link-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.quick-link-content {
    flex: 1;
}

.quick-link-content h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.quick-link-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.quick-link-arrow {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.quick-link-item-modern:hover .quick-link-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* Modern Section Styles */
.section-modern {
    padding: 40px 0;
}

.bg-light-modern {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    /* gap: 1.5rem; */
}

.section-header-modern.text-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-bg);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--primary);
}

.btn-view-all:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(4px);
}

/* Modern Job Cards */
.job-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.job-card-header-modern {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.job-logo-modern {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.job-badge-modern {
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-badge-modern.featured {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: #fff;
}

.job-badge-modern:not(.featured) {
    background: var(--primary);
    color: #fff;
}

.job-card-body-modern {
    padding: 1.5rem;
    flex: 1;
}

.job-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.job-company-modern {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.job-meta-modern {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.job-meta-modern span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-meta-modern i {
    color: var(--primary);
}

.job-salary-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.job-card-footer-modern {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 0.75rem;
}

.btn-job-apply {
    flex: 1;
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-job-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.3);
    color: #fff;
}

.btn-job-view {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-job-view:hover {
    background: var(--primary);
    color: #fff;
}

/* Process Cards */
.process-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.process-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.process-number-modern {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: var(--light-bg);
    line-height: 1;
}

.process-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--light-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.process-card-modern:hover .process-icon-modern {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.process-card-modern h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-card-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Story Cards Modern */
.story-card-modern {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.story-image-modern {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.story-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card-modern:hover .story-image-modern img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.story-content-modern {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.story-category {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--light-bg);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.story-content-modern h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.story-content-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.story-author-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar-modern {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name-modern {
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.author-role-modern {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.story-link-modern {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.story-link-modern:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

.story-grid-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.story-item-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.story-item-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.story-item-modern img {
    width: 200px;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
}

.story-item-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.story-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--light-bg);
    color: var(--primary);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.story-item-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.story-item-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex: 1;
}

.story-read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.story-read-more:hover {
    gap: 0.75rem;
}

/* Resource Cards Modern */
.resource-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.resource-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.resource-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.resource-card-modern h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.resource-card-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.resource-link-modern {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.resource-card-modern:hover .resource-link-modern {
    gap: 0.75rem;
}

/* Companies Showcase */
.companies-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.company-item-showcase {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.company-item-showcase:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.company-logo-showcase {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.company-info-showcase h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.company-info-showcase p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Modern CTA Section */
.cta-section-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1d4ed8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1200') center/cover;
    opacity: 0.1;
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description-modern {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-cta-primary-modern {
    background: #fff;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

.btn-cta-secondary-modern {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: translateY(-3px);
    color: #fff;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.cta-feature-item i {
    color: #38bdf8;
}

/* Hero Section (Old - keeping for compatibility) */
.hero-section {
    background: var(--gradient-hero);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1200') center/cover;
    opacity: 0.08;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #fff, transparent);
}

/* Floating shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}

.hero-shapes .shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.hero-shapes .shape:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: -5s;
}

.hero-shapes .shape:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--accent-light);
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-section h1 span {
    background: linear-gradient(135deg, #7dd3fc, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 32px;
}

/* Search Box */
.search-box {
    max-width: 560px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-box .input-group {
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
}

.search-box .form-control {
    border: none;
    padding: 16px 24px;
    font-size: 1rem;
    background: transparent;
}

.search-box .form-control:focus {
    box-shadow: none;
}

.search-box .btn-search {
    background: var(--gradient-primary);
    border: none;
    padding: 16px 28px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.search-box .btn-search:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.4);
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 48px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-item .number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-item .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* Section Styling */
.section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.section-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Featured Cards */
.featured-main-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    height: 100%;
}

.featured-main-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.featured-main-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

.featured-main-card:hover img {
    transform: scale(1.05);
}

.featured-main-card .card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.featured-main-card .card-body {
    padding: 28px;
}

.featured-main-card .card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-main-card .card-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.read-more-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Story Cards */
.story-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.story-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
    border-color: var(--accent);
}

.story-card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.story-card .story-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.4;
}

.story-card .story-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Explore Section */
.explore-section {
    background: linear-gradient(180deg, var(--light-bg) 0%, #fff 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-btn i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.category-btn:hover i {
    color: #fff;
}

/* Resources Section */
.resource-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

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

.resource-card .resource-icon {
    width: 56px;
    height: 56px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.resource-card .resource-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.resource-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.resource-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Community Stories Grid */
.community-section {
    background: var(--light-bg);
}

.community-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

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

.community-card .card-img-wrapper {
    height: 225px;
    overflow: hidden;
}

.community-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.community-card .card-body {
    padding: 20px;
}

.community-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.community-card .card-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Buttons */
.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff !important;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.35);
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1200') center/cover;
    opacity: 0.1;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #fff !important;
    color: var(--primary) !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    border: none !important ;
    transition: all 0.3s ease !important;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

.btn-cta-secondary {
    background: transparent !important;
    color: #fff  !important;
    padding: 14px 32px  !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease !important;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 32px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: inline-block;
}

footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 1rem;
}

footer ul li {
    margin-bottom: 12px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

footer a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-4px);
    padding-left: 0;
}

.social-icons a i {
    font-size: 1.2rem;
    color: #fff;
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-box .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px;
}

.newsletter-box .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 20px;
}

.newsletter-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-box .form-control:focus {
    box-shadow: none;
}

.newsletter-box .btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-box .btn:hover {
    background: var(--accent-light);
}

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

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

/* Accessibility Badge */
.accessibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
}

/* Responsive - Consolidated */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 80px;
    }

    .stats-row {
        gap: 32px;
    }

    .stat-item .number {
        font-size: 1.5rem;
    }

    .section {
        padding: 40px 0;
    }

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

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

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .page-header,
    .contact-header {
        padding: 2rem 0;
        min-height: 150px;
    }

    .page-header h1,
    .contact-header h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .search-section {
        margin: -1rem 1rem 1rem;
        padding: 1.5rem;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-card-header {
        flex-direction: column;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .about-content {
        flex-direction: column !important;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .user-cards {
        /* grid-template-columns: 1fr !important; */
        gap:10px !important;

    }
    .user-card{
        padding: 30px 20px !important;
    }
    .user-card img{
        width: 80px !important;
        height: 80px !important;
    }
    .user-type-section{
        padding: 40px 0 !important;
    }

    .supporters-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .map-container {
        height: 300px;
    }

    .contact-sidebar {
        position: static;
        margin-top: 40px;
    }

    .company-card {
        min-height: 320px;
        padding: 1.5rem;
    }

    .company-logo {
        width: 100px;
        height: 100px;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .company-description {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .company-details {
        gap: 1rem;
        flex-direction: column;
    }

    .company-detail-item {
        font-size: 0.8rem;
    }
}

/* Company Cards - Enhanced Styling */
.companies-grid {
    padding: 30px 0;
}

.company-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.company-card:hover::before {
    transform: scaleX(1);
}

.company-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.company-badge.featured {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.company-badge:not(.featured) {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.company-logo-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
}

.company-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 16px;
    transition: all 0.4s ease;
    display: block;
    margin: 0 auto;
}

.company-card:hover .company-logo {
    background: #fff;
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.15);
}

.company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.company-name:hover {
    color: var(--primary);
}

.company-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.company-details {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.company-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.company-detail-item i {
    color: var(--primary);
    font-size: 1rem;
}

.company-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.company-tag {
    padding: 0.4rem 0.9rem;
    background: var(--light-bg);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.company-card:hover .company-tag {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Dashboard Styles */
/* Dashboard Sidebar Toggle Button */
.dashboard-sidebar-toggle-btn {
    display: none;
    white-space: nowrap;
}

.page-header .d-flex {
    flex-wrap: wrap;
    gap: 1rem;
}

.page-header .d-flex > div:first-child {
    flex: 1;
    min-width: 0;
}

.page-header .d-flex .breadcrumb {
    justify-content: flex-start;
}

.page-header .d-flex h1 {
    text-align: left;
}

@media (max-width: 575.98px) {
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .dashboard-sidebar-toggle-btn span {
        display: none;
    }
    
    .dashboard-sidebar-toggle-btn {
        padding: 0.5rem 0.75rem;
    }
}

.dashboard-sidebar-wrapper {
    position: relative;
}

.dashboard-sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
}

.dashboard-sidebar-close-btn {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.dashboard-sidebar-close-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.dashboard-user-info {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
    font-size: 3rem;
    color: var(--primary);
}

.user-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.user-email {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dashboard-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dashboard-nav .nav-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.dashboard-nav .nav-item:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.dashboard-nav .nav-item.active {
    background: var(--primary);
    color: #fff;
}

.dashboard-nav .nav-item.active:hover {
    background: var(--primary-dark);
}

/* Stat Cards */
.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0.25rem 0 0 0;
}

/* Dashboard Cards */
.dashboard-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-header-custom {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-bg);
}

.card-header-custom h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.view-all-link:hover {
    color: var(--primary-dark);
}

.card-body-custom {
    padding: 1.5rem;
}

/* Application Items */
.application-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.application-info {
    flex: 1;
}

.application-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.application-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.application-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.application-meta i {
    color: var(--primary);
}

.status-badge {
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.new {
    background: var(--primary-light);
    color: #fff;
}

.status-badge.reviewed {
    background: #f59e0b;
    color: #fff;
}

.status-badge.shortlisted {
    background: #10b981;
    color: #fff;
}

.status-badge.active {
    background: #10b981;
    color: #fff;
}

.status-badge.pending {
    background: #f59e0b;
    color: #fff;
}

.status-badge.expired {
    background: var(--text-secondary);
    color: #fff;
}

/* Quick Action Buttons */
.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    background: var(--light-bg);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.quick-action-btn:last-child {
    margin-bottom: 0;
}

.quick-action-btn i {
    font-size: 1.2rem;
    color: var(--primary);
}

.quick-action-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(4px);
}

.quick-action-btn:hover i {
    color: #fff;
}

/* Job Manage Items */
.job-manage-item {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

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

.job-manage-item:hover {
    background: var(--light-bg);
}

.job-manage-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.job-manage-info {
    flex: 1;
}

.job-manage-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.job-manage-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.job-manage-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-manage-meta i {
    color: var(--primary);
}

.job-manage-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Responsive Dashboard */
/* Dashboard Sidebar Toggle on Mobile */
@media (max-width: 991.98px) {
    .dashboard-sidebar-toggle-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .dashboard-sidebar-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: none;
    }
    
    .dashboard-sidebar-wrapper.show {
        opacity: 1;
        visibility: visible;
        display: block;
    }
    
    .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        overflow-y: auto;
        margin: 0;
        border-radius: 0;
        transition: left 0.3s ease;
        padding-top: 3rem;
    }
    
    .dashboard-sidebar.show {
        left: 0;
    }
    
    .dashboard-sidebar-close-btn {
        display: flex;
    }
    
    /* Hide sidebar column from layout flow on mobile */
    .row > .col-lg-3.dashboard-sidebar-wrapper {
        display: none;
    }
    
    .row > .col-lg-3.dashboard-sidebar-wrapper.show {
        display: block;
        position: fixed;
    }
    
    /* Make main content take full width on mobile */
    .row > .col-lg-9 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .dashboard-sidebar-wrapper {
        display: block !important;
    }
    
    .dashboard-sidebar {
        display: block !important;
    }
    
    .dashboard-sidebar-toggle-btn {
        display: none !important;
    }
}

@media (max-width: 768px) {

    .stat-card {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .application-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .job-manage-header {
        flex-direction: column;
    }

    .job-manage-actions {
        width: 100%;
        justify-content: space-between;
    }

    .discussion-item-full {
        flex-direction: column;
        gap: 1rem;
    }

    .discussion-votes {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

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

    .forum-category-card,
    .career-category-card {
        margin-bottom: 1.5rem;
    }

    /* Modern Homepage Responsive */
    .hero-section-modern {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-title-modern {
        font-size: 2.5rem;
    }

    .hero-description-modern {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-modern {
        gap: 2rem;
    }

    .stat-number-modern {
        font-size: 2rem;
    }

    .hero-image-modern {
        margin-top: 3rem;
    }

    .hero-image-wrapper {
        height: 300px;
    }

    .floating-card {
        display: none;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .section-title-modern {
        font-size: 2rem;
    }

    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
    }

    .story-item-modern {
        flex-direction: column;
    }

    .story-item-modern img {
        width: 100%;
        height: 200px;
    }

    .cta-title-modern {
        font-size: 2rem;
    }

    .cta-description-modern {
        font-size: 1rem;
    }

    .cta-buttons-modern {
        flex-direction: column;
    }

    .btn-cta-primary-modern,
    .btn-cta-secondary-modern {
        width: 100%;
        justify-content: center;
    }

    .companies-showcase {
        grid-template-columns: 1fr;
    }
}

/* Forum Styles */
.forum-category-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.forum-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.forum-category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.forum-category-card:hover .forum-category-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.forum-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.forum-category-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.forum-category-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.forum-category-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.forum-category-stats i {
    color: var(--primary);
}

.forum-category-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.forum-category-link:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

.discussion-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.discussion-content {
    flex: 1;
}

.discussion-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.discussion-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.discussion-title a:hover {
    color: var(--primary);
}

.discussion-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.discussion-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.discussion-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discussion-meta i {
    color: var(--primary);
}

.badge-category {
    padding: 0.4rem 0.9rem;
    background: var(--light-bg);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.discussion-item-full {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

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

.discussion-item-full:hover {
    background: var(--light-bg);
}

.discussion-votes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.vote-btn {
    background: var(--light-bg);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
    cursor: pointer;
}

.vote-btn:hover {
    background: var(--primary);
    color: #fff;
}

.vote-count {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.discussion-main {
    flex: 1;
}

.discussion-header {
    margin-bottom: 0.75rem;
}

.discussion-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.discussion-tag {
    padding: 0.3rem 0.8rem;
    background: var(--light-bg);
    color: var(--primary);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.discussion-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.discussion-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    font-size: 0.9rem;
}

.discussion-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.discussion-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.discussion-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discussion-stats i {
    color: var(--primary);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.category-item:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.category-item.active {
    background: var(--primary);
    color: #fff;
}

/* Career Styles */
.career-category-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.career-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.career-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--light-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.career-category-card:hover .career-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.career-category-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.career-category-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.career-stats {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.career-stats strong {
    color: var(--primary);
    font-weight: 700;
}

.career-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.career-link:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

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

.resource-list li {
    margin-bottom: 0.75rem;
}

.resource-list a {
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 10px;
    transition: all 0.2s;
}

.resource-list a:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.tip-item {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tip-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tip-item h6 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tip-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* Career Guide Styles */
.guide-section {
    margin-bottom: 2rem;
}

.guide-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
}

.guide-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.guide-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-secondary);
}

.guide-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.quick-link-item:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.quick-link-item i {
    font-size: 1.2rem;
    color: var(--primary);
}

.resource-box {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.resource-box h6 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.resource-box p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Salary Guide Styles */
.salary-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.salary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.2s;
}

.salary-row:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(4px);
}

.salary-role {
    font-weight: 600;
    color: var(--text-primary);
}

.salary-row:hover .salary-role {
    color: #fff;
}

.salary-range {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.salary-row:hover .salary-range {
    color: #fff;
}

/* Animation on scroll - add 'animate' class via JS */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Login Card */
.login-container {
    max-width: 480px;
    margin: 4rem auto 4rem;
    position: relative;
    z-index: 10;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 2.5rem;
}

.login-card h2 {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.login-card .subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.divider span {
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #fff;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-social:hover {
    border-color: rgba(0, 0, 0, 0.15);
    background: var(--light-bg);
    color: var(--text-primary);
}

.btn-social img {
    width: 20px;
    height: 20px;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.step.active .step-number {
    background: var(--primary);
    color: #fff;
}

.step.completed .step-number {
    background: #10b981;
    color: #fff;
}

.step.inactive .step-number {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
}

.step-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--primary);
}

.step.completed .step-label {
    color: #10b981;
}

.step-line {
    width: 80px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 1rem;
    margin-bottom: 1.5rem;
}

.step-line.completed {
    background: #10b981;
}

/* Register Card */
.register-container {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.register-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 2.5rem;
}

.register-card h2 {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.register-card .subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

/* Account Type Cards */
.account-type-cards {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.account-type-card {
    flex: 1;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
}

.account-type-card:hover {
    border-color: var(--primary-light);
    background: var(--light-bg);
}

.account-type-card.selected {
    border-color: var(--primary);
    background: var(--light-bg);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

.account-type-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.account-type-card h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.account-type-card.selected h5 {
    color: var(--primary-dark);
}

/* Form Styles - Unified */
.form-label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-label .required {
    color: #dc2626;
}

.input-group-custom {
    position: relative;
}

.input-group-custom .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    z-index: 5;
}

.input-group-custom .form-control,
.input-group-custom .form-select {
    padding-left: 2.75rem;
    padding-right: 1rem;
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.input-group-custom .form-control:focus,
.input-group-custom .form-select:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
    outline: none;
}

.input-group-custom .toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 5;
    padding: 0;
}

.input-group-custom .toggle-password:hover {
    color: var(--text-primary);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.login-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Row spacing */
.row.g-3 > [class*="col-"] {
    margin-bottom: 0.5rem;
}

/* Employer fields */
.employer-fields {
    display: none;
}

.employer-fields.show {
    display: block;
}
/* Page Header */
/* Page Header - Unified Style */
.page-header,
.contact-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2.5rem 0;
    text-align: center;
    min-height: 180px;
    display: flex;
    align-items: center;
}

.page-header .container,
.contact-header .container {
    width: 100%;
}

.page-header h1,
.contact-header h1 {
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 0 1rem 0;
}

/* Breadcrumb - Unified Style */
.breadcrumb,
.breadcrumb-custom {
    justify-content: center;
    background: transparent;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item,
.breadcrumb-custom {
    color: rgba(255, 255, 255, 0.8) !important;
}

.breadcrumb-item a,
.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover,
.breadcrumb-custom a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6) !important;
    content: "/";
    padding: 0 0.5rem;
}

.breadcrumb-custom span.mx-2 {
    color: rgba(255, 255, 255, 0.6);
    padding: 0 0.5rem;
}

.search-section {
    background: white;
    padding: 2rem;
    margin: -2rem auto 2rem;
    max-width: 1200px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.search-input {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}


/* Filter Toggle Button */
.filter-toggle-wrapper {
    display: flex;
    justify-content: flex-end;
}

.filter-toggle-wrapper .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filters-sidebar-wrapper {
    position: relative;
}

.filters-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 20px;
    border: 1px solid #e9ecf0;
    transition: all 0.3s ease;
}

/* Hide sidebar by default on mobile, show on desktop */
@media (max-width: 991.98px) {
    .filters-sidebar-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: none;
    }
    
    .filters-sidebar-wrapper.show {
        opacity: 1;
        visibility: visible;
        display: block;
    }
    
    .filters-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        overflow-y: auto;
        margin: 0;
        border-radius: 0;
        transition: left 0.3s ease;
    }
    
    .filters-sidebar.show {
        left: 0;
    }
    
    .filter-close-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .filter-close-btn:hover {
        background: rgba(0, 0, 0, 0.2);
        transform: rotate(90deg);
    }
}

@media (min-width: 992px) {
    .filter-close-btn {
        display: none;
    }
    
    /* Hide sidebar column from layout flow on mobile */
    .row > .col-lg-3.filters-sidebar-wrapper {
        display: none;
    }
    
    .row > .col-lg-3.filters-sidebar-wrapper.show {
        display: block;
        position: fixed;
    }
    
    /* Make job listings take full width on mobile
    .row > .col-lg-9 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    } */
}

@media (min-width: 992px) {
    .filters-sidebar-wrapper {
        display: block !important;
    }
    
    .filters-sidebar {
        display: block !important;
    }
    
    .filter-toggle-wrapper {
        display: none;
    }
}

.filter-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecf0;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-section h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.form-check {
    margin-bottom: 0.75rem;
}

.form-check-label {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.salary-inputs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.salary-inputs input {
    flex: 1;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-count {
    color: var(--text-primary);
    font-weight: 500;
}

.results-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.results-controls select {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.9rem;
    min-width: 70px !important;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid #e9ecf0;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.job-card-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.job-info {
    flex: 1;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.job-title:hover {
    color: var(--primary);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.job-salary {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.job-tag {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tag-primary {
    background: var(--primary-light);
    color: white;
}

.tag-featured {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
}

.tag-internship {
    background: var(--primary-light);
    color: white;
}

.tag-permanent {
    background: gray;
    color: white;
}

/* Job Card Listing Styles - Horizontal on Desktop, Matching Homepage on Mobile */
.job-card-listing {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin-bottom: 1.5rem;
}

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

.job-card-header-listing {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: flex-start;
}

.job-logo-listing {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.job-info-listing {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.job-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.job-title-listing {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
}

.job-title-listing:hover {
    color: var(--primary);
}

.job-badge-listing {
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.job-badge-listing.featured {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: #fff;
}

.job-company-listing {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.job-meta-listing {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.job-meta-listing span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-meta-listing i {
    color: var(--primary);
}

.job-footer-listing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.job-salary-listing {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.job-actions-listing {
    display: flex;
    gap: 0.75rem;
}

.btn-job-apply-listing {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-job-apply-listing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.3);
    color: #fff;
}

.btn-job-view-listing {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-job-view-listing:hover {
    background: var(--primary);
    color: #fff;
}
.w-md-auto{
    width: auto !important;
}

/* Mobile: Match Homepage Card Design */
@media (max-width: 767.98px) {
    .job-card-listing {
        border-radius: 20px;
    }
    
    .job-card-header-listing {
        flex-direction: column;
        padding: 1.5rem;
    }

    .w-c-100{
        width: 100% !important;
    }
    
    .job-logo-listing {
        width: 60px;
        height: 60px;
    }
    
    .job-header-top {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-footer-listing {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .job-actions-listing {
        flex-direction: column;
    }
    
    .btn-job-apply-listing,
    .btn-job-view-listing {
        width: 100%;
    }
    
    .job-salary-listing {
        font-size: 1rem;
    }
    .user-card h3{
        font-size: 1rem !important;
    }
}

/* Desktop: Horizontal Layout */
@media (min-width: 768px) {
    .job-card-listing {
        display: block;
    }
    
    .job-card-header-listing {
        flex-direction: row;
    }
    
    .job-footer-listing {
        flex-direction: row;
        align-items: center;
    }
}

.pagination {
    justify-content: center;
    margin-top: 2rem;
}

.page-link {
    color: var(--primary);
    border: 2px solid rgb(224, 224, 224);
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.page-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

.recruiting-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.recruiting-banner h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.recruiting-banner p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.btn-recruiting {
    background: white;
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-recruiting:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.accessibility-notice {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    text-align: center;
}

.about-section {
    padding: 40px 0;
}

.about-section:nth-child(even) {
    background: #f8fafc;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content.reverse {
    flex-direction: row-reverse;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.about-text ul li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.about-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    /*height: 400px;*/
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.user-type-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 80px 0;
    text-align: center;
}

.user-type-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3rem;
}

.user-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.user-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.user-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(29, 78, 216, 0.2);
    border-color: var(--primary);
}

.user-card img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.user-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.supporters-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.supporters-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3rem;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.supporter-logo {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.supporter-logo:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.supporter-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.supporter-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
/* Contact Page Specific Styles */


.contact-section {
    padding: 60px 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.contact-form-container .form-control,
.contact-form-container .form-select {
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-container .form-control:focus,
.contact-form-container .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Alert - Unified Style */
.alert-info-custom {
    background: var(--light-bg);
    border: 1px solid var(--primary-light);
    color: var(--primary-dark);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.alert-info-custom .btn-close,
.alert-info-custom button {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    filter: none;
}

.alert-info-custom .btn-close:hover,
.alert-info-custom button:hover {
    opacity: 1;
}

.contact-sidebar {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.contact-sidebar h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 3px;
}

.contact-info-item .info-text {
    flex: 1;
}

.contact-info-item .info-text strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-info-item .info-text a {
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-info-item .info-text a:hover {
    color: var(--primary);
}

.help-box {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.help-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.help-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.social-media-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.social-media-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #000000;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.linkedin {
    background: #0077b5;
}
.nav-pills .nav-link.active{
    color: #fff !important;
}
@media (max-width: 576px) {
    .account-type-cards {
        flex-direction: column;
    }
    
    .progress-steps {
        transform: scale(0.85);
    }
    
    .step-line {
        width: 40px;
    }
    footer{
        padding: 40px 0;
    }
    .top-bar{
        display: none;
    }
    .results-controls{
        gap:0rem;
    }
}