﻿/* ===== JOBNEXAAR - DISTINGUISHED EDITION v5.0 ===== */
/* Professional Job Placement Website - Elite Tech Standards */

/* ===== CSS VARIABLES - ELITE DESIGN SYSTEM ===== */
:root {
    /* Flagship Palette */
    --primary: #2dd4bf;
    --primary-color: #2dd4bf;
    /* Legacy alias */
    --primary-glow: rgba(45, 212, 191, 0.4);
    --primary-dark: #0d9488;
    --primary-light: #99f6e4;

    --secondary: #818cf8;
    --secondary-color: #818cf8;
    /* Legacy alias */
    --accent: #fbbf24;
    --accent-color: #fbbf24;
    /* Legacy alias */

    /* Deep Space Surfaces */
    --bg-main: #020617;
    --bg-card: rgba(15, 23, 42, 0.5);
    --text-main: #f8fafc;
    --text-primary: #ffffff;
    /* Legacy alias */
    --text-muted: #94a3b8;
    --text-secondary: #cbd5e1;
    /* Legacy alias */
    --text-dim: rgba(255, 255, 255, 0.5);

    /* Border & Glass */
    --border: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
    /* Legacy alias */
    --border-hover: rgba(45, 212, 191, 0.3);
    --glass-bg: rgba(15, 23, 42, 0.5);
    --glass-blur: 24px;
    --header-bg: rgba(2, 6, 23, 0.7);

    /* Precision Tokens */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-premium: 24px;
    /* Legacy alias */
    --shadow-premium: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-base: all 0.3s ease;
    /* Legacy alias */

    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
    --secondary-gradient: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);

    /* Fluid Spacing Engine */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(1rem, 2vw, 1.5rem);
    --space-md: clamp(2rem, 4vw, 3rem);
    --space-lg: clamp(2rem, 4vw, 3rem);
    --space-xl: clamp(3rem, 6vw, 5rem);

    /* Font Weights */
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}


[data-theme="light"] {
    --bg-main: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border: rgba(0, 0, 0, 0.08);
}

/* Base Precision Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom);
}

/* Noise Texture - Organic Finish */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
.logo-text-slim {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
    font-weight: 800;
}

/* Fluid Layout Engine */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* ===== DISTINGUISHED ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 40px var(--primary-glow);
    }
}

/* Utility - Mobile/Desktop Isolation */
.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* Global Transition Override */
.btn,
.glass-card,
.nav-link {
    transition: var(--transition);
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RECRUITMENT PIPELINE ===== */
.pipeline-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 4rem 0;
    padding-top: 2rem;
    flex-wrap: wrap;
}

.pipeline-step {
    flex: 1;
    min-width: 180px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pipeline-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(15, 23, 42, 0.8);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 0 15px var(--primary-color);
    z-index: 10;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== CATEGORIZED PARTNERS ===== */
.partner-category-card {
    background: rgba(15, 23, 42, 0.4);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.category-title i {
    color: var(--info-color);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.partner-tag {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem 1.25rem;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.partner-tag:hover {
    background: var(--primary-color);
    color: #020617;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(56, 239, 125, 0.3);
    transform: translateY(-3px);
}

/* Theme Toggle Switch */
.theme-toggle-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    transform: rotate(15deg) scale(1.1);
    background: var(--primary-color);
    color: white;
}

.light-icon {
    display: none;
}

[data-theme="light"] .dark-icon {
    display: none;
}

[data-theme="light"] .light-icon {
    display: block;
}

/* ===== NATIVE APP-STYLE MODAL (DRAWER) ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: none;
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #020617;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    padding: var(--space-md);
    position: relative;
    box-shadow: var(--shadow-premium);
    animation: fadeInUp 0.5s var(--transition);
}

@media (max-width: 768px) {
    .modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .modal-content {
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        animation: slideUpDrawer 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    }
}

@keyframes slideUpDrawer {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.step-dot {
    width: 12px;
    height: 12px;
    background: var(--border);
    border-radius: 50%;
    transition: var(--transition);
}

.step-dot.active {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: scale(1.2);
}

/* INPUT PRECISION */
.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.input-group input:focus {
    border-color: var(--primary);
    background: rgba(45, 212, 191, 0.05);
}

/* NOTIFICATION TOAST - ELITE CAPSULE (TOP SINGLE LINE) */
.notification-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-200%);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    z-index: 11000;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    opacity: 0;
}

.notification-toast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* HIDDEN BY DEFAULT (Mobile/Tablet) */
.notification-toast {
    display: none !important;
}

/* SHOW ONLY ON DESKTOP */
@media (min-width: 992px) {
    .notification-toast {
        display: flex !important;
    }
}

/* Hide on mobile devices */
@media (max-width: 991px) {

    .notification-toast,
    #notificationToast {
        display: none !important;
    }
}

.notif-badge {
    width: 32px;
    height: 32px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-badge i {
    font-size: 0.9rem !important;
}

.notif-text {
    flex: 1;
}

/* Job Card Micro-Interactions */
.job-card {
    position: relative;
    overflow: hidden;
}

.job-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 239, 125, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.job-card:hover::after {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.calc-container {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: visible;
}

.calc-inputs {
    flex: 1.2;
    padding-right: 2rem;
    border-right: 1px solid var(--border-color);
}

.calc-inputs label {
    display: block;
    color: var(--text-main);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.calc-slider {
    width: 100%;
    height: 6px;
    background: rgba(56, 239, 125, 0.1);
    border-radius: 10px;
    appearance: none;
    cursor: pointer;
    margin-bottom: 2rem;
    outline: none;
}

.calc-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-color);
    transition: transform 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-display {
    flex: 0.8;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(2, 6, 23, 1) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 40px rgba(56, 239, 125, 0.05);
}

.payout-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 1rem 0;
    text-shadow: 0 0 30px rgba(56, 239, 125, 0.3);
}

@media (max-width: 992px) {
    .calc-container {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }

    .calc-inputs {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 2rem;
        width: 100%;
    }

    .calc-display {
        min-width: 100%;
        width: 100%;
        padding: 2rem;
    }

    .payout-amount {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .calc-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .payout-amount {
        font-size: 2.8rem;
    }

    .jobs-carousel {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .job-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .calc-container {
        padding: 1.5rem 1rem;
    }

    .payout-amount {
        font-size: 2.2rem;
        letter-spacing: -2px;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation utility classes */
.animate-on-scroll {
    opacity: 0;
    transition: none;
}

.animate-on-scroll.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in {
    animation-name: fadeIn;
}

.slide-in-left {
    animation-name: slideInLeft;
}

.slide-in-right {
    animation-name: slideInRight;
}

.scale-in {
    animation-name: scaleIn;
}

/* Stagger delays for sequential animations */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

.stagger-6 {
    animation-delay: 0.6s;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== COMPREHENSIVE ANIMATION SYSTEM ===== */

/* Scroll-triggered entrance animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Continuous animations */
@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {

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

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Apply animations to sections */
.section {
    animation: fadeInUp 0.8s ease-out;
}

.section-header {
    animation: fadeInUp 0.6s ease-out;
}

.section-header h2 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-header p {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Card animations */
.job-card,
.testimonial-card,
.reward-badge,
.stat-card,
.partner-logo {
    animation: scaleIn 0.6s ease-out both;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.job-card:hover,
.testimonial-card:hover,
.reward-badge:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Stagger animation delays for cards */
.job-card:nth-child(1) {
    animation-delay: 0.1s;
}

.job-card:nth-child(2) {
    animation-delay: 0.2s;
}

.job-card:nth-child(3) {
    animation-delay: 0.3s;
}

.job-card:nth-child(4) {
    animation-delay: 0.4s;
}

.job-card:nth-child(5) {
    animation-delay: 0.5s;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.reward-badge:nth-child(1) {
    animation-delay: 0.1s;
}

.reward-badge:nth-child(2) {
    animation-delay: 0.2s;
}

.reward-badge:nth-child(3) {
    animation-delay: 0.3s;
}

/* Button animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn:active {
    transform: translateY(-1px);
}

/* Logo animation */
.logo {
    animation: slideDown 0.6s ease-out;
}

.logo-img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 14px;
}

.logo:hover .logo-img {
    transform: rotate(360deg) scale(1.1);
}

/* Navigation link animations */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero section animations */
.hero-content h1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-tagline {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Floating animation for decorative elements */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

/* ===== BENTO GRID SYSTEM - PRECISION HUD ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1.5rem;
    margin: var(--space-md) auto;
    max-width: 1400px;
}

/* Specific centering for 3-item grids */
.industry-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1200px !important;
    margin: 2rem auto !important;
    padding: 0 1.5rem;
}

.edge-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1200px !important;
    margin: 2rem auto !important;
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-grid,
    .edge-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.bento-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    transition: var(--transition);
    backdrop-filter: blur(var(--glass-blur));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-premium);
}

.depth-card {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid var(--border) !important;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid,
    .edge-grid {
        grid-template-columns: 1fr !important;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }
}

/* ===== LIVE TICKER ===== */
.trust-ticker-container {
    background: rgba(15, 118, 110, 0.05);
    border-top: 1px solid rgba(15, 118, 110, 0.1);
    border-bottom: 1px solid rgba(15, 118, 110, 0.1);
    padding: 0.75rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.trust-ticker {
    display: inline-block;
    animation: ticker 40s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 3rem;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.ticker-item i {
    color: var(--success-color);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Partner logo hover effect */
.partner-logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo:hover {
    transform: translateY(-10px) rotate(5deg) scale(1.1);
}

/* Founder section animations */
.founder-card {
    animation: fadeInUp 0.8s ease-out;
}

.founder-image {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-card:hover .founder-image {
    transform: scale(1.1) rotate(2deg);
}

/* Stats counter animation */
.stat-number {
    animation: scaleIn 0.6s ease-out both;
}

/* Icon animations */
.fa-star {
    color: #FFD700;
}

.fa-star,
.fa-check-circle,
.fa-shield-alt {
    transition: transform 0.3s ease;
}

.testimonial-rating i:hover {
    transform: scale(1.3) rotate(15deg);
}

/* ===== ELITE HEADER - APNA/NAUKRI HYBRID ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 110px;
    background: rgba(2, 6, 23, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* PRINCIPAL ENGINEER GRADE - 3D BRANDING */
.premium-3d-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    perspective: 1000px;
}

.logo-img {
    height: 75px;
    /* Mathematically balanced with the 2-line text group */
    width: auto;
    border-radius: 18px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.03);
    padding: 2px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main-text {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.5px;
    text-transform: capitalize;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    /* High-Fidelity 3D Lift */
    text-shadow:
        1px 1px 0px rgba(255, 255, 255, 0.1),
        0px 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.logo-sub-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 2px;
    opacity: 0.9;
}

/* Hover Physics */
.premium-3d-logo:hover .logo-img {
    transform: rotateY(-15deg) rotateX(10deg) translateY(-5px);
    filter: drop-shadow(0 20px 30px rgba(56, 239, 125, 0.2));
}

.premium-3d-logo:hover .logo-main-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transform: translateZ(20px);
    transition: all 0.3s ease;
}

.nav {
    margin-left: 1rem;
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    list-style: none;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* HEADER SEARCH HUB */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-search-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.header-search-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(56, 239, 125, 0.1);
}

.search-icon-mini {
    color: var(--primary);
    font-size: 0.9rem;
}

.header-search-container input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.85rem;
    width: 100%;
    cursor: pointer;
}

.header-search-container input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Visibility Utilities */
@media (max-width: 768px) {
    .header-center-branding.show-on-mobile {
        display: flex;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .header-left {
        gap: 0.5rem !important;
    }
}

.header-search-bar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-search-bar:focus-within {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 30px var(--primary-glow);
}

.header-search-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    width: 100%;
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-login-slim {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 800;
    background: var(--primary);
    color: #000;
    border-radius: 50px;
    text-transform: uppercase;
}

.theme-toggle-btn-slim {
    background: none;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== HERO ARCHITECTURE - APNA STYLE ===== */
.hero {
    padding: 160px var(--space-sm) var(--space-md);
    text-align: center;
    background: radial-gradient(circle at top, #0f172a 0%, #020617 100%);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1;
    margin-bottom: 2rem;
    color: white;
}

.hero h1 span {
    color: var(--primary);
}

.hero-search-hub {
    max-width: 900px;
    margin: 0 auto;
}

.glass-search-bar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(var(--glass-blur));
}

.glass-search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 60px var(--primary-glow);
}

.glass-search-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    width: 100%;
    font-size: 1.1rem;
}

.glass-search-bar i {
    font-size: 1.5rem;
    color: var(--primary);
}


/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.fab-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--error-color);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse-red 2s infinite;
}

/* ===== IN-CARD CALCULATOR STYLES (DARK PREMIUM) ===== */
.card-calculator {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0a0f1e 0%, #0f1419 100%);
    border-radius: 16px;
    border: 1.5px solid rgba(56, 239, 125, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(56, 239, 125, 0.03);
}

.calc-mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calc-mini-header span:first-child {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 1px;
}

.calc-result {
    color: #38ef7d;
    font-weight: 900;
    font-size: 1.3rem;
    text-shadow: 0 0 20px rgba(56, 239, 125, 0.3);
}

.card-slider {
    width: 100%;
    height: 8px;
    background: rgba(56, 239, 125, 0.1);
    border-radius: 10px;
    appearance: none;
    outline: none;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.card-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(56, 239, 125, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(56, 239, 125, 0.3);
}

.card-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(56, 239, 125, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(56, 239, 125, 0.3);
}

.calc-label {
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
    font-weight: 600;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 87, 108, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(245, 87, 108, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 87, 108, 0);
    }
}

/* ===== TRUST MODAL ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    max-width: 600px;
    width: 100%;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    animation: modalSlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.3s;
}

.trust-badge-large {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    color: var(--text-secondary);
    transition: 0.2s;
    padding: 0.25rem 0;
    font-size: 0.85rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-gradient);
    padding: 6rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTIONS WITH GRADIENT BACKGROUNDS ===== */
.section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(17, 153, 142, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section>* {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== BUTTONS WITH ENHANCED EFFECTS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* ===== ENHANCED PARTNERS SECTION ===== */
.partners-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.8) 0%, rgba(237, 242, 247, 0.8) 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-logo {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.partner-logo:hover::before {
    opacity: 0.05;
}

.partner-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.partner-logo:hover img {
    transform: scale(1.1);
}

/* ===== PREMIUM FOUNDER SECTION ===== */
.founder-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(17, 153, 142, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.founder-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
}

.founder-image-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.founder-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.founder-card:hover .founder-image-container::before {
    opacity: 1;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-card:hover .founder-image {
    transform: scale(1.08);
}

.founder-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-title {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.founder-bio {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    color: var(--text-primary);
    transition: all var(--transition-base);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(17, 153, 142, 0.3);
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.founder-stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.founder-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.founder-stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.founder-stat-label {
    color: #6b7280;
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Button - Dark Premium */
.btn-dark-premium {
    background: #0f172a !important;
    color: white !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    text-shadow: none !important;
}

.btn-dark-premium:hover {
    background: #1e293b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
}

/* ===== JOBS CAROUSEL ===== */
.jobs-carousel-container {
    position: relative;
    padding: 0 3rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: all var(--transition-base);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(17, 153, 142, 0.3);
}

.carousel-nav-left {
    left: 0;
}

.carousel-nav-right {
    right: 0;
}

.jobs-carousel-wrapper {
    overflow: hidden;
}

.jobs-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.jobs-carousel::-webkit-scrollbar {
    display: none;
}

/* ===== REFERRAL SECTION ===== */
.referral-section {
    background: linear-gradient(135deg, #0f766e 0%, #11998e 50%, #14b8a6 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.referral-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.referral-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.referral-header {
    text-align: center;
    margin-bottom: 3rem;
}

.referral-header h2 {
    color: white;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.referral-rewards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.reward-badge {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-premium);
}

.reward-badge:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.reward-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.reward-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.reward-description {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.25rem;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: default;
}

.testimonial-rating i:hover {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 5rem 2rem;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.trust-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.trust-image-wrapper:hover .trust-image {
    transform: scale(1.05);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-base);
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(17, 153, 142, 0.1);
    transform: translateY(-2px);
}

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

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-upload-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed #cbd5e0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    background: var(--bg-secondary);
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: rgba(17, 153, 142, 0.05);
    transform: translateY(-2px);
}

/* Checkboxes */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.checkbox-label:hover {
    background: var(--bg-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card:hover::before {
    opacity: 0.05;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #020617;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(17, 153, 142, 0.3);
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.contact-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ===== SUPREME JOB CARD DESIGN ===== */
.job-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    transition: var(--transition) !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(var(--glass-blur)) !important;
}

.job-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    border-color: var(--primary-color) !important;
    box-shadow: var(--shadow-premium) !important;
}

.job-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(45, 212, 191, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(45, 212, 191, 0.2);
}

.job-card-header {
    text-align: center;
    margin-bottom: 1rem;
}

/* ===== ELITE EARNING CALCULATOR - 10/10 UX ===== */
.calc-container {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(var(--glass-blur));
}

.calc-inputs {
    flex: 1.2;
}

.calc-inputs h4 {
    margin-bottom: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.calc-slider-box {
    padding: 2rem 0;
}

.calc-slider {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    appearance: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    appearance: none;
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-glow);
    border: 4px solid #020617;
}

.calc-display {
    flex: 0.8;
    background: #020617;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.payout-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin: 1rem 0;
    text-shadow: 0 0 40px var(--primary-glow);
}

/* ===== JOB CARDS - APNA HYBRID SYSTEM ===== */
.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
    transition: var(--transition);
}

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

.job-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

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

.job-title {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.job-company {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.job-details {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}

.job-detail-item {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ===== SUCCESS STATS - PREMIUM HUD ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* LEGACY HEADER STYLES CLEANED UP BY DISTINGUISHED ENGINEER */

/* ===== ELITE FOOTER - DEEP SPACE ===== */
.footer {
    padding: var(--space-xl) var(--space-sm) var(--space-sm);
    background: #010413;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-md);
}

.footer h3 {
    font-size: 1rem;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: var(--space-lg);
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* ===== FINAL MASTER RESPONSIVE GRID ===== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        height: 60px !important;
        background: rgba(2, 6, 23, 0.98) !important;
    }

    .header-container {
        padding: 0 0.75rem !important;
    }

    .header-search-container {
        display: none !important;
    }

    /* Scaling Logo for Mobile */
    .logo-img {
        height: 34px !important;
        border-radius: 8px !important;
    }

    .logo-text-group {
        gap: 0 !important;
    }

    .logo-main-text {
        font-size: 1.15rem !important;
        letter-spacing: -0.5px !important;
        font-weight: 800 !important;
    }

    .logo-sub-tag {
        font-size: 0.55rem !important;
        display: block !important;
    }

    .header .nav,
    .header .btn-login-slim {
        display: none !important;
    }

    .hero {
        padding: 95px 1rem 2.5rem !important;
        min-height: auto !important;
    }

    .hero h1 {
        font-size: 2.1rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.2 !important;
        letter-spacing: -1.2px !important;
    }

    /* Clunky vs Elegant Refinements */
    .glass-search-bar {
        padding: 0.7rem 1.25rem !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        margin-bottom: 1.25rem !important;
        gap: 0.8rem !important;
    }

    .btn {
        height: 52px !important;
        border-radius: 12px !important;
        font-size: 0.85rem !important;
    }

    /* OTP Input Elite Scaling */
    #trackerOTP {
        height: 60px !important;
        font-size: 1.8rem !important;
        letter-spacing: 12px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        color: #38ef7d !important;
    }
}


.carousel-nav {
    display: none;
}

.jobs-carousel-container {
    padding: 0;
}

/* Job Cards - Swipable Horizontal Carousel on mobile */
.jobs-carousel {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding: 1rem !important;
    padding-bottom: 2.5rem !important;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Job Card Ultra-Compact (Apna Style) */
.job-card {
    min-width: 280px !important;
    flex: 0 0 280px !important;
    padding: 1rem !important;
    display: grid !important;
    grid-template-columns: 48px 1fr !important;
    grid-template-areas:
        "icon header"
        "details details"
        "button button" !important;
    gap: 0.5rem 1rem !important;
    align-items: center !important;
    scroll-snap-align: center;
    margin: 0 !important;
}

.job-icon-wrapper {
    grid-area: icon !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    border-radius: 12px !important;
}

.job-icon {
    font-size: 1.25rem !important;
}

.job-card-header {
    grid-area: header !important;
    text-align: left !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.job-title {
    font-size: 1rem !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
}

.job-company {
    font-size: 0.75rem !important;
    letter-spacing: 0.5px !important;
}

.job-details {
    grid-area: details !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    padding-top: 0.75rem !important;
    margin-bottom: 0.5rem !important;
    border-top: 1px solid var(--border-color) !important;
}

.job-detail-item {
    font-size: 0.7rem !important;
    gap: 0.35rem !important;
}

.job-requirements {
    display: none !important;
    /* Purge description on mobile to save space */
}

.job-card .btn-primary {
    grid-area: button !important;
    padding: 0.6rem !important;
    font-size: 0.75rem !important;
    margin: 0 !important;
    border-radius: 8px !important;
}

.job-badge {
    font-size: 0.55rem !important;
    top: 0.5rem !important;
    right: 0.5rem !important;
    padding: 2px 6px !important;
}

/* Prevent toast & popup collisions on mobile - Compact Pills */
.notification-toast {
    bottom: auto !important;
    top: 85px !important;
    /* Move higher to safety */
    right: 10px !important;
    left: auto !important;
    width: 220px !important;
    font-size: 0.7rem !important;
    padding: 0.6rem 1rem !important;
    border-radius: 50px !important;
    z-index: 10005 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
    display: flex !important;
    align-items: center !important;
}

.hiring-popup {
    bottom: 85px !important;
    /* Just above fixed nav */
    left: 10px !important;
    right: auto !important;
    width: 240px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.65rem !important;
    border-radius: 12px !important;
    transform: translateY(150%) !important;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
    border-left: 3px solid #fbbf24 !important;
}

.hiring-popup.active {
    transform: translateY(0) !important;
}

.hiring-brand-name {
    font-size: 0.85rem !important;
    margin: 0 !important;
    font-weight: 800 !important;
}

.live-indicator {
    font-size: 0.55rem !important;
    margin-bottom: 2px !important;
}

.hiring-popup a {
    font-size: 0.6rem !important;
    margin-top: 2px !important;
}

/* FOUNDER SECTION - MOBILE RESPONSIVE */
.founder-card {
    grid-template-columns: 1fr;
    gap: 0;
}

.founder-image-container {
    max-height: 400px;
    min-height: 300px;
}

.founder-content {
    padding: 2rem 1.5rem;
}

.founder-name {
    font-size: 2rem;
}

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

.partners-section {
    padding: 2rem 1rem;
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-logo {
        padding: 1rem;
    }

    .partner-logo img {
        max-height: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .founder-name {
        font-size: 1.6rem !important;
    }

    .founder-image-container {
        max-height: 300px !important;
        min-height: 300px !important;
    }

    /* Job Cards - single column on very small screens */
    .jobs-carousel {
        grid-template-columns: 1fr;
    }

    .founder-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* ===== PRINT STYLES ===== */
@media print {

    .header,
    .hero,
    .footer {
        display: none;
    }

}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
    border: none;
    outline: none;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px !important;
        right: 20px !important;
        left: auto !important;
        width: 50px;
        height: 50px;
        z-index: 9998;
    }
}

/* Specific Login Link Styling */
.login-nav-link {
    background: rgba(17, 153, 142, 0.08) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px !important;
    border: 1px solid rgba(17, 153, 142, 0.2) !important;
    margin-left: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.login-nav-link:hover {
    background: var(--primary-gradient) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
    border-color: transparent !important;
}

.login-nav-link i {
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .login-nav-link {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center;
    }
}

/* ===== INDIA GROWTH ROADMAP ===== */
.roadmap-svg-container {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    background: #020617;
    border-radius: 30px;
    padding: 3rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.roadmap-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(17, 153, 142, 0.2));
}

.roadmap-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    stroke: var(--primary-color);
    stroke-width: 2.5;
    fill: none;
    transition: stroke-dashoffset 0.1s linear;
}

.roadmap-dot {
    fill: #38ef7d;
    filter: drop-shadow(0 0 5px #38ef7d);
}

.roadmap-dot.pulse {
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% {
        r: 3;
        opacity: 1;
    }

    50% {
        r: 8;
        opacity: 0.4;
    }

    100% {
        r: 3;
        opacity: 1;
    }
}

.milestone-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: 20px;
    color: white;
    width: 200px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.milestone-badge.active {
    opacity: 1;
    transform: translateY(0);
}

.milestone-badge i {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1.5rem;
}

/* ===== ELITE MARKETING BRANDING ===== */
.brand-glow {
    filter: drop-shadow(0 0 10px rgba(118, 75, 162, 0.4));
    transition: all 0.3s ease;
}

.brand-glow:hover {
    filter: drop-shadow(0 0 20px rgba(118, 75, 162, 0.8));
    transform: scale(1.02);
}

.marketing-watermark {
    position: absolute;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.marketing-watermark.left {
    left: -5%;
}

.marketing-watermark.right {
    right: -5%;
}

.elite-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 900;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.edge-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.edge-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-10px) rotate(1deg);
}

.edge-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-3d {
    animation: float3D 6s ease-in-out infinite;
}

@keyframes float3D {

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

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

.milestone-badge h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.milestone-badge p {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* ===== LIVE HIRING POPUP ===== */
.hiring-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 5px solid #fbbf24;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    z-index: 9999;
    color: white;
    width: 320px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    transform: translateX(-150%);
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hiring-popup.active {
    transform: translateX(0);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 900;
    color: #f87171;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #f87171;
    border-radius: 50%;
    box-shadow: 0 0 10px #f87171;
    animation: pulse-red-lite 1s infinite alternate;
}

@keyframes pulse-red-lite {
    from {
        transform: scale(0.9);
        opacity: 0.6;
    }

    to {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hiring-brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fbbf24;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .hiring-popup {
        bottom: 110px;
        /* Above WhatsApp FAB */
        left: 15px;
        right: 15px;
        width: auto;
    }
}

/* ===== COMPANY SOCIAL FOLLOW BUTTONS ===== */
.btn-social-follow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-social-follow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-social-follow.linkedin {
    background: #0077b5;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-init {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Glassy Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10001;
    justify-content: space-around;
    align-items: center;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
}

.nav-item-mobile {
    color: #94a3b8;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.65rem;
    gap: 4px;
}

.nav-item-mobile.active {
    color: var(--primary-light);
}

.nav-item-mobile i {
    font-size: 1.25rem;
}

/* Calculator Breakdown Style */
.calc-breakdown {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .hiring-popup {
        bottom: 85px;
        /* Above mobile dock */
    }
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #6366f1, #a855f7);
    border-radius: 20px;
    border: 3px solid #020617;
}

.cursor-spotlight {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle 800px at var(--x, 0) var(--y, 0), rgba(99, 102, 241, 0.05), transparent 80%);
}

.bg-circuit {
    background-color: #020617;
    background-image:
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(168, 85, 247, 0.15) 0px, transparent 50%);
}

.elite-gold-card {
    position: relative;
    border: 1px solid rgba(251, 191, 36, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    overflow: hidden;
}

.elite-gold-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: 0.5s;
}

.elite-gold-card:hover::before {
    left: 100%;
}

.floating-3d {
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.3));
}

@media (max-width: 768px) {
    .cursor-spotlight {
        display: none;
    }
}

@keyframes loadLine {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

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

.btn-social-follow.whatsapp {
    background: #25D366;
}

/* Footer & Social Spacing Fixes */
.company-social-section {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    padding-bottom: 5rem;
}

.btn-social-follow {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
}

.btn-social-follow:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-connect-btn {
    transition: all 0.3s ease;
}

.social-connect-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* ===== HERO SEARCH HUB & PILLS ===== */
.glass-search-bar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.glass-search-bar:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.01);
    border-color: var(--primary-color);
}

.glass-search-bar i {
    color: var(--primary-color);
    font-size: 1.75rem;
}

.glass-search-bar input {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    width: 100%;
    outline: none;
    font-family: var(--font-heading);
}

.trust-pill {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateY(-3px);
}

.btn-hero-green {
    background: var(--primary-gradient);
    color: #020617;
    padding: 1.5rem 3.5rem;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(45, 212, 191, 0.3);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero-white {
    background: white;
    color: #1e293b;
    padding: 1.5rem 3.5rem;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero-white:hover {
    transform: translateY(-8px);
    background: var(--primary-color);
    color: #020617;
    border-color: transparent;
}

/* Incentive Curve Chart Styles */
.incentive-chart {
    position: relative;
    padding: 4rem 2rem;
    background: #020617;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    overflow: hidden;
}

.chart-line {
    stroke: #fbbf24;
    stroke-width: 4;
    fill: none;
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.4));
}

.chart-point {
    fill: #38ef7d;
    filter: drop-shadow(0 0 8px #38ef7d);
}

.payout-label {
    fill: white;
    font-size: 14px;
    font-weight: 800;
}

.joins-label {
    fill: #94a3b8;
    font-size: 12px;
    font-weight: 600;
}

/* ===== SUPREME PRICING MATRIX ===== */
.section-pricing {
    padding: 4rem 2rem;
    background: #020617;
    position: relative;
    overflow: hidden;
}

.section-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.05), transparent 70%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    max-width: 1400px;
    margin: 4rem auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem 1.25rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(var(--glass-blur));
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
}

.elite-tier {
    border-color: var(--accent-color);
    box-shadow: 0 0 40px rgba(252, 211, 77, 0.1);
}

.popular-tier {
    border-color: var(--secondary-color);
}

.tier-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.tier-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.elite-tier .tier-icon {
    color: var(--accent-color);
}

.popular-tier .tier-icon {
    color: var(--secondary-color);
}

.standard-tier .tier-icon {
    color: var(--primary-color);
}

.basic-tier .tier-icon {
    color: var(--primary-dark);
}

.gig-tier .tier-icon {
    color: #f43f5e;
}

.salary-range {
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.salary-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.fee-amount {
    font-size: 2.75rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    font-family: var(--font-heading);
}

.elite-tier .fee-amount {
    color: var(--accent-color);
}

.popular-tier .fee-amount {
    color: var(--secondary-color);
}

.standard-tier .fee-amount {
    color: var(--primary-color);
}

.fee-label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.fee-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-tier {
    width: 100%;
    margin-top: auto;
    padding: 1.25rem;
    border-radius: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.elite-tier .btn-tier {
    background: var(--accent-color);
    color: #020617;
}

.popular-tier .btn-tier {
    background: var(--secondary-gradient);
    color: white;
}

.standard-tier .btn-tier {
    background: var(--primary-gradient);
    color: #020617;
}

.basic-tier .btn-tier {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--border-color);
}

.gig-tier .btn-tier {
    background: #f43f5e;
    color: white;
}

.pricing-trust-badge {
    margin: 2rem auto 0;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(45, 212, 191, 0.1);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    border: 1px solid rgba(45, 212, 191, 0.2);
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.premium-heading {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0.5rem 0 1rem;
    color: white;
    font-family: var(--font-heading);
}

/* ===== SUPREME CINEMATIC FOOTER ===== */
.footer {
    background: #010413 !important;
    border-top: 1px solid var(--border-color) !important;
    padding: 4rem 2rem 2rem !important;
}

.footer-farewell-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem 1.5rem;
    border-radius: 40px;
    backdrop-filter: blur(var(--glass-blur));
    position: relative;
    overflow: hidden;
    margin-bottom: 8rem;
    text-align: center;
}

.farewell-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    filter: blur(100px);
    opacity: 0.1;
}

.farewell-title {
    font-size: clamp(2.5rem, 8vw, 5rem) !important;
    font-weight: 850 !important;
    color: white !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.1 !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.farewell-subtitle {
    color: var(--primary-color) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 2rem !important;
}

.farewell-text {
    color: var(--text-muted) !important;
    font-size: 1.1rem !important;
    max-width: 800px !important;
    margin: 0 auto 3rem !important;
    line-height: 1.8 !important;
}

.footer-btn {
    padding: 1.25rem 3rem !important;
    border-radius: 50px !important;
    font-weight: 900 !important;
}

.footer-btn-outline {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border-color) !important;
    padding: 1.25rem 3rem !important;
    border-radius: 50px !important;
    color: white !important;
    font-weight: 900 !important;
}

.footer-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5rem;
    margin-bottom: 8rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 2rem;
}

.brand-desc {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-heading {
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.btn-social-follow {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.btn-social-follow.insta {
    background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
}

.btn-social-follow.linkedin {
    background: #0077b5;
}

.btn-social-follow.whatsapp {
    background: #25D366;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.contact-item i {
    color: var(--primary-color);
}

.footer-legal-barricade {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.legal-heading {
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.75rem;
    margin-bottom: 2rem;
}

.legal-text {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    line-height: 2.2;
}

.footer-bottom-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: var(--primary-color);
    opacity: 0.6;
}

.footer-legal-links a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-bottom-line {
        flex-direction: column;
        gap: 1rem;
    }

    .whatsapp-fab-elite {
        bottom: 85px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
}

/* ===== WHATSAPP ELITE FAB ===== */
.whatsapp-fab-elite {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: pulse 2s infinite;
    color: white !important;
    font-size: 2rem;
}

.whatsapp-fab-elite:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* ===== FOUNDER SECTION STYLING ===== */
.founder-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.founder-card {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-card:hover {
    transform: translateY(-10px);
    border-color: rgba(45, 212, 191, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.depth-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.founder-image-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.founder-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.8) 100%);
    z-index: 1;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.founder-card:hover .founder-image {
    transform: scale(1.05);
}

.founder-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.founder-title {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.social-connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white !important;
}

.social-connect-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Founder Section */
@media (max-width: 992px) {
    .founder-card {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .founder-image-container {
        height: 400px;
    }

    .founder-content {
        padding: 2.5rem;
    }

    .founder-name {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .founder-image-container {
        height: 350px;
    }

    .founder-content {
        padding: 2rem;
    }

    .founder-name {
        font-size: 1.8rem;
    }

    .founder-title {
        font-size: 0.9rem;
    }

    .founder-bio {
        font-size: 1rem;
    }

    .social-connect-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .founder-section {
        padding: 4rem 1rem;
    }

    .founder-card {
        border-radius: 16px;
    }

    .founder-image-container {
        height: 300px;
    }

    .founder-content {
        padding: 1.5rem;
    }

    .founder-name {
        font-size: 1.6rem;
    }

    .founder-bio {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Pricing Grid Responsive Fix */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ARCHITECTURAL PRINT FIX (DISTINGUISHED v11) ===== */
@media print {

    body>*,
    .mobile-bottom-nav,
    .float-whatsapp,
    .hiring-popup,
    header,
    footer,
    #notificationToast,
    .modal-close {
        display: none !important;
    }

    #resumeModal {
        display: flex !important;
        visibility: visible !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: white !important;
    }

    #resumeModal .modal-content>div:first-child,
    #resumeModal #resumeInputPane,
    #resumeModal div[style*="width: 260px"],
    #resumeModal .template-pill,
    #resumeModal button {
        display: none !important;
    }

    #resumeModal div[style*="width: 500px"] {
        display: block !important;
        width: 100% !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #previewPane {
        padding: 0 !important;
        background: white !important;
        display: block !important;
        overflow: visible !important;
    }

    #previewPane>div {
        transform: scale(1) !important;
        transform-origin: top left !important;
        margin: 0 auto !important;
        box-shadow: none !important;
        width: 210mm !important;
        min-height: 297mm !important;
    }

    #resumeIframe {
        width: 210mm !important;
        height: 297mm !important;
        border: none !important;
    }
}

/* ===== PREMIUM EXIT INTENT POPUP (COMPACT EDITION) ===== */
.exit-popup-root {
    position: fixed;
    inset: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    display: none;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.exit-popup-root.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.exit-popup-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compact-elite {
    background: #0f172a;
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.exit-popup-root.active .compact-elite {
    transform: translateY(0) scale(1);
}

.exit-popup-close-x {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.exit-popup-close-x:hover {
    background: #ef4444;
    color: white;
    transform: rotate(90deg);
}

.exit-header-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.exit-pulse-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: exitPulse 2s infinite;
}

@keyframes exitPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.exit-title-elite {
    color: white;
    font-size: 1.75rem;
    font-weight: 950;
    margin: 0;
    letter-spacing: -0.5px;
}

.exit-subtitle-elite {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.exit-grid-elite {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.exit-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exit-tag i {
    color: #10b981;
}

.exit-smart-offer {
    background: rgba(16, 185, 129, 0.05);
    border: 1px dashed rgba(16, 185, 129, 0.3);
    padding: 1.25rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    position: relative;
}

.offer-flash {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    font-size: 0.6rem;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 900;
}

.exit-smart-offer p {
    color: white;
    margin: 0;
    font-size: 0.85rem;
}

.exit-actions-elite {
    display: grid;
    gap: 10px;
}

.exit-btn-main {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1.1rem;
    border-radius: 12px;
    font-weight: 900;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
    transition: 0.3s;
}

.exit-btn-alt {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.1rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.exit-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.exit-btn-alt:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}