/*==============================================================================
  MND SOLUTIONS - DYNAMIC GRAPHICS & VISUAL ELEMENTS
==============================================================================*/

/* ========================================
   FLOATING ELEMENTS & DECORATIONS
   ======================================== */

/* Dot Pattern */
.dots-pattern {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#F59E0B 3px, transparent 3px);
    background-size: 16px 16px;
    opacity: 0.6;
}

.dots-pattern-sm {
    width: 80px;
    height: 80px;
    background-size: 12px 12px;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
}

.shape-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.shape-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.shape-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.shape-orange {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ========================================
   FLOATING UI CARDS
   ======================================== */

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    animation: float 5s ease-in-out infinite;
    z-index: 10;
}

.floating-card-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E0E7FF;
}

.floating-card-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
    margin: 0 0 2px 0;
}

.floating-card-info p {
    font-size: 12px;
    color: #64748B;
    margin: 0;
}

/* Job Status Card */
.job-card {
    background: white;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    min-width: 200px;
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.job-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1E293B;
    margin: 0;
}

.job-card-icon {
    width: 36px;
    height: 36px;
    background: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
}

.job-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #94A3B8;
    font-size: 13px;
    margin-bottom: 12px;
}

.job-card-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
}

.job-card-meta span {
    color: #64748B;
}

.job-card-meta strong {
    color: #10B981;
}

/* Profile Card with Gradient */
.profile-card-gradient {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    border-radius: 16px;
    padding: 20px;
    color: white;
    min-width: 180px;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.3);
}

.profile-card-gradient .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
}

.profile-card-gradient h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.profile-card-gradient p {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.profile-skills {
    margin-top: 16px;
    background: white;
    border-radius: 12px;
    padding: 16px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.skill-item:last-child {
    margin-bottom: 0;
}

.skill-item span {
    font-size: 13px;
    color: #475569;
    width: 70px;
}

.skill-bar {
    flex: 1;
    height: 8px;
    background: #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B5CF6 0%, #A78BFA 100%);
    border-radius: 4px;
}

/* ========================================
   STATS BAR WITH GRAPHICS
   ======================================== */

.stats-bar-graphic {
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 50%, #6366F1 100%);
    border-radius: 24px;
    padding: 48px 56px;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

.stats-bar-graphic::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.08)' d='M0,192L48,176C96,160,192,128,288,133.3C384,139,480,181,576,186.7C672,192,768,160,864,154.7C960,149,1056,171,1152,181.3C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.stats-bar-graphic::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.05)' d='M0,256L48,240C96,224,192,192,288,181.3C384,171,480,181,576,197.3C672,213,768,235,864,229.3C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.stats-bar-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.stats-bar-left {
    max-width: 320px;
}

.stats-bar-left h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.stats-bar-left .btn {
    background: white;
    color: #7C3AED;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.stats-bar-left .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stats-bar-numbers {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-box .number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ========================================
   CTA WITH FLOATING AVATARS
   ======================================== */

.cta-floating {
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #3730A3 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-floating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
}

/* Diamond pattern overlay */
.cta-floating::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.cta-floating-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-floating h2 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-floating p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-floating-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-floating .btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.cta-floating .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.cta-floating .btn-outline {
    background: white;
    color: #1E1B4B;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-floating .btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

/* Floating Avatars */
.floating-avatar {
    position: absolute;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Floating Icon Badges */
.floating-badge {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 5s ease-in-out infinite;
}

.floating-badge i {
    font-size: 22px;
    color: white;
}

.badge-red {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.badge-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.badge-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.badge-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

/* ========================================
   HERO WITH GRAPHICS
   ======================================== */

.hero-graphic {
    position: relative;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    padding: 100px 0;
    overflow: hidden;
}

.hero-graphic-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-graphic-text {
    position: relative;
    z-index: 5;
}

.hero-graphic-text h1 {
    font-size: 52px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-graphic-text p {
    font-size: 18px;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-graphic-visual {
    position: relative;
    height: 500px;
}

.hero-main-image {
    position: relative;
    z-index: 3;
}

.hero-main-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-frame {
    position: absolute;
    width: 380px;
    height: 420px;
    border: 8px solid #8B5CF6;
    border-radius: 24px;
    top: -20px;
    left: -20px;
    z-index: 1;
}

.hero-shape-green {
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border-radius: 24px;
    top: -40px;
    right: -40px;
    z-index: 0;
}

/* ========================================
   ENHANCED ANIMATIONS
   ======================================== */

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keytml slideInRight {
    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 bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.5); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-slide-up { animation: slideInUp 0.6s ease forwards; }
.animate-slide-left { animation: slideInLeft 0.6s ease forwards; }
.animate-scale { animation: scaleIn 0.5s ease forwards; }
.animate-bounce { animation: bounce 2s ease infinite; }
.animate-glow { animation: glow 2s ease infinite; }

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.03);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}
.hover-glow:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

/* ========================================
   GRADIENT TEXT
   ======================================== */

.gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   GLASSMORPHISM CARDS
   ======================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
}

.glass-card-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
}

/* ========================================
   DECORATIVE CIRCLES
   ======================================== */

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.circle-lg {
    width: 400px;
    height: 400px;
}

.circle-md {
    width: 200px;
    height: 200px;
}

.circle-sm {
    width: 100px;
    height: 100px;
}

.circle-gradient-1 {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.circle-gradient-2 {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.circle-gradient-3 {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

/* ========================================
   ANIMATED BORDERS
   ======================================== */

.animated-border {
    position: relative;
    background: white;
    border-radius: 16px;
}

.animated-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(90deg, #8B5CF6, #3B82F6, #10B981, #F59E0B, #8B5CF6);
    background-size: 300% 100%;
    animation: shimmer 3s linear infinite;
    z-index: -1;
}

/* ========================================
   PARTICLE BACKGROUND
   ======================================== */

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

/* ========================================
   ICON CONTAINERS
   ======================================== */

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.icon-box-lg {
    width: 80px;
    height: 80px;
    font-size: 32px;
    border-radius: 20px;
}

.icon-box-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.icon-box-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.icon-box-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.icon-box-orange {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

/* ========================================
   TRUST INDICATORS
   ======================================== */

.trust-bar {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #F1F5F9;
}

.trust-bar-content {
    text-align: center;
}

.trust-bar-content h3 {
    color: #94A3B8;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logos img {
    height: 32px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.trust-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ========================================
   SECTION ENHANCEMENTS
   ======================================== */

.section-pattern {
    position: relative;
}

.section-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero-graphic-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-graphic-visual {
        display: none;
    }
    
    .stats-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-bar-left {
        max-width: 100%;
    }
    
    .floating-avatar,
    .floating-badge {
        display: none;
    }
    
    .cta-floating h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .stats-bar-graphic {
        padding: 32px 20px;
        border-radius: 16px;
        margin: 40px 16px;
    }
    
    .stats-bar-left h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .stats-bar-numbers {
        gap: 20px;
        justify-content: center;
    }
    
    .stat-box .number {
        font-size: 32px;
    }
    
    .stat-box .label {
        font-size: 12px;
    }
    
    .cta-floating {
        padding: 50px 16px;
    }
    
    .cta-floating h2 {
        font-size: 24px;
    }
    
    .cta-floating p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .cta-floating-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .cta-floating .btn-primary,
    .cta-floating .btn-outline {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    /* Hero Graphic Mobile */
    .hero-graphic {
        padding: 60px 16px;
    }
    
    .hero-graphic-text h1 {
        font-size: 28px !important;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-graphic-text p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px !important;
    }
    
    /* Glass cards mobile */
    .glass-card,
    .glass-card-dark {
        padding: 20px;
        border-radius: 14px;
    }
    
    /* Icon boxes mobile */
    .icon-box {
        width: 52px;
        height: 52px;
        font-size: 20px;
        border-radius: 12px;
    }
    
    .icon-box-lg {
        width: 64px;
        height: 64px;
        font-size: 26px;
        border-radius: 14px;
    }
    
    /* Trust bar mobile */
    .trust-bar {
        padding: 28px 16px;
    }
    
    .trust-logos {
        gap: 24px;
    }
    
    .trust-logos img {
        height: 24px;
    }
    
    /* Floating cards mobile */
    .floating-card {
        padding: 12px 16px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .stats-bar-graphic {
        padding: 28px 16px;
        margin: 32px 12px;
    }
    
    .stats-bar-left h3 {
        font-size: 20px;
    }
    
    .stats-bar-numbers {
        gap: 16px;
    }
    
    .stat-box .number {
        font-size: 28px;
    }
    
    .hero-graphic {
        padding: 48px 12px;
    }
    
    .hero-graphic-text h1 {
        font-size: 24px !important;
    }
    
    .hero-graphic-text p {
        font-size: 14px;
    }
    
    .cta-floating h2 {
        font-size: 22px;
    }
    
    .cta-floating p {
        font-size: 14px;
    }
}

