body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
    min-height: 100%;
}
* {
    box-sizing: border-box;
}
html {
    height: 100%;
}

/* ====================== TOP STATS BANNER ONLY ====================== */
.top-stats-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.top-stats-banner::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 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 1000,100"/></svg>');
    background-size: cover;
}
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.main-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.main-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}
.stat-number {
    font-size: 36px;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsive adjustments for the banner only */
@media (max-width: 1024px) {
    .main-title {
        font-size: 42px;
    }
    .main-subtitle {
        font-size: 18px;
    }
    .stats-grid {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .top-stats-banner {
        padding: 40px 0;
    }
    .main-title {
        font-size: 32px;
        line-height: 1.1;
    }
    .main-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    .stat-item {
        padding: 15px;
    }
    .stat-number {
        font-size: 28px;
    }
}
@media (max-width: 480px) {
    .top-stats-banner {
        padding: 30px 0;
    }
    .main-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .main-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    .stats-grid {
        gap: 15px;
        max-width: 320px;
    }
    .stat-item {
        padding: 12px 10px;
    }
    .stat-number {
        font-size: 22px;
    }
    .stat-label {
        font-size: 13px;
    }
}
@media (min-width: 1200px) {
    .stats-container {
        max-width: 1400px;
    }
    .main-title {
        font-size: 52px;
    }
    .main-subtitle {
        font-size: 22px;
    }
}


 
        body {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333333;
            background: #f8f9fa;
            min-height: 100%;
        }

        * {
            box-sizing: border-box;
        }

        html {
            height: 100%;
        }

        /* Header */
        .header {
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #e5e7eb;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
            height: 72px;
        }

        /* Logo Section */
        .logo-section {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: opacity 0.2s;
            font-size: 24px;
            font-weight: bold;
            color: #007bff;
        }

        .logo:hover {
            opacity: 0.8;
        }

        .logo-image {
            /* height: 36px; */
            width: auto;
            max-width: 200px;
            object-fit: contain;
        }

        .mobile-logo-image {
            
            width: auto;
            max-width: 200px;
            object-fit: contain;
        }

        /* Navigation Menu */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
            margin: 0 auto;
            flex: 1;
            justify-content: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: #374151;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: #007bff;
            background: #f8fafc;
        }

        .nav-link.active {
            color: #007bff;
            background: #eff6ff;
        }

        .nav-link svg {
            width: 16px;
            height: 16px;
        }

        /* Action Buttons */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .search-toggle {
            background: none;
            border: none;
            color: #6b7280;
            font-size: 18px;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-toggle:hover {
            background: #f3f4f6;
            color: #374151;
        }

        .notification-btn {
            position: relative;
            background: none;
            border: none;
            color: #6b7280;
            font-size: 18px;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .notification-btn:hover {
            background: #f3f4f6;
            color: #374151;
        }

        .notification-badge {
            position: absolute;
            top: 4px;
            right: 4px;
            background: #ef4444;
            color: white;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            font-size: 10px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
        }

        .btn-primary {
            background: #007bff;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .btn-primary:hover {
            background: #0056b3;
        }

        .btn-secondary {
            background: transparent;
            color: #6b7280;
            border: 1px solid #d1d5db;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .btn-secondary:hover {
            background: #f9fafb;
            color: #374151;
            border-color: #9ca3af;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #374151;
            font-size: 20px;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .mobile-menu-toggle:hover {
            background: #f3f4f6;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 280px;
            height: 100%;
            background: white;
            box-shadow: 4px 0 20px rgba(0,0,0,0.1);
            transition: left 0.3s;
            z-index: 2000;
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            padding: 20px;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-logo {
            font-size: 20px;
            font-weight: bold;
            color: #007bff;
            text-decoration: none;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 24px;
            color: #6c757d;
            cursor: pointer;
            padding: 4px;
        }

        .mobile-menu-content {
            padding: 20px 0;
        }

        .mobile-nav-item {
            display: block;
            padding: 15px 20px;
            color: #4a5568;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.3s;
        }

        .mobile-nav-item:hover {
            background: #f8fafc;
            color: #007bff;
            padding-left: 30px;
        }

        .mobile-actions {
            padding: 20px;
            border-top: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        /* Mobile Overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1500;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Search Bar (Hidden by default) */
        .header-search {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-bottom: 1px solid #e2e8f0;
            padding: 15px 20px;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .header-search.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .search-input {
            width: 100%;
            padding: 12px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 25px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
        }

        .search-input:focus {
            border-color: #007bff;
        }



        /* Notification Dropdown Styles */
        .notification-dropdown {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            border: 1px solid #e2e8f0;
            width: 350px;
            max-height: 400px;
            overflow: hidden;
        }

        .notification-header {
            padding: 15px 20px;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .notification-header h3 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
            color: #1a202c;
        }

        .mark-all-read {
            background: none;
            border: none;
            color: #007bff;
            font-size: 12px;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.3s;
        }

        .mark-all-read:hover {
            background: rgba(0, 123, 255, 0.1);
        }

        .notification-list {
            max-height: 280px;
            overflow-y: auto;
        }

        .notification-item {
            padding: 15px 20px;
            border-bottom: 1px solid #f1f5f9;
            cursor: pointer;
            transition: background 0.3s;
            position: relative;
        }

        .notification-item:hover {
            background: #f8fafc;
        }

        .notification-item.unread {
            background: #f0f9ff;
        }

        .notification-item:last-child {
            border-bottom: none;
        }

        .notification-content {
            padding-right: 15px;
        }

        .notification-title {
            font-weight: 600;
            color: #1a202c;
            font-size: 14px;
            margin-bottom: 4px;
        }

        .notification-message {
            color: #4a5568;
            font-size: 13px;
            line-height: 1.4;
            margin-bottom: 4px;
        }

        .notification-time {
            color: #718096;
            font-size: 11px;
        }

        .notification-dot {
            position: absolute;
            top: 18px;
            right: 15px;
            width: 8px;
            height: 8px;
            background: #007bff;
            border-radius: 50%;
        }

        .notification-footer {
            padding: 12px 20px;
            border-top: 1px solid #e2e8f0;
            text-align: center;
        }

        .view-all-notifications {
            color: #007bff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: color 0.3s;
        }

        .view-all-notifications:hover {
            color: #0056b3;
        }

        /* Search Modal Styles */
        .search-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
        }

        .search-modal-content {
            background: white;
            border-radius: 16px;
            width: 90%;
            max-width: 600px;
            max-height: 80%;
            position: relative;
            z-index: 3001;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .search-modal-header {
            padding: 20px 25px;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .search-modal-header h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: #1a202c;
        }

        .close-search-modal {
            background: none;
            border: none;
            font-size: 24px;
            color: #6c757d;
            cursor: pointer;
            padding: 4px;
            border-radius: 4px;
            transition: background 0.3s;
        }

        .close-search-modal:hover {
            background: rgba(0, 0, 0, 0.1);
        }

        .search-results {
            padding: 20px 25px;
            max-height: 400px;
            overflow-y: auto;
        }

        .search-category {
            margin-bottom: 25px;
        }

        .search-category:last-child {
            margin-bottom: 0;
        }

        .search-category h4 {
            margin: 0 0 15px 0;
            font-size: 16px;
            font-weight: 600;
            color: #007bff;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 8px;
        }

        .search-result-item {
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
            cursor: pointer;
            transition: all 0.3s;
        }

        .search-result-item:hover {
            background: #f8fafc;
            padding-left: 10px;
            border-radius: 8px;
        }

        .search-result-item:last-child {
            border-bottom: none;
        }

        .result-title {
            font-weight: 600;
            color: #1a202c;
            font-size: 14px;
            margin-bottom: 4px;
        }

        .result-company {
            color: #007bff;
            font-size: 13px;
            margin-bottom: 2px;
        }

        .result-location {
            color: #6c757d;
            font-size: 12px;
        }

        .search-modal-footer {
            padding: 15px 25px;
            border-top: 1px solid #e2e8f0;
            text-align: center;
        }

        .view-all-results {
            background: #007bff;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .view-all-results:hover {
            background: #0056b3;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .header-container {
                padding: 16px 20px;
                max-width: 100%;
            }

            .nav-menu {
                gap: 24px;
            }

            .nav-link {
                font-size: 14px;
                padding: 8px 12px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none !important;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .header-container {
                padding: 16px 20px;
                height: 64px;
            }

            .header-actions {
                gap: 12px;
            }

            .btn-primary,
            .btn-secondary {
                padding: 10px 18px;
                font-size: 14px;
            }

            .logo {
                font-size: 20px;
            }

            .search-toggle,
            .notification-btn {
                padding: 8px;
                font-size: 18px;
            }

            .notification-dropdown {
                width: 300px;
                right: 10px !important;
            }

            .search-modal-content {
                width: 95%;
                margin: 10px;
            }

            .search-modal-header,
            .search-results,
            .search-modal-footer {
                padding: 15px 20px;
            }


        }

        @media (max-width: 640px) {
            .header-container {
                padding: 12px 16px;
                height: 60px;
            }

            .btn-primary,
            .btn-secondary {
                display: none;
            }

            .search-toggle,
            .notification-btn {
                font-size: 16px;
                padding: 6px;
            }

            .logo-image {
                 
                max-width: 250px;
            }

            .header-actions {
                gap: 4px;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 12px 16px;
            }

            .search-toggle,
            .notification-btn {
                font-size: 14px;
                padding: 6px;
            }

            .mobile-menu-toggle {
                padding: 6px;
                font-size: 18px;
            }

            .logo-image {
                 max-width: 250px;
            }

            .mobile-logo-image {
                
                max-width:220px;
            }

            .notification-dropdown {
                width: 280px;
                right: 5px !important;
            }

            .notification-header,
            .notification-item,
            .notification-footer {
                padding: 12px 15px;
            }

            .search-modal-content {
                width: 98%;
                margin: 5px;
            }

            .search-modal-header,
            .search-results,
            .search-modal-footer {
                padding: 12px 15px;
            }


        }

        /* FIX: Prevent header from breaking on mobile */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: row !important;
                justify-content: space-between !important;
                align-items: center !important;
                gap: 0 !important;
                height: 64px !important;
                padding: 16px 20px !important;
            }
        }
 

        .footer {
    background: #0f172a;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.footer-description {
    line-height: 1.6;
    margin-top: 10px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    color:#94a3b8 ;
}

.footer-links a,
.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    color:#94a3b8 ;
}


.footer-description {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 17px !important;
}


@media (min-width:1200px) and (max-width:1950px){
    .vc{
        padding-left: 180px !important;
    }
}


.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px !important;


}


.kd{
    color: #94a3b8 !important;
}

.kd:hover{
    color: #2563eb !important;
}


.footer-links a:hover {
  color: #2563eb !important;
}