/* ApplyKit Custom Styles */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 1rem;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.main-content {
    margin-top: 76px;
    min-height: calc(100vh - 76px);
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0 !important;
    border: none;
}

/* Alerts */
.alert {
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
}

/* Forms */
.form-control {
    border-radius: var(--border-radius);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
}

/* Tables */
.table {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.table thead th {
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
}

.table tbody tr {
    transition: background-color 0.3s ease;
}

.table tbody tr:hover {
    background-color: rgba(102, 126, 234, 0.1);
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
    border-radius: var(--border-radius);
}

.badge-success {
    background: var(--success-color);
}

.badge-warning {
    background: var(--warning-color);
    color: var(--dark-color);
}

.badge-danger {
    background: var(--danger-color);
}

.badge-info {
    background: var(--info-color);
}

.badge-primary {
    background: var(--primary-color);
}

/* Progress Bars */
.progress {
    height: 0.75rem;
    border-radius: var(--border-radius);
    background-color: #e9ecef;
}

.progress-bar {
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
}

/* Match Score Indicators */
.match-score {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.match-score.high {
    color: var(--success-color);
}

.match-score.medium {
    color: var(--warning-color);
}

.match-score.low {
    color: var(--danger-color);
}

/* Job Cards */
.job-card {
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    background: white;
}

.job-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.job-card .card-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    color: var(--dark-color);
}

.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.job-company {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.job-location {
    color: #6c757d;
    font-size: 0.9rem;
}

.job-salary {
    color: var(--success-color);
    font-weight: 600;
}

/* Application Status */
.status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-saved {
    background: #e9ecef;
    color: #6c757d;
}

.status-applied {
    background: #cce5ff;
    color: #0066cc;
}

.status-ats-viewed {
    background: #fff3cd;
    color: #856404;
}

.status-interview {
    background: #d1ecf1;
    color: #0c5460;
}

.status-offer {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Analytics Charts */
.chart-container {
    position: relative;
    height: 300px;
    margin: 1rem 0;
}

/* Loading Spinners */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        margin-top: 60px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --light-color: #212529;
        --dark-color: #f8f9fa;
    }
    
    body {
        background-color: #121212;
        color: #e0e0e0;
    }
    
    .card {
        background-color: #1e1e1e;
        color: #e0e0e0;
    }
    
    .table {
        color: #e0e0e0;
    }
    
    .table tbody tr:hover {
        background-color: rgba(102, 126, 234, 0.2);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: var(--border-radius);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.shadow-custom-lg {
    box-shadow: var(--shadow-lg);
}

.border-radius-custom {
    border-radius: var(--border-radius);
}

.border-radius-lg-custom {
    border-radius: var(--border-radius-lg);
}

.border-radius-xl-custom {
    border-radius: var(--border-radius-xl);
}

/* =============================================
   SEOSIGHT THEME NAVIGATION STYLES
   ============================================= */

/* Header Styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    min-height: 70px;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
    gap: 20px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}

/* Navigation List */
.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-list::-webkit-scrollbar {
    display: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: var(--header-font-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link:hover {
    color: var(--primary-accent-color);
    background: rgba(76, 194, 192, 0.1);
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 14px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Debug: Make sure dropdown is visible when active */
.dropdown.active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff !important;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999 !important;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    border: 2px solid #4cc2c0 !important;
    display: block;
}

.dropdown-item {
    background: transparent !important;
    color: #333 !important;
}

.dropdown-item:hover {
    background: #4cc2c0 !important;
    color: #fff !important;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--header-font-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-item:hover {
    background: var(--primary-accent-color);
    color: #fff;
    transform: translateX(5px);
}

.dropdown-item i {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    font-weight: 600;
    color: var(--primary-accent-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 5px;
}

.dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    margin-left: 20px;
}

/* User Profile */
.user-profile {
    position: relative;
}

.user-profile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(76, 194, 192, 0.1);
    border-radius: 25px;
    text-decoration: none;
    color: var(--header-font-color);
    transition: all 0.3s ease;
}

.user-profile-link:hover {
    background: var(--primary-accent-color);
    color: #fff;
    transform: translateY(-2px);
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-image-nav {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-info {
    text-align: left;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
}

.user-type {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-accent-color);
    color: #0a1a49;
    border-color: var(--primary-accent-color);
}

.btn-primary:hover {
    background: #3aa8a6;
    border-color: #3aa8a6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 194, 192, 0.4);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-accent-color);
    border-color: var(--primary-accent-color);
}

.btn-outline-primary:hover {
    background: var(--primary-accent-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 194, 192, 0.4);
}

/* Logout Button */
.logout-btn {
    color: #dc3545 !important;
    background: transparent !important;
}

.logout-btn:hover {
    background: #dc3545 !important;
    color: #fff !important;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--header-font-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Tablet Styles */
@media (max-width: 1200px) {
    .nav-list {
        gap: 10px;
    }
    
    .nav-link {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .nav-link i {
        font-size: 12px;
        width: 14px;
    }
    
    .nav-actions {
        gap: 10px;
        margin-left: 15px;
    }
    
    .user-profile-link {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .main-navigation {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 0;
        overflow-y: auto;
        flex: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        overflow-x: visible;
        overflow-y: visible;
    }
    
    .nav-item {
        width: 100%;
        margin: 5px 0;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 15px 20px;
        border-radius: 10px;
        white-space: normal;
    }
    
    .nav-toggle {
        display: flex;
        order: -1;
    }
    
    .nav-actions {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        margin-left: 0;
        z-index: 9998;
    }
    
    .nav-actions.active {
        left: 0;
        top: calc(100vh - 200px);
    }
    
    .auth-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .user-profile-link {
        width: 100%;
        justify-content: flex-start;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(76, 194, 192, 0.05);
        margin: 10px 0;
        border-radius: 10px;
        display: none;
        border: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* Animation for mobile menu */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.nav-list.active {
    animation: slideInFromLeft 0.3s ease;
}

/* Active state for current page */
.nav-link.active {
    color: var(--primary-accent-color);
    background: rgba(76, 194, 192, 0.1);
}

/* Hover effects for better UX */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 80%;
}

/* Main Content Padding for Fixed Header */
.main-content {
    padding-top: 0; /* Remove padding for landing page */
}

/* Ensure proper spacing for all content */
body {
    padding-top: 0;
}

/* Header scroll effect */
.header.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* =============================================
   LANDING PAGE STYLES
   ============================================= */

/* Seosight Hero Static Block */
.hero-static {
    background: linear-gradient(135deg, #051441 0%, #0a1a4a 100%);
    color: white;
    padding-top: 140px;
    padding-bottom: 70px;
    position: relative;
    overflow: hidden;
}

.hero-static::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="hero-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%2300e0d0" opacity="0.1"/><circle cx="20" cy="20" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="80" cy="30" r="0.8" fill="%2300e0d0" opacity="0.08"/><circle cx="30" cy="80" r="0.6" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.4;
}

.hero-static .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.breadcrumb span {
    color: #00e0d0;
}

/* Main Heading */
.heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Sub-line */
.sub-line {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero Buttons */
.hero-buttons {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Seosight Button Styles */
.btn--green {
    background: linear-gradient(135deg, #00e0d0, #00c4b8);
    color: #051441;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-right: 20px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 224, 208, 0.3);
    position: relative;
    overflow: hidden;
}

.btn--green::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn--green:hover::before {
    left: 100%;
}

.btn--green:hover {
    background: #00c4b8;
    color: #051441;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 224, 208, 0.4);
}

.btn--border-green {
    background: transparent;
    color: #00e0d0;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    border: 2px solid #00e0d0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn--border-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 224, 208, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn--border-green:hover::before {
    left: 100%;
}

.btn--border-green:hover {
    background: #00e0d0;
    color: #051441;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 224, 208, 0.4);
}

/* Trust Bar */
.trust-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.clients-item {
    position: relative;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #00e0d0;
    transition: all 0.3s ease;
}

.client-avatar:hover {
    transform: scale(1.1);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 10px;
    font-weight: 500;
}

/* Hero Image - MacBook Frame */
.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease 1s both;
}

.macbook-frame {
    position: relative;
    width: 580px;
    height: 360px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.macbook-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 224, 208, 0.1), rgba(0, 196, 184, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.macbook-frame:hover::before {
    opacity: 1;
}

.macbook-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.macbook-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.dashboard-screenshot {
    width: 100%;
    height: 100%;
    background: white;
    position: relative;
}

.dashboard-mockup {
    width: 100%;
    height: 100%;
    background: white;
    padding: 20px;
    color: #333;
    overflow: hidden;
}

.dashboard-header {
    margin-bottom: 20px;
}

.dashboard-nav {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
}

.dashboard-nav .nav-item {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #666;
}

.dashboard-nav .nav-item.active {
    background: #00e0d0;
    color: #051441;
}

.dashboard-content {
    height: calc(100% - 60px);
    overflow-y: auto;
}

.stats-grid {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    flex: 1;
}

.stat-icon {
    width: 30px;
    height: 30px;
    background: #00e0d0;
    color: #051441;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.stat-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.stat-info p {
    font-size: 10px;
    color: #666;
    margin: 0;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #00e0d0;
}

.job-logo {
    width: 30px;
    height: 30px;
    background: #00e0d0;
    color: #051441;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.job-details h5 {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 3px 0;
    color: #333;
}

.job-details p {
    font-size: 10px;
    color: #666;
    margin: 0 0 3px 0;
}

.match-score {
    background: #28a745;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
}

/* Section Styles */
.features-section,
.how-it-works-section,
.pricing-section,
.testimonials-section,
.contact-section {
    padding: 80px 0;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00e0d0, #00c4b8);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: linear-gradient(90deg, #00e0d0, #00c4b8);
    border-radius: 1px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: linear-gradient(90deg, #00e0d0, #00c4b8);
    border-radius: 1px;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-accent-color), #3aa8a6);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Seosight Info Boxes */
.info-boxes {
    background: linear-gradient(135deg, #f7f9fb 0%, #e8f4f8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.info-boxes::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%2300e0d0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.info-boxes .container {
    position: relative;
    z-index: 2;
}

.info-box {
    text-align: center;
    padding: 40px 20px;
    height: 100%;
    transition: all 0.3s ease;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 224, 208, 0.03), rgba(0, 196, 184, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-box:hover::before {
    opacity: 1;
}

.info-box > * {
    position: relative;
    z-index: 2;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00e0d0, #00c4b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 224, 208, 0.2);
    position: relative;
    overflow: hidden;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.icon-circle:hover::before {
    opacity: 1;
}

.info-box:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 224, 208, 0.3);
}

.icon-circle i {
    font-size: 32px;
    color: white;
    line-height: 1;
}

.info-box:hover .icon-circle {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 224, 208, 0.3);
}

.info-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.info-box:hover h4 {
    color: #00e0d0;
    transform: translateY(-2px);
}

.info-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.info-box:hover p {
    color: #555;
    transform: translateY(-2px);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 2px solid #f0f0f0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary-accent-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--primary-accent-color);
    font-size: 14px;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.author-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-accent-color);
    box-shadow: 0 0 0 0.2rem rgba(76, 194, 192, 0.25);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-accent-color);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* FadeInUp Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(even) {
    animation: floatReverse 6s ease-in-out infinite;
}

/* Decorative Elements */
.decorative-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e0d0, #00c4b8);
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Seosight Services 3-Col */
.services-3-col {
    background: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-3-col::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="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%2300e0d0" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.services-3-col .container {
    position: relative;
    z-index: 2;
}

.service-item {
    background: white;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 224, 208, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    border-top: 3px solid #00e0d0;
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00e0d0, #00c4b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-icon:hover::before {
    opacity: 1;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 224, 208, 0.3);
}

.service-icon i {
    font-size: 18px;
    color: white;
}

.service-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.service-item:hover h4 {
    color: #00e0d0;
    transform: translateY(-2px);
}

.service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.service-item:hover p {
    color: #555;
    transform: translateY(-2px);
}

/* Seosight Fun Facts */
.fun-facts {
    background: #051441;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.fun-facts::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.fun-fact-item {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fun-fact-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 224, 208, 0.1);
}

.fun-fact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00e0d0, #00c4b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 224, 208, 0.3);
}

.fun-fact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fun-fact-icon:hover::before {
    opacity: 1;
}

.fun-fact-item:hover .fun-fact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 224, 208, 0.4);
}

.fun-fact-icon i {
    font-size: 32px;
    color: white;
}

.fun-fact-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.fun-fact-item:hover .fun-fact-number {
    transform: scale(1.1);
    color: #00e0d0;
}

.fun-fact-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: #00e0d0;
    display: inline-block;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.fun-fact-item:hover .fun-fact-suffix {
    transform: scale(1.1);
    color: white;
}

.fun-fact-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
}

.fun-fact-item:hover .fun-fact-text {
    color: white;
    transform: translateY(-2px);
}

/* Seosight Product Showcase */
.product-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.product-showcase::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="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="%2300e0d0" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.4;
}

.product-showcase .container {
    position: relative;
    z-index: 2;
}

.showcase-image {
    position: relative;
}

.imac-frame {
    width: 540px;
    height: 340px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 20px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.imac-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 224, 208, 0.1), rgba(0, 196, 184, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.imac-frame:hover::before {
    opacity: 1;
}

.imac-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.imac-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.screenshot-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.screenshot-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screenshot-item.active {
    opacity: 1;
}

.dashboard-mockup {
    width: 100%;
    height: 100%;
    background: white;
    padding: 20px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mockup-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.mockup-content {
    font-size: 14px;
    color: #666;
}

.showcase-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.2;
}

.checklist {
    margin-bottom: 30px;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-radius: 4px;
}

.checklist-item:hover {
    background: rgba(0, 224, 208, 0.05);
    padding-left: 10px;
}

.checklist-item i {
    color: #00e0d0;
    margin-right: 15px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.checklist-item:hover i {
    transform: scale(1.2);
    color: #00c4b8;
}

/* Seosight Pricing Table */
.pricing-table {
    background: #f7f9fb;
    padding: 80px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.discount {
    background: linear-gradient(135deg, #00e0d0, #00c4b8);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 5px;
    box-shadow: 0 2px 6px rgba(0, 224, 208, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ccc, #bbb);
    transition: .4s;
    border-radius: 30px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, white, #f8f9fa);
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background: linear-gradient(135deg, #00e0d0, #00c4b8);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(0, 224, 208, 0.2);
}

input:checked + .slider:before {
    transform: translateX(30px);
    background: linear-gradient(135deg, white, #f8f9fa);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-top: 4px solid #00e0d0;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 224, 208, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00e0d0, #00c4b8, #00e0d0);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00e0d0, #00c4b8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 224, 208, 0.3);
    animation: float 3s ease-in-out infinite;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-header h3 {
    color: #00e0d0;
    transform: translateY(-2px);
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
}

.pricing-card:hover .amount {
    color: #00e0d0;
    transform: scale(1.05);
}

.amount.yearly {
    display: none;
}

.period {
    font-size: 16px;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features li {
    color: #555;
    transform: translateX(5px);
}

.pricing-features li i {
    color: #00e0d0;
    margin-right: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features li i {
    transform: scale(1.2);
    color: #00c4b8;
}

/* Seosight Testimonials Slider */
.testimonials-slider {
    background: linear-gradient(135deg, #051441 0%, #0a1a4a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-slider::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="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2300e0d0" opacity="0.2"/><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.3"/><circle cx="40" cy="15" r="0.8" fill="%2300e0d0" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.6;
}

.testimonials-slider .container {
    position: relative;
    z-index: 2;
}

.testimonials-slider .section-title,
.testimonials-slider .section-subtitle {
    color: white;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #00e0d0;
    font-size: 24px;
    opacity: 0.8;
    animation: float 4s ease-in-out infinite;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
    transition: all 0.3s ease;
}

.testimonial-slide:hover .testimonial-content p {
    color: #00e0d0;
    transform: translateY(-2px);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-slide:hover .author-avatar img {
    transform: scale(1.1);
    border-color: #00e0d0;
    box-shadow: 0 4px 15px rgba(0, 224, 208, 0.3);
}

.author-info h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    transition: all 0.3s ease;
}

.testimonial-slide:hover .author-info h5 {
    color: #00e0d0;
    transform: translateY(-2px);
}

.author-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.testimonial-slide:hover .author-info p {
    color: #555;
    transform: translateY(-2px);
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #00e0d0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.rating i:hover {
    transform: scale(1.2);
    color: #00c4b8;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00e0d0, #00c4b8);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dot:hover::before {
    opacity: 0.5;
}

.dot.active {
    background: #00e0d0;
}

/* Seosight Blog Grid */
.blog-grid {
    background: linear-gradient(135deg, #f7f9fb 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.blog-grid::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="hexagons" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,10 25,20 15,25 5,20 5,10" fill="none" stroke="%2300e0d0" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.4;
}

.blog-grid .container {
    position: relative;
    z-index: 2;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 224, 208, 0.05), rgba(0, 196, 184, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card > * {
    position: relative;
    z-index: 2;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #00e0d0, #00c4b8);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 224, 208, 0.3);
    transition: all 0.3s ease;
}

.blog-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 224, 208, 0.4);
}

.blog-content {
    padding: 20px;
}

.blog-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-content h4 {
    color: #00e0d0;
    transform: translateY(-2px);
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-content p {
    color: #555;
    transform: translateY(-2px);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.blog-meta span {
    transition: color 0.3s ease;
}

.blog-meta span:hover {
    color: #00e0d0;
}

/* Seosight FAQ Accordion */
.faq-accordion {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-accordion::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="circles" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%2300e0d0" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="%2300e0d0" opacity="0.15"/><circle cx="50" cy="20" r="1.5" fill="%2300e0d0" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
    opacity: 0.3;
}

.faq-accordion .container {
    position: relative;
    z-index: 2;
}

.accordion {
    border: none;
}

.accordion-item {
    border: 1px solid #eef2f6;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.accordion-item:hover {
    border-color: #00e0d0;
    box-shadow: 0 5px 15px rgba(0, 224, 208, 0.1);
}

.accordion-button {
    background: white;
    border: none;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accordion-button:hover {
    color: #00e0d0;
    background: #f8f9fa;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 224, 208, 0.05), transparent);
    transition: left 0.5s ease;
}

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #00e0d0;
}

.accordion-button i {
    color: #00e0d0;
    font-size: 18px;
    transition: all 0.3s ease;
}

.accordion-button:hover i {
    transform: scale(1.2);
    color: #00c4b8;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px;
    background: #f8f9fa;
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.accordion-item:hover .accordion-body {
    background: #f0f8ff;
    color: #555;
}

/* Seosight Footer */
.footer {
    background: linear-gradient(135deg, #051441 0%, #0a1a4a 100%);
    color: white;
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::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="footer-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2300e0d0" opacity="0.1"/><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="15" r="0.8" fill="%2300e0d0" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.3;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-widget {
    margin-bottom: 40px;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 8px;
}

.footer-widget:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.footer-widget h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    transition: all 0.3s ease;
}

.footer-widget:hover h4 {
    color: #00e0d0;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    padding: 2px 0;
    border-radius: 2px;
}

.footer-links a:hover {
    color: #00e0d0;
    padding-left: 5px;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 224, 208, 0.5);
}

.newsletter-form .input-group {
    margin-top: 15px;
}

.newsletter-form .form-control {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 6px 0 0 6px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    border-color: #00e0d0;
    box-shadow: 0 0 0 0.2rem rgba(0, 224, 208, 0.25);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn--green {
    border-radius: 0 6px 6px 0;
    border: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 224, 208, 0.1), rgba(0, 196, 184, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    background: #00e0d0;
    color: white;
    border-color: #00e0d0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00e0d0, transparent);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom:hover p {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.footer-bottom-links a:hover {
    color: #00e0d0;
    background: rgba(0, 224, 208, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 224, 208, 0.2);
    text-shadow: 0 0 10px rgba(0, 224, 208, 0.5);
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00e0d0;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
    box-shadow: 0 0 5px rgba(0, 224, 208, 0.3);
    z-index: 1;
}

.footer-bottom-links a:hover::after {
    width: 80%;
    box-shadow: 0 0 10px rgba(0, 224, 208, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 224, 208, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 224, 208, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 224, 208, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-static {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .heading {
        font-size: 2.5rem;
    }
    
    .macbook-frame {
        width: 100%;
        max-width: 400px;
        height: 250px;
        transform: none;
        margin-top: 30px;
    }
    
    .trust-bar {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn--green,
    .btn--border-green {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Info Boxes Responsive */
    .info-boxes {
        padding: 60px 0;
    }
    
    .info-box {
        padding: 30px 15px;
        margin-bottom: 30px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .icon-circle i {
        font-size: 28px;
    }
    
    .info-box h4 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .info-box p {
        font-size: 13px;
    }
    
    /* Services Responsive */
    .services-3-col {
        padding: 60px 0;
    }
    
    .service-item {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    /* Fun Facts Responsive */
    .fun-facts {
        padding: 60px 0;
    }
    
    .fun-fact-number {
        font-size: 2.5rem;
    }
    
    .fun-fact-suffix {
        font-size: 1.5rem;
    }
    
    /* Product Showcase Responsive */
    .product-showcase {
        padding: 60px 0;
    }
    
    .imac-frame {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
    
    .showcase-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    /* Pricing Responsive */
    .pricing-table {
        padding: 60px 0;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 30px;
    }
    
    /* Testimonials Responsive */
    .testimonials-slider {
        padding: 60px 0;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Blog Responsive */
    .blog-grid {
        padding: 60px 0;
    }
    
    /* FAQ Responsive */
    .faq-accordion {
        padding: 60px 0;
    }
    
    /* Footer Responsive */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .heading {
        font-size: 2rem;
    }
    
    .sub-line {
        font-size: 1.1rem;
    }
    
    .macbook-frame {
        height: 200px;
    }
    
    .dashboard-mockup {
        padding: 15px;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 8px;
    }
}

/* ========================================
   JOBSEEKER DASHBOARD STYLES
   ======================================== */

/* Dashboard Layout */
.jobseeker-dashboard {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideInDown 0.6s ease-out;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card--blue {
    border-left-color: #3498db;
    background: linear-gradient(135deg, #ffffff, #f8f9ff);
}

.stat-card--green {
    border-left-color: #2ecc71;
    background: linear-gradient(135deg, #ffffff, #f8fff9);
}

.stat-card--purple {
    border-left-color: #9b59b6;
    background: linear-gradient(135deg, #ffffff, #faf8ff);
}

.stat-card--orange {
    border-left-color: #f39c12;
    background: linear-gradient(135deg, #ffffff, #fffbf8);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.stat-card--blue .stat-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.stat-card--green .stat-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.stat-card--purple .stat-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

.stat-card--orange .stat-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.dashboard-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.dashboard-card:hover::before {
    opacity: 1;
}

.card-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #575095, #1b71c5);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
}

.card-body {
    padding: 2rem;
}

/* Profile Completion */
.progress-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.progress-ring {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.8s ease;
}

.progress-ring-fill {
    stroke: #17a2b8;
    stroke-linecap: round;
    filter: drop-shadow(0 2px 4px rgba(23, 162, 184, 0.3));
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17a2b8;
}

.progress-info {
    flex: 1;
}

.progress-description {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Quick Actions */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.quick-action-btn:hover::before {
    left: 100%;
}

.quick-action-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quick-action--primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.quick-action--success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.quick-action--info {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
}

.quick-action--warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.quick-action-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.quick-action-btn span {
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Recent Activity */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item:hover {
    background: #f8f9fa;
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 10px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.activity-icon--success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
}

.activity-icon--info {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.activity-icon--warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.activity-content {
    flex: 1;
}

.activity-text {
    font-weight: 500;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
}

.activity-time {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Tips */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tip-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.tip-item:hover {
    background: #f8f9fa;
    margin: 0 -1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

/* Bottom Action Bar */
.bottom-action-bar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out;
}

.bottom-action-bar::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.action-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.action-text h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.action-text p {
    margin: 0;
    opacity: 0.9;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.action-buttons .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .progress-section {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .action-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .jobseeker-dashboard {
        padding: 1rem 0;
    }
    
    .welcome-title {
        font-size: 1.75rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .stat-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .progress-circle {
        width: 100px;
        height: 100px;
    }
    
    .bottom-action-bar {
        padding: 1.5rem;
    }
}