/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header */
.top-header {
    background-color: #00204A;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

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

.top-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-header-right i {
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.top-header-right i:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-select {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 8px;
    border-radius: 3px;
}

.text-size span {
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.text-size span:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Main Header */
.main-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ministry-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ashoka-chakra {
    font-size: 24px;
    color: #FF6B35;
}

.ministry-text {
    font-size: 12px;
    font-weight: 600;
    color: #00204A;
    line-height: 1.3;
}

.program-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pm-logo {
    position: relative;
    font-size: 32px;
    font-weight: bold;
    color: #FF6B35;
}

.p-letter {
    position: relative;
    z-index: 2;
}

.m-letter {
    position: relative;
    left: -8px;
    color: #00204A;
}

.program-text {
    font-size: 14px;
    font-weight: 700;
    color: #00204A;
    line-height: 1.2;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-register, .btn-login {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-register:hover, .btn-login:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.viksit-bharat {
    text-align: center;
    font-size: 12px;
    color: #00204A;
    font-weight: 600;
}

.viksit-years {
    font-size: 10px;
    color: #666;
}

/* Navigation */
.main-nav {
    background-color: #00204A;
    padding: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.nav-item:hover, .nav-item.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: #FF6B35;
}

.nav-item i {
    font-size: 16px;
}

.nav-item span {
    font-weight: 600;
    font-size: 14px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #FF6B35;
}

/* Alert Banner */
.alert-banner {
    background-color: #FFF3CD;
    border-left: 4px solid #FF6B35;
    padding: 15px 0;
    color: #856404;
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
}

.alert-banner.hidden {
    max-height: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(-100%);
}

.alert-banner .container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.alert-banner i {
    color: #FF6B35;
    font-size: 18px;
}

.banner-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: auto;
}

.banner-close:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    transform: translateY(-50%) scale(1.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
}

.hero-left h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FF6B35;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #FF6B35;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary:hover {
    background-color: white;
    color: #667eea;
    transform: translateY(-3px);
}

.hero-right {
    position: relative;
}

.hero-image {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-overlay {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: #FF6B35;
}

/* Company Logos Scrolling Section */
.company-logos-section {
    padding: 25px 0;
    background: linear-gradient(135deg, rgba(0, 32, 74, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    overflow: hidden;
    position: relative;
}

.company-logos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, transparent 10%, transparent 90%, rgba(255, 255, 255, 0.8) 100%);
    pointer-events: none;
    z-index: 2;
}

.logos-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    animation: scroll-logos 30s linear infinite;
    gap: 45px;
    align-items: center;
    width: max-content;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 130px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.logo-item:hover::before {
    left: 100%;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo-item img {
    max-height: 45px;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(20%) brightness(0.9);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logos-container:hover .logos-track {
    animation-play-state: paused;
}

/* Responsive Design for Company Logos */
@media (max-width: 768px) {
    .company-logos-section {
        padding: 20px 0;
    }
    
    .logo-item {
        height: 55px;
        width: 100px;
    }
    
    .logo-item img {
        max-height: 32px;
        max-width: 75px;
    }
    
    .logos-track {
        gap: 35px;
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .company-logos-section {
        padding: 15px 0;
    }
    
    .logo-item {
        height: 45px;
        width: 85px;
    }
    
    .logo-item img {
        max-height: 28px;
        max-width: 65px;
    }
    
    .logos-track {
        gap: 25px;
        animation-duration: 20s;
    }
}

/* Eligibility & Benefits Section */
.eligibility-benefits {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.eligibility-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.eligibility-section,
.benefits-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.eligibility-section .section-title,
.benefits-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 700;
    color: #00204A;
}

.title-multiline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.title-line-1,
.title-line-2,
.title-line-3,
.title-line-4 {
    line-height: 1.2;
    margin: 0;
}

.title-line-1 {
    font-size: 24px;
}

.title-line-2 {
    font-size: 28px;
}

.title-line-3 {
    font-size: 32px;
}

.title-line-4 {
    font-size: 20px;
}

.highlight {
    color: #FF6B35;
}

.criteria-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    flex: 1;
    align-content: start;
}

.criteria-card,
.benefit-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform: translateZ(0);
}

.criteria-card:hover,
.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 107, 53, 0.1);
    border-color: #FF6B35;
    background: white;
}

.criteria-card:hover .criteria-icon,
.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(2deg);
}

.criteria-card:hover .criteria-content h3,
.benefit-card:hover .benefit-content h3 {
    color: #FF6B35;
}

.criteria-icon,
.benefit-icon {
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.criteria-icon i,
.benefit-icon i {
    font-size: 48px;
    color: #FF6B35;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.2));
}

.criteria-card:hover .criteria-icon i,
.benefit-card:hover .benefit-icon i {
    color: #e55a2b;
    transform: rotate(3deg) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

/* Age Circle Special Styling */
.age-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.criteria-card:hover .age-circle {
    transform: scale(1.15) rotate(12deg);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.age-number {
    font-size: 32px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.age-plus {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 16px;
    color: white;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Benefit Icon Overlays */
.benefit-overlay {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 16px;
    background: #43e97b;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.rupee-symbol {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 16px;
    background: #43e97b;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    font-weight: 700;
}

.opportunity-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.opportunity-arrows i {
    font-size: 10px;
    color: #43e97b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card:hover .opportunity-arrows i {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.criteria-content,
.benefit-content {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.criteria-content h3,
.benefit-content h3 {
    color: #00204A;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.criteria-content p,
.benefit-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.criteria-content ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    text-align: left;
}

.criteria-content li {
    color: #666;
    font-size: 13px;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.criteria-content li::before {
    content: '•';
    color: #FF6B35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Special hover effects for different card types */
.criteria-card:nth-child(1):hover {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.criteria-card:nth-child(2):hover {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.criteria-card:nth-child(3):hover {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.criteria-card:nth-child(4):hover {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.benefit-card:nth-child(1):hover {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.benefit-card:nth-child(2):hover {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.benefit-card:nth-child(3):hover {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.benefit-card:nth-child(4):hover {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
}


/* Responsive Design */
@media (max-width: 768px) {
    .eligibility-benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .criteria-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .eligibility-section,
    .benefits-section {
        padding: 30px 20px;
    }
    
    .eligibility-section .section-title,
    .benefits-section .section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .criteria-card,
    .benefit-card {
        padding: 20px 15px;
    }
    
    .criteria-icon i,
    .benefit-icon i {
        font-size: 36px;
    }
    
    .age-circle {
        width: 60px;
        height: 60px;
    }
    
    .age-number {
        font-size: 24px;
    }
}

/* Dashboard Stats */
.dashboard-stats {
    padding: 60px 0;
    background-color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card.secondary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-card.tertiary {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-card.quaternary {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.stat-card.quinary {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.stat-content .stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-content .stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Job Categories */
.job-categories {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.category-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-card i {
    font-size: 48px;
    color: #FF6B35;
    margin-bottom: 20px;
}

.category-label {
    font-size: 18px;
    font-weight: 600;
    color: #00204A;
}

.show-more {
    text-align: center;
}

.btn-show-more {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-show-more:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Quick Actions */
.quick-actions {
    padding: 60px 0;
    background-color: white;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.action-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.action-icon i {
    font-size: 32px;
    color: white;
}

.action-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #00204A;
    margin-bottom: 15px;
}

.action-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-action {
    background-color: #00204A;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-action:hover {
    background-color: #FF6B35;
    transform: translateY(-2px);
}

/* Recent Activity */
.recent-activity {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.activity-list {
    max-width: 800px;
    margin: 0 auto;
}

.activity-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.activity-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.activity-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-weight: 600;
    color: #00204A;
    margin-bottom: 5px;
}

.activity-time {
    color: #666;
    font-size: 14px;
}

.activity-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.activity-status.pending {
    background-color: #fff3cd;
    color: #856404;
}

.activity-status.completed {
    background-color: #d4edda;
    color: #155724;
}

/* Footer */
.main-footer {
    background-color: #00204A;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FF6B35;
}

.footer-logos {
    margin-bottom: 30px;
}

.ministry-logo-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ministry-logo-footer .ashoka-chakra {
    font-size: 20px;
    color: #FF6B35;
}

.ministry-logo-footer .ministry-text {
    font-size: 11px;
    line-height: 1.3;
    opacity: 0.9;
}

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

.social-icons i {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.social-icons i:hover {
    background-color: #FF6B35;
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #FF6B35;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-item i {
    color: #FF6B35;
    margin-top: 2px;
}

.btn-play-store {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.btn-play-store:hover {
    background-color: #e55a2b;
}

.qr-code {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 12px;
}

.site-info {
    font-size: 12px;
    line-height: 1.6;
}

.build-version {
    margin-bottom: 15px;
    opacity: 0.7;
}

.visitor-count {
    background-color: #FF6B35;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.visitor-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.visitor-label {
    font-size: 12px;
    opacity: 0.9;
}

.site-ownership, .copyright, .tech-collab {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
}

.chatbot-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.chatbot-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.chatbot-bubble {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.chatbot-widget:hover .chatbot-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chatbot-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

/* Chatbot Modal */
.chatbot-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-modal.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.chatbot-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.bot-message {
    background-color: #f1f3f4;
    color: #333;
    align-self: flex-start;
}

.user-message {
    background-color: #667eea;
    color: white;
    align-self: flex-end;
}

.message-time {
    font-size: 11px;
    opacity: 0.6;
    margin-top: 5px;
}

.chatbot-input {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
}

.chatbot-input input:focus {
    border-color: #667eea;
}

#chatbotSend {
    background-color: #667eea;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

#chatbotSend:hover {
    background-color: #5a6fd8;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 36px;
    }
    
    .hero-left h2 {
        font-size: 42px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-list {
        flex-wrap: wrap;
    }
    
    .nav-item {
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .header-left {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .chatbot-modal {
        width: 300px;
        height: 400px;
        right: 15px;
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 28px;
    }
    
    .hero-left h2 {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .title-line {
        width: 30px;
    }
    
    .chatbot-modal {
        width: calc(100vw - 30px);
        right: 15px;
        left: 15px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Profile Page Styles */
.profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 0;
}

.profile-info {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
}

.profile-avatar {
    position: relative;
    width: 120px;           /* Added: Set a fixed width */
    height: 120px;          /* Added: Set an equal height */
    border-radius: 50%;     /* Added: Make it a perfect circle */
    border: 4px solid white;/* Added: Style the border */
    background-color: #ffffff20; /* Added: A subtle background */

    /* Added: These lines will center the "Profile Pic" text */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.profile-avatar img {
    width: 100%; /* Make sure image fills the circle */
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.btn-edit-avatar {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #FF6B35;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.profile-details h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.profile-title {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.profile-stats {
    display: flex;
    gap: 30px;
}

.profile-stats .stat {
    text-align: center;
}

.profile-stats .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #FF6B35;
}

.profile-stats .stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Profile Tabs */
.profile-tabs {
    background-color: white;
    border-bottom: 1px solid #eee;
}

.tab-navigation {
    display: flex;
    gap: 0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 20px 30px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    color: #FF6B35;
    border-bottom-color: #FF6B35;
    background-color: #f8f9fa;
}

.tab-content {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: #00204A;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-label {
    font-weight: 600;
    color: #666;
}

.info-value {
    color: #00204A;
}

.education-item {
    padding: 20px 0;
}

.education-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.education-header h4 {
    color: #00204A;
    margin: 0;
}

.education-year {
    background-color: #FF6B35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.education-institution {
    color: #666;
    margin-bottom: 5px;
}

.education-grade {
    color: #00204A;
    font-weight: 600;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background-color: #FF6B35;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Badges Section */
.badges-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.badge-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.badge-card:hover {
    border-color: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.badge-icon.earned {
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
}

.badge-icon.locked {
    background: linear-gradient(135deg, #ccc, #999);
}

.badge-info {
    flex: 1;
}

.badge-info h4 {
    color: #00204A;
    margin-bottom: 5px;
}

.badge-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.badge-points {
    background-color: #f8f9fa;
    color: #FF6B35;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.badge-status {
    font-size: 24px;
    color: #FF6B35;
}

.badge-status .fa-lock {
    color: #ccc;
}

/* Resume Section */
.resume-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.resume-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.resume-status-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.status-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.status-content {
    flex: 1;
}

.status-content h3 {
    color: #00204A;
    margin-bottom: 10px;
}

.status-content p {
    color: #666;
    margin-bottom: 15px;
}

.ats-score-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.score-label {
    color: #666;
    font-weight: 600;
}

.score-value {
    background-color: #FF6B35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
}

.status-actions {
    display: flex;
    gap: 10px;
}

.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.recommendation-item .fa-check-circle {
    color: #43e97b;
}

.recommendation-item .fa-times-circle {
    color: #fa709a;
}

/* Feedback Section */
.feedback-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feedback-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feedback-stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
}

.feedback-stat .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 5px;
}

.feedback-stat .stat-label {
    color: #666;
    font-size: 14px;
}

.feedback-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feedback-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #FF6B35;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.reviewer-details h4 {
    color: #00204A;
    margin: 0;
    font-size: 16px;
}

.reviewer-details p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.rating {
    color: #FF6B35;
}

.feedback-content {
    margin-bottom: 15px;
}

.feedback-content p {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.feedback-date {
    color: #666;
    font-size: 14px;
}

/* Settings Section */
.settings-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.settings-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.settings-card h3 {
    color: #00204A;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.setting-item label {
    color: #333;
    font-weight: 500;
}

.setting-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #FF6B35;
}

.setting-item select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.large {
    max-width: 800px;
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #00204A;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Upload Area */
.upload-area {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.upload-area:hover {
    border-color: #FF6B35;
    background-color: #f8f9fa;
}

.upload-area i {
    font-size: 48px;
    color: #FF6B35;
    margin-bottom: 15px;
}

.upload-area p {
    color: #666;
    margin-bottom: 20px;
}

.btn-browse {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-browse:hover {
    background-color: #e55a2b;
}

.upload-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    color: #666;
}

/* ATS Score Display */
.ats-score-display {
    text-align: center;
    margin: 30px 0;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.score-number {
    font-size: 32px;
    font-weight: 700;
}

.score-label {
    font-size: 14px;
    opacity: 0.9;
}

.ats-recommendations {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.ats-recommendations h4 {
    color: #00204A;
    margin-bottom: 15px;
}

.ats-recommendations ul {
    list-style: none;
    padding: 0;
}

.ats-recommendations li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.ats-recommendations li:last-child {
    border-bottom: none;
}

/* Search Filters */
.search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: #00204A;
}

.filter-group input,
.filter-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

/* Job Results */
.job-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.job-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-header h4 {
    color: #00204A;
    margin: 0;
}

.job-company {
    color: #666;
    font-size: 14px;
}

.job-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.job-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.job-description {
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
}

.job-actions {
    display: flex;
    gap: 10px;
}

/* Skill Assessment */
.skill-assessment {
    margin-bottom: 20px;
}

.skill-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.skill-category label {
    font-weight: 600;
    color: #00204A;
}

.skill-category select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    min-width: 150px;
}

/* Course List */
.course-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.course-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
}

.course-item h5 {
    color: #00204A;
    margin-bottom: 8px;
}

.course-item p {
    color: #666;
    margin-bottom: 10px;
}

.course-duration {
    background-color: #FF6B35;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    z-index: 1001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    border-left: 4px solid #FF6B35;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #43e97b;
}

.notification-error {
    border-left-color: #fa709a;
}

.notification-info {
    border-left-color: #667eea;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 18px;
}

.notification-success .notification-content i {
    color: #43e97b;
}

.notification-error .notification-content i {
    color: #fa709a;
}

.notification-info .notification-content i {
    color: #667eea;
}

/* Typing Indicator */
.typing-indicator .typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #666;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Interview Page Styles */
.interview-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.interview-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="interview-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23interview-grid)"/></svg>');
    opacity: 0.3;
}

.interview-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.interview-hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
}

.interview-hero h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FF6B35;
}

.interview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.interview-stats .stat-item {
    text-align: center;
}

.interview-stats .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 5px;
}

.interview-stats .stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Interview Categories */
.interview-categories {
    padding: 60px 0;
    background-color: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #FF6B35;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.category-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 15px;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-stats {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.category-stats span {
    background-color: #f8f9fa;
    color: #FF6B35;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Interview Questions */
.interview-questions {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.questions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.questions-header h2 {
    color: #00204A;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.questions-controls {
    display: flex;
    gap: 10px;
}

.btn-filter {
    background: white;
    color: #666;
    border: 2px solid #e9ecef;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-filter:hover,
.btn-filter.active {
    background-color: #FF6B35;
    color: white;
    border-color: #FF6B35;
}

.questions-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.question-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.question-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.question-header:hover {
    background-color: #f8f9fa;
}

.question-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.question-number {
    background-color: #FF6B35;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.question-content {
    color: #00204A;
    font-weight: 600;
    font-size: 16px;
}

.question-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.difficulty-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.difficulty-badge.easy {
    background-color: #d4edda;
    color: #155724;
}

.difficulty-badge.medium {
    background-color: #fff3cd;
    color: #856404;
}

.difficulty-badge.hard {
    background-color: #f8d7da;
    color: #721c24;
}

.category-badge {
    background-color: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.question-toggle {
    color: #666;
    transition: transform 0.3s;
}

.question-answer {
    display: none;
    padding: 0 30px 30px;
    border-top: 1px solid #f0f0f0;
}

.answer-content {
    margin-bottom: 20px;
}

.answer-content h4 {
    color: #00204A;
    margin-bottom: 10px;
}

.answer-content p {
    color: #333;
    line-height: 1.6;
}

.answer-actions {
    display: flex;
    gap: 15px;
}

.btn-action {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-action:hover {
    background-color: #FF6B35;
    color: white;
    border-color: #FF6B35;
}

/* Mock Interview */
.mock-interview {
    padding: 60px 0;
    background-color: white;
}

.mock-interview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mock-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.mock-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #FF6B35;
}

.mock-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.mock-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 15px;
}

.mock-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Interview Tips */
.interview-tips {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.tip-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 20px;
}

.tip-card ul {
    list-style: none;
    padding: 0;
}

.tip-card li {
    padding: 8px 0;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.tip-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: bold;
}

/* Company Questions */
.company-questions {
    padding: 60px 0;
    background-color: white;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.company-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #FF6B35;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #666;
    font-size: 24px;
}

.company-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 10px;
}

.company-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.question-count {
    background-color: #FF6B35;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Analytics Page Styles */
.analytics-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.analytics-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="analytics-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23analytics-grid)"/></svg>');
    opacity: 0.3;
}

.analytics-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.analytics-hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
}

.analytics-hero h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FF6B35;
}

.analytics-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overview-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.overview-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    font-size: 20px;
}

.overview-content {
    flex: 1;
}

.overview-number {
    font-size: 24px;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 5px;
}

.overview-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Analytics Tabs */
.analytics-tabs {
    background-color: white;
    border-bottom: 1px solid #eee;
}

.analytics-tabs .tab-navigation {
    display: flex;
    gap: 0;
}

.analytics-tabs .tab-btn {
    background: none;
    border: none;
    padding: 20px 30px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.analytics-tabs .tab-btn:hover,
.analytics-tabs .tab-btn.active {
    color: #FF6B35;
    border-bottom-color: #FF6B35;
    background-color: #f8f9fa;
}

.analytics-content {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.analytics-content .tab-panel {
    display: none;
}

.analytics-content .tab-panel.active {
    display: block;
}

/* Charts Grid */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.chart-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chart-header {
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-header h3 {
    color: #00204A;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.chart-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.time-filter,
.salary-filter {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    font-size: 14px;
}

.btn-refresh {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s;
}

.btn-refresh:hover {
    background-color: #f0f0f0;
    color: #FF6B35;
}

.chart-container {
    padding: 20px 30px;
    height: 300px;
    position: relative;
}

/* Applications Analytics */
.applications-analytics {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.analytics-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.summary-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.summary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.summary-content {
    flex: 1;
}

.summary-number {
    font-size: 28px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 5px;
}

.summary-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.summary-change {
    font-size: 12px;
    font-weight: 600;
}

.summary-change.positive {
    color: #43e97b;
}

.summary-change.negative {
    color: #fa709a;
}

.applications-chart {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.applications-breakdown {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.breakdown-card h3 {
    color: #00204A;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breakdown-label {
    min-width: 120px;
    color: #666;
    font-size: 14px;
}

.breakdown-bar {
    flex: 1;
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.breakdown-fill {
    height: 100%;
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.breakdown-value {
    min-width: 30px;
    text-align: right;
    color: #00204A;
    font-weight: 600;
    font-size: 14px;
}

/* Skills Analytics */
.skills-analytics {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.skills-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.skills-summary {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skills-summary h3 {
    color: #00204A;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.skills-summary p {
    color: #666;
    line-height: 1.6;
}

.skills-chart {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.skills-detailed {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skill-progress-list h3 {
    color: #00204A;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
}

.skill-item {
    display: flex; /* Use flexbox for alignment */
    justify-content: space-between; /* Space out label and slider */
    align-items: center; /* Vertically center items */
    margin-bottom: 25px; /* Increased spacing between items */
}

.skill-item:last-child {
    margin-bottom: 15px; /* Reduce margin for the last item */
}


.skill-info {
    min-width: 200px;
}

.skill-name {
    color: #00204A;
    font-weight: 600;
    margin-bottom: 5px;
}

.skill-level {
    color: #666;
    font-size: 14px;
}

.skill-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    border-radius: 5px;
    transition: width 0.3s ease;
}

.progress-value {
    min-width: 40px;
    text-align: right;
    color: #00204A;
    font-weight: 600;
    font-size: 14px;
}

/* Performance Analytics */
.performance-analytics {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.metric-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.metric-header h3 {
    color: #00204A;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.metric-label {
    color: #666;
    font-size: 14px;
}

.metric-value {
    color: #00204A;
    font-weight: 600;
    font-size: 16px;
}

.performance-chart {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Insights Analytics */
.insights-analytics {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.insights-header {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.insights-header h3 {
    color: #00204A;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.insights-header p {
    color: #666;
    font-size: 16px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.insight-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

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

.insight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

.insight-content h4 {
    color: #00204A;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.insight-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.insight-actions {
    display: flex;
    gap: 10px;
}

.btn-insight {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-insight:hover {
    background-color: #e55a2b;
    transform: translateY(-1px);
}

.insights-summary {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.summary-chart {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Guidance Page Styles */
.guidance-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.guidance-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="guidance-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23guidance-grid)"/></svg>');
    opacity: 0.3;
}

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

.guidance-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.guidance-hero p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.skill-gap-analysis {
    padding: 60px 0;
    background-color: white;
}

.analysis-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: none;
    padding: 20px;
}

/*Use this more specific selector */
.skill-gap-analysis .analysis-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    width: 100%;
    max-width: 650px; /* This sets the new, wider width */
}

.analysis-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group select, .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group select:focus, .form-group input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    outline: none;
}

.skills-assessment h4 {
    font-size: 18px;
    font-weight: 600;
    color: #00204A;
    margin: 20px 0 15px;
}

.skill-item {
    margin-bottom: 15px;
}

.skill-item label {
    margin-right: 20px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.skill-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 250px;
}

.rating-option {
    flex: 1;
    text-align: center;
}

.rating-option input[type="radio"] {
    display: none;
}

.rating-option label {
    display: block;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.rating-option input[type="radio"]:checked + label {
    background: #FF6B35;
    color: white;
}

.analysis-results {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 20px;
    position: relative;
    width: 100%;
    min-height: 500px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.skill-gap-item {
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    width: 100%;
}

.analysis-results h3 {
    font-size: 24px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 20px;
}

.skill-gap-chart {
    margin-bottom: 30px;
}

.recommendations {
    margin-top: 30px;
}

.recommendations h4 {
    font-size: 18px;
    font-weight: 600;
    color: #00204A;
    margin-bottom: 15px;
}

.recommendation-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.recommendation-icon {
    width: 50px;
    height: 50px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.recommendation-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #00204A;
    margin-bottom: 5px;
}

.recommendation-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.recommendation-content .btn-small {
    font-size: 12px;
    padding: 5px 10px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.recommendation-content .btn-small:hover {
    background: #5a6edb;
}

/* Schemes Page Styles */
.schemes-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.schemes-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="schemes-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23schemes-grid)"/></svg>');
    opacity: 0.3;
}

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

.schemes-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.schemes-hero p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.schemes-overview {
    padding: 60px 0;
    background-color: white;
}

.schemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.scheme-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.scheme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #FF6B35;
}

.scheme-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
}

.scheme-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 15px;
}

.scheme-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.scheme-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.detail-item i {
    color: #FF6B35;
}

.detail-item span {
    font-size: 14px;
    color: #333;
}

.scheme-card .btn-primary {
    padding: 12px 25px;
    background: #FF6B35;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
} /* <-- This closing brace was missing */

.scheme-card .btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Mentorship Section */
.mentorship-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.mentorship-content {
    display: grid;
    grid-template-columns: 1fr; /* Stack on mobile */
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

.mentorship-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 15px;
}

.mentorship-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.mentorship-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #FF6B35;
    font-size: 18px;
}

.mentors-showcase h4 {
    font-size: 22px;
    font-weight: 600;
    color: #00204A;
    margin-bottom: 20px;
}

.mentors-grid {
    display: grid;
    grid-template-columns: 1fr; /* A single column of mentor cards */
    gap: 20px; /* Space between each mentor card */
}

.mentor-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;         /* Lays out items side-by-side */
    align-items: center;   /* Vertically aligns the image and text */
    gap: 15px;             /* Creates space between image and text */
}

.mentor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.mentor-avatar {
    width: 60px;       /* Sets a fixed small width */
    height: 60px;      /* Sets a fixed small height */
    border-radius: 50%;/* Makes it a circle */
    overflow: hidden;  /* Hides parts of the image outside the circle */
    flex-shrink: 0;    /* Prevents the image from shrinking */
    border: 2px solid #FF6B35;
}

.mentor-avatar img {
    width: 100%;       /* Makes image fill the avatar circle */
    height: 100%;      /* Makes image fill the avatar circle */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}
.mentor-avatar svg {
    width: 100%;
    height: 100%;
}

.mentor-info {
    flex-grow: 1; /* Allows the info section to take the remaining space */
}
.mentor-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #00204A;
    margin: 0 0 3px 0;
}

.mentor-card p {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px 0;
}

.mentor-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.mentor-rating i {
    color: #FFD700;
    font-size: 14px;
}

.mentor-rating span {
    margin-left: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

@media (min-width: 992px) {
    .mentorship-content {
        grid-template-columns: 1fr 1fr;
    }
}
    
    .mentor-avatar {
        width: 80px;
        height: 80px;
    }

/* Additional Guidance Page Styles */
.skill-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background: #f0f0f0;
    border-radius: 4px;
    outline: none;
    margin-right: 10px;
}

.skill-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF6B35;
    cursor: pointer;
}

.skill-value {
    font-weight: bold;
    color: #FF6B35;
}

.skill-chart {
    margin-bottom: 30px;
}

.gap-summary {
    margin-bottom: 30px;
}

.gap-summary h4 {
    font-size: 18px;
    font-weight: 600;
    color: #00204A;
    margin-bottom: 15px;
}

.gap-summary ul {
    padding-left: 20px;
}

.gap-summary li {
    margin-bottom: 10px;
    color: #333;
}

/* Courses Section */
.courses-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.course-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    background-color: #ffffff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 800px;
}

.filter-btn {
    padding: 12px 24px;
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.filter-btn.active, .filter-btn:hover {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
    box-shadow: 0 5px 10px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.course-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.course-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 10px;
}

.course-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-rating i {
    color: #FFD700;
}

.course-duration {
    font-size: 12px;
    color: #666;
}

/* Career Path Section */
.career-path {
    padding: 60px 0;
    background-color: white;
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pathway-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    margin-bottom: 20px;
}

.pathway-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.pathway-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.pathway-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 15px;
}

.pathway-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.pathway-steps {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
}

.step {
    margin-bottom: 10px;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pathway-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #00204A;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Schemes Page Additional Styles */
.eligibility-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.eligibility-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.eligibility-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eligibility-card h3 i {
    color: #FF6B35;
}

.eligibility-card ul {
    padding-left: 20px;
}

.eligibility-card li {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.5;
}

.eligibility-note {
    background: rgba(255, 107, 53, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #FF6B35;
}

.eligibility-note p {
    color: #333;
    font-size: 14px;
    margin-bottom: 0;
}

/* Application Process Section */
.application-process {
    padding: 60px 0;
    background-color: white;
}

.process-steps {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: #ddd;
    z-index: 1;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px white, 0 0 0 6px #ddd;
}

.step-content {
    flex: 1;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #00204A;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .guidance-hero h1, .schemes-hero h1 {
        font-size: 36px;
    }
    
    .analysis-container {
        grid-template-columns: 1fr;
    }
    
    .schemes-grid {
        grid-template-columns: 1fr;
    }
    
    .pathways-grid {
        grid-template-columns: 1fr;
    }
    
    .eligibility-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps::before {
        left: 24px;
    }
    
    .step-item {
        flex-direction: row;
    }
}
/* =============================================== */
/* UNIFIED HERO BANNER STYLES                      */
/* Add this entire block to the end of your CSS    */
/* =============================================== */

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Adds the subtle grid pattern */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.4;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    align-items: center;
    gap: 20px;
    text-align: center;
}

/* Switch to two columns on larger screens */
@media (min-width: 768px) {
    .page-hero .hero-content {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
        text-align: left;
    }
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem); /* Responsive font size */
    font-weight: 300; /* Lighter weight for the base text */
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* This is the key style for the orange accent text */
.page-hero h1 .highlight {
    color: #FF6B35;
    font-weight: 700; /* Bold for emphasis */
    display: block; /* Puts the highlighted text on its own line */
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 450px;
    justify-self: center; /* Center the paragraph on mobile */
}

@media (min-width: 768px) {
    .page-hero p {
        justify-self: start; /* Align to the left on larger screens */
    }
}