/* Atherdex - Clean CSS Styles with Sora Font */

/* Import Google Fonts - Sora font family */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap');

  /* CSS Variables for consistent theming */
        :root {
            --primary: #6366f1;
            --secondary: #8b5cf6;
            --accent: #7d1aff;
            --dark: #0a0a0a;
            --dark-secondary: #1a1a1a;
            --dark-tertiary: #2a2a2a;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #0f172a;
            --white: #ffffff;
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
            
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            
            --border-radius: 12px;
            --border-radius-lg: 16px;
            --border-radius-xl: 20px;
            
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: all 0.15s ease-out;
            --transition-slow: all 0.5s ease-out;
            
            --font-primary: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        

/* Reset and base styles */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            line-height: 1.6;
            background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 50%, var(--dark-secondary) 100%);
            color: var(--white);
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            color: var(--white);
            margin-bottom: 1rem;
            font-family: var(--font-primary);
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            background: linear-gradient(135deg, #ffffff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            text-align: center;
            margin-bottom: 1.5rem;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
        }

        h4 {
            font-size: 1.25rem;
            font-weight: 600;
        }

        p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--gray-300);
            margin-bottom: 1rem;
        }

        /* Container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .logo-one {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: var(--transition);
        }

        .logo {
            height: 50px;
            width: auto;
            transition: var(--transition);
        }

        .logo-one:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            padding: 0.5rem 1rem;
            position: relative;
            transition: var(--transition);
            border-radius: 8px;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--accent);
            transform: translateY(-2px);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--white);
            cursor: pointer;
            padding: 0.5rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Pages and animations */
        .page {
            display: none;
            min-height: 100vh;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            padding: 100px 0 50px;
        }

        .page.active {
            display: block !important;
            opacity: 1;
            transform: translateY(0);
        }

        /* Hero Section */
       .hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

        .hero::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('home.jpeg') no-repeat center center/cover;
    opacity: 0.2; /* Adjust this value (0 to 1) */
    z-index: -1;
}

        .hero .container {
            position: relative;
            z-index: 2;
        }

        /* Particles Animation */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 8s infinite linear;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 6s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 8s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 7s; }
        .particle:nth-child(4) { left: 50%; animation-delay: 0.5s; animation-duration: 6.5s; }
        .particle:nth-child(5) { left: 60%; animation-delay: 1.5s; animation-duration: 9s; }
        .particle:nth-child(6) { left: 70%; animation-delay: 3s; animation-duration: 7.5s; }
        .particle:nth-child(7) { left: 80%; animation-delay: 2.5s; animation-duration: 8.5s; }
        .particle:nth-child(8) { left: 90%; animation-delay: 4s; animation-duration: 6s; }
        .particle:nth-child(9) { left: 95%; animation-delay: 3.5s; animation-duration: 7s; }

        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
        }

        /* Floating Shapes */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .shape {
            position: absolute;
            border: 1px solid var(--accent);
            background: rgba(125, 26, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            animation: floatShape 8s infinite ease-in-out;
            box-shadow: 
                0 4px 8px rgba(125, 26, 255, 0.15),
                0 8px 16px rgba(125, 26, 255, 0.1),
                0 16px 32px rgba(0, 0, 0, 0.3);
        }

        .shape:nth-child(1) { top: 20%; left: 15%; width: 80px; height: 80px; animation-delay: 0s; animation-duration: 10s; }
        .shape:nth-child(2) { top: 60%; left: 75%; width: 50px; height: 50px; animation-delay: 1.5s; animation-duration: 12s; }
        .shape:nth-child(3) { top: 40%; left: 10%; width: 70px; height: 70px; animation-delay: 3s; animation-duration: 9s; }
        .shape:nth-child(4) { top: 80%; left: 50%; width: 45px; height: 45px; animation-delay: 0.8s; animation-duration: 11s; }
        .shape:nth-child(5) { top: 15%; left: 80%; width: 65px; height: 65px; animation-delay: 2.2s; animation-duration: 8.5s; }
        .shape:nth-child(6) { top: 70%; left: 20%; width: 55px; height: 55px; animation-delay: 4s; animation-duration: 13s; }

        @keyframes floatShape {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(-15px) translateX(8px) rotate(15deg); }
            50% { transform: translateY(-25px) translateX(-3px) rotate(-10deg); }
            75% { transform: translateY(-10px) translateX(3px) rotate(10deg); }
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .fade-in-up:nth-child(1) { animation-delay: 0.2s; }
        .fade-in-up:nth-child(2) { animation-delay: 0.4s; }
        .fade-in-up:nth-child(3) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Subtitle */
        .subtitle,
        .section-subtitle {
            font-size: 1.25rem;
            color: var(--gray-300);
            margin-bottom: 2rem;
            text-align: center;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }

        /* Page headers */
        .page-header {
            text-align: center;
            margin-bottom: 80px;
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 60px 40px;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .page-header h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--white), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: var(--border-radius);
            transition: var(--transition);
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            font-family: var(--font-primary);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .btn-outline {
            background: rgba(26, 26, 26, 0.8);
            color: var(--white);
            border-color: var(--accent);
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .learn-more {
            color: var(--white);
            background: rgba(125, 26, 255, 0.1);
            border: 2px solid var(--accent);
            border-radius: 30px;
            padding: 10px 30px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .learn-more:hover {
            background: var(--accent);
            color: var(--white);
            transform: translateX(5px);
        }

        /* Sections */
        .section {
            padding: 5rem 0;
            position: relative;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: var(--gray-300);
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }

        .service-card {
            background: rgba(26, 26, 26, 0.6);
            padding: 40px 30px;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(125, 26, 255, 0.3);
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--accent);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-bottom: 32px;
        }

  .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(125, 26, 255, 0.1);
    border: 1px solid rgba(125, 26, 255, 0.3);
    margin: 0 auto; /* Ensures it's horizontally centered in the card */
        margin-bottom: 20px;

}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

 

        .service-title {
            flex: 1;
        }

        .service-title h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--white);
            text-align: left;
        }

        .service-title p {
            color: var(--gray-400);
            font-size: 1rem;
            font-weight: 400;
            text-align: left;
        }

        .service-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--gray-300);
}

        .service-features {
            
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            display: grid; grid-template-columns: repeat(2, 2fr);
            
       
        }


        .feature-item {
            padding: 20px;
            background: rgba(42, 42, 42, 0.6);
            border-radius: 12px;
            border-left: 4px solid var(--accent);
            transition: all 0.2s ease;
            backdrop-filter: blur(10px);
            margin-bottom: 20px;
        }

        .feature-item:hover {
            background: rgba(42, 42, 42, 0.8);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .feature-item h4 {
            color: var(--white);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .feature-item p {
            color: var(--gray-400);
            font-size: 0.8rem;
            line-height: 1.5;
        }

        /* Features Grid */
        .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force 2 columns */
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.feature-item h4{
    text-align: center;
}

        .feature {
            text-align: center;
            padding: 2rem 1.5rem;
            background: rgba(26, 26, 26, 0.6);
            border-radius: var(--border-radius-lg);
            border: 1px solid rgba(125, 26, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .feature:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #8e2de2, #4a00e0); /* strong gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    box-shadow:
        inset -3px -3px 8px rgba(255, 255, 255, 0.1),
        inset 3px 3px 8px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.6); /* outer + inner shadows for 3D */
    transform: perspective(500px) rotateX(5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon:hover {
    transform: perspective(500px) rotateX(0deg) scale(1.05);
    box-shadow:
        inset -2px -2px 6px rgba(255, 255, 255, 0.1),
        inset 2px 2px 6px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.7);
}

        .feature h3 {
            margin-bottom: 1rem;
            color: var(--white);
        }

        .feature p {
            color: var(--gray-300);
        }

        /* Industries */
        .industries-section {
            margin-top: 80px;
            padding: 60px 40px;
            background: rgba(26, 26, 26, 0.4);
            border-radius: 24px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .industries-section h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--white);
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .industry {
            background: rgba(42, 42, 42, 0.6);
            padding: 24px 20px;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(125, 26, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .industry:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent);
        }

        .industry-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.5rem;
        }

        .industry h4 {
            color: var(--white);
            font-size: 1rem;
            font-weight: 600;
        }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 3rem auto 0;
            background: rgba(26, 26, 26, 0.8);
            padding: 3rem;
            border: 1px solid rgba(125, 26, 255, 0.3);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-xl);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--white);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(125, 26, 255, 0.3);
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
            background: rgba(42, 42, 42, 0.6);
            color: var(--white);
            font-family: var(--font-primary);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(42, 42, 42, 0.8);
            box-shadow: 0 0 0 3px rgba(125, 26, 255, 0.1);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer - Remove extra links */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .copyright {
            color: var(--gray-400);
            font-size: 1rem;
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            display: none;
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 2rem 0;
        min-height: 90vh;
    }
    
    .page {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 40px 20px;
        margin-bottom: 60px;
    }
    
    .page-header h2 {
        font-size: 2.5rem;
    }
    
    .subtitle,
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .about-content p {
    font-size: 0.8rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
p {
    font-size: 1rem;
    line-height: 1.3;
    color: var(--gray-600);
    margin-bottom: 1rem;
}
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
   
   .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

        .feature-item {
           
            margin-bottom: 20px;
        }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .industries-section {
        padding: 40px 20px;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 2rem auto 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle,
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Accessibility and animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .feature,
    .industry {
        animation: slideInUp 0.6s ease-out forwards;
        opacity: 0;
        transform: translateY(30px);
    }
    
    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .nav,
    .scroll-top,
    .particles,
    .floating-shapes,
    .animated-bg {
        display: none;
    }
    
    .page {
        display: block !important;
        opacity: 1 !important;
    }
}