/* Hero Section New Styles */
:root {
    --background: #0a0a0a;
    --foreground: #ffffff;
    --primary: #3b82f6;
    --primary-foreground: #ffffff;
    --muted: #a1a1aa;
    --muted-foreground: #e0e0e6;
    --border: #27272a;
    --surface: #18181b;
    --surface-elevated: #27272a;
    --card: #18181b;
    --card-foreground: #ffffff;
    --accent: #27272a;
    --accent-foreground: #ffffff;
    --ring: #3b82f6;
}

.hero-section-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #18181b 50%, #0a0a0a 100%);
}

.hero-background-new {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-background-new::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--background);
    opacity: 0.7;
}

.hero-decorative-new {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.hero-decorative-new .float-element {
    position: absolute;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    animation: float 6s ease-in-out infinite;
}

.hero-decorative-new .float-element:nth-child(1) {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    animation-delay: 0s;
}

.hero-decorative-new .float-element:nth-child(2) {
    bottom: 5rem;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border-color: rgba(59, 130, 246, 0.2);
    animation-delay: 2s;
}

.hero-decorative-new .float-element:nth-child(3) {
    top: 50%;
    right: 5rem;
    width: 4rem;
    height: 4rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    transform: rotate(45deg);
    animation-delay: 4s;
}

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

.hero-content-new {
    position: relative;
    z-index: 20;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

    .hero-content-new {
        padding: 12rem 1rem 2rem 1rem;
    }

.hero-inner-new {
    max-width: 64rem;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

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

.hero-title-new {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto
}

.hero-title-new .text-primary {
    color: var(--primary);
}

.hero-subtitle-new {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-features-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
    .hero-features-new {
        flex-direction: row;
    }
}

.hero-feature-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature-new svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 1));
}

.hero-feature-new span {
    font-weight: 500;
}

.hero-divider-new {
    display: none;
    width: 1px;
    height: 1.5rem;
    background: lightgray;
}

@media (min-width: 640px) {
    .hero-divider-new {
        display: block;
    }
}

.hero-actions-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: slideUp 1s ease-out 0.3s both;
}

@media (min-width: 640px) {
    .hero-actions-new {
        flex-direction: row;
    }
}

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

.btn-primary-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.75rem;
    border-radius: 6px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 600;
    padding: 0 2rem;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

.btn-primary-new:hover {
    background: #2563eb;

    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

.btn-primary-new svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-primary-new:hover svg {
    transform: translateX(4px);
}

.btn-secondary-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.75rem;
    border-radius: 6px;
    background: var(--background);
    color: var(--primary);
    font-weight: 500;
    padding: 0 2rem;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    cursor: pointer;
}

.btn-secondary-new:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}



@media (max-width: 640px) {
    .hero-actions-new {
        width: 100%;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        justify-content: center;
    }
}


/* Workers Statistics Section */


/* Responsive adjustments */
